/* ============================================================
   FRAGMENT STYLES (Scope: .frag-content)
   ============================================================ */
/* 1. Global Fragment Animation */
.frag-content {
    animation: fragFadeIn 0.4s ease-out;
}

@keyframes fragFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Hero Section - Layout Only */
.frag-content .f-hero {
    position: relative;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.frag-content .f-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.frag-content .f-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.frag-content .f-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
}

.frag-content .f-hero-rule {
    width: 60px;
    height: 4px;
    background: #fff;
    margin: 10px auto;
}

/* 3. Breadcrumbs (Visual Path: Home / About / Topic) */
.frag-content .f-quick-actions {
    background: #d4af37;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.frag-content .f-qa-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
}

/* The labels (Home, About) */
.frag-content .f-qa-label {
    color: rgba(0,0,0,0.5);
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* The separator / or > */
.frag-content .f-qa-label:after {
    content: "/";

    /* CHANGE THIS TO ">" IF PREFERRED */
    margin: 0 12px;
    color: rgba(0,0,0,0.25);
    font-weight: 400;
    font-size: 0.9rem;
}

/* The current page indicator */
.frag-content .f-qa-current {
    color: #1a2744;
    font-weight: 800;
    text-transform: uppercase;
}

/* 4. Body Content Layout */
.frag-content .f-main-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    line-height: 1.6;
}

.frag-content .f-content-left {
    flex: 2;
}

.frag-content .f-vertical-divider {
    width: 1px;
    background: #ddd;
}

.frag-content .f-scripture-right {
    flex: 1;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: #555;
    padding-top: 20px;
    font-size: 1.15rem;
}

/* 5. Typography */
.frag-content .f-content-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #222;
    margin-top: 0;
}

.frag-content .f-content-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 20px;
}

.frag-content .f-body-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: #2c2c2c;
    margin-bottom: 50px;
}

/* 6. Responsive Adjustments */
@media (max-width: 768px) {
    .frag-content .f-main-container {
        flex-direction: column;
    }

    .frag-content .f-vertical-divider {
        display: none;
    }

    .frag-content .f-hero {
        height: 250px;
    }

    .frag-content .f-hero-title {
        font-size: 2rem;
    }
}