/* ═══════════════════════════════════════════════
   Justice Hero Widget — Layout CSS
   NO colors. NO fonts. NO padding values.
   All design tokens come from Elementor controls
   or the theme's style.css.
═══════════════════════════════════════════════ */

/* Box-sizing reset */
.jhw-hero,
.jhw-hero * {
    box-sizing: border-box;
}

/* ── Section ── */
.jhw-hero {
    position: relative;
    overflow: hidden;
}

/* Background layer (gradient set via Elementor) */
.jhw-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Overlay layer (colour/gradient over bg, opacity via Elementor control) */
.jhw-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

/* Reversed layout: image column moves to the left */
.jhw-hero--reversed .jhw-hero-img-col {
    order: -1;
}

/* ── Inner grid ── */
.jhw-hero-in {
    max-width: 1140px;
    margin: 0 auto;
    /* Left/right set to 10px to match theme gutters.
       Top/bottom padding is controlled per-widget via Elementor controls.
       Apply the same pattern to all future widget inner wrappers. */
    padding-left: 10px;
    padding-right: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── Left content column ── */
.jhw-hero-c {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ── Eyebrow tag ── */
.jhw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.jhw-eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1.5px;
    flex-shrink: 0;
}

/* ── Heading ── */
.jhw-heading {
    font-weight: 700;
    line-height: 1.08;
}

.jhw-heading em {
    font-style: italic;
    font-weight: 500;
}

/* ── Description ── */
.jhw-desc {
    font-weight: 300;
    line-height: 1.55;
}

/* ── Button group ── */
.jhw-btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Base button ── */
.jhw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease,
                transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1;
    border: 1.5px solid transparent;
}

/* Primary hover lift */
.jhw-btn-primary:hover {
    transform: translateY(-1px);
}

/* ── Right image column ── */
.jhw-hero-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Image wrapper ── */
.jhw-img-wrap {
    width: 100%;
}

/* ── Hero image ── */
.jhw-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .jhw-hero-in {
        grid-template-columns: 1fr;
    }

    .jhw-hero-img-col {
        order: -1; /* image above content on tablet */
    }
}

@media (max-width: 767px) {
    .jhw-btn-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .jhw-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════
   FSC ACTION CARDS WIDGET
═══════════════════════════════════════════════ */

.fsc-ac-section,
.fsc-ac-section * {
    box-sizing: border-box;
}

/* ── Section ── */
.fsc-ac-section {
    position: relative;
    z-index: 10;
}

/* Overlap variant — pulls section up over the section above */
.fsc-ac-section--overlap {
    position: relative;
    z-index: 10;
}

/* ── Inner wrapper (max-width + left/right gutter matches theme) ── */
.fsc-ac-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Grid ── */
.fsc-ac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* ── Card ── */
.fsc-ac-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top accent line (colour set via --fsc-accent CSS var per card) */
.fsc-ac-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.fsc-ac-card:hover::before {
    background: var(--fsc-accent, #9B1B30);
}

/* Hover lift (activated via .fsc-ac--lift on section) */
.fsc-ac--lift .fsc-ac-card:hover {
    transform: translateY(-8px);
}

/* ── Icon circle ── */
.fsc-ac-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

/* Dashed ring around icon */
.fsc-ac-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1.5px dashed rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.fsc-ac-card:hover .fsc-ac-icon {
    transform: scale(1.05);
}

/* ── Heading ── */
.fsc-ac-heading {
    font-weight: 700;
    line-height: 1.2;
}

/* ── Description ── */
.fsc-ac-desc {
    line-height: 1.5;
}

/* ── CTA button ── */
.fsc-ac-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin-top: auto;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — ACTION CARDS
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fsc-ac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fsc-ac-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════
   FSC SCRIPTURE ABOUT WIDGET
═══════════════════════════════════════════════ */

.fsc-sa-section,
.fsc-sa-section * {
    box-sizing: border-box;
}

/* ── Section ── */
.fsc-sa-section {
    position: relative;
}

/* ── Inner wrapper ── */
.fsc-sa-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Two-column row ── */
.fsc-sa-row {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    align-items: center;
}

/* Reversed: content left, quote right */
.fsc-sa-row--reversed .fsc-sa-quote  { order: 2; }
.fsc-sa-row--reversed .fsc-sa-content { order: 1; }

/* Single column (quote hidden) */
.fsc-sa-row--single {
    grid-template-columns: 1fr;
}

/* ── Quote column ── */
.fsc-sa-quote {
    font-style: italic;
    line-height: 1.45;
    position: relative;
}

/* Decorative open-quote glyph */
.fsc-sa-quote::before {
    content: '\201C';
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 120px;
    position: absolute;
    top: -40px;
    left: -10px;
    line-height: 1;
    pointer-events: none;
}

/* Hide glyph when toggled off */
.fsc-sa-quote--no-glyph::before {
    display: none;
}

/* Quote text */
.fsc-sa-q-text {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 28px;
    line-height: 1.45;
    margin-bottom: 12px;
}

/* Reference line */
.fsc-sa-q-ref {
    font-family: var(--bd-f, 'Source Sans 3', Arial, sans-serif);
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Content column ── */
.fsc-sa-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow label */
.fsc-sa-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Heading */
.fsc-sa-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-weight: 700;
    line-height: 1.12;
}

/* Divider SVG */
.fsc-sa-divider {
    display: block;
    height: 6px;
    flex-shrink: 0;
}

/* Body paragraphs */
.fsc-sa-body-1,
.fsc-sa-body-2 {
    line-height: 1.55;
}

/* ── Button base ── */
.fsc-sa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease,
                border-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1;
}

/* Outline variant (default) */
.fsc-sa-btn--outline {
    background-color: transparent;
}

/* Filled variant */
.fsc-sa-btn--filled {
    border-color: transparent;
}

/* Ghost variant (no border, just text + hover underline) */
.fsc-sa-btn--ghost {
    border-color: transparent;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fsc-sa-btn--ghost:hover {
    text-decoration: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SCRIPTURE ABOUT
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fsc-sa-row {
        grid-template-columns: 1fr;
        gap: 40px !important;
    }

    /* On mobile, quote always comes first regardless of reverse setting */
    .fsc-sa-quote  { order: 1; }
    .fsc-sa-content { order: 2; }
}


/* ═══════════════════════════════════════════════
   FSC FAQ WIDGET
═══════════════════════════════════════════════ */

.fsc-faq-section,
.fsc-faq-section * {
    box-sizing: border-box;
}

/* ── Section ── */
.fsc-faq-section {
    position: relative;
}

/* ── Inner wrapper ── */
.fsc-faq-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Section Header ── */
.fsc-faq-header {
    margin-bottom: 52px;
}

.fsc-faq-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fsc-faq-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
}

/* ── FAQ List ── */
.fsc-faq-list {
    max-width: 720px;
    margin: 0 auto;
    border-top: 1px solid #E4DFD4;
}

/* ── FAQ Item ── */
.fsc-faq-item {
    border-bottom: 1px solid #E4DFD4;
}

/* ── Question row ── */
.fsc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    user-select: none;
    outline: none;
}

.fsc-faq-question:focus-visible {
    outline: 2px solid #9B1B30;
    outline-offset: 2px;
    border-radius: 2px;
}

.fsc-faq-question h4 {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
    margin: 0;
    transition: color 0.3s ease;
}

/* ── Toggle icon button ── */
.fsc-faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #E4DFD4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease,
                color 0.3s ease, transform 0.3s ease;
}

/* Plus/minus: hide minus by default, show when open */
.fsc-faq-icon-minus { display: none; }

.fsc-faq-item.fsc-faq-open .fsc-faq-icon-plus  { display: none; }
.fsc-faq-item.fsc-faq-open .fsc-faq-icon-minus { display: flex; }

/* Chevron: rotates 180° when open */
.fsc-faq-item.fsc-faq-open .fsc-faq-icon-chevron {
    display: flex;
    transform: rotate(180deg);
}
.fsc-faq-icon-chevron {
    display: flex;
    transition: transform 0.3s ease;
}

/* ── Answer ── */
.fsc-faq-answer-wrap {
    overflow: hidden;
}

.fsc-faq-answer {
    font-size: 18px;
    line-height: 1.55;
    max-width: 620px;
}

.fsc-faq-answer p { margin: 0; }
.fsc-faq-answer p + p { margin-top: 12px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — FAQ
═══════════════════════════════════════════════ */

@media (max-width: 767px) {
    .fsc-faq-heading {
        font-size: 32px;
    }

    .fsc-faq-question h4 {
        font-size: 19px;
    }

    .fsc-faq-answer {
        font-size: 16px;
    }
}


/* ═══════════════════════════════════════════════
   FSC TRUST BAR WIDGET
═══════════════════════════════════════════════ */

.fsc-tb-section,
.fsc-tb-section * {
    box-sizing: border-box;
}

.fsc-tb-section { position: relative; }

/* ── Inner wrapper ── */
.fsc-tb-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Strip row ── */
.fsc-tb-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.fsc-tb-strip--nowrap {
    flex-wrap: nowrap;
}

/* ── Single badge ── */
.fsc-tb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* ── Icon ── */
.fsc-tb-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* ── Label ── */
.fsc-tb-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

/* ── Optional vertical dividers between items ── */
.fsc-tb-strip--dividers .fsc-tb-item + .fsc-tb-item {
    position: relative;
}

.fsc-tb-strip--dividers .fsc-tb-item + .fsc-tb-item::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TRUST BAR
═══════════════════════════════════════════════ */

@media (max-width: 767px) {
    /* Hide dividers when items stack */
    .fsc-tb-strip--dividers .fsc-tb-item + .fsc-tb-item::before {
        display: none;
    }
}


/* ═══════════════════════════════════════════════
   FSC SERVICES GRID WIDGET
═══════════════════════════════════════════════ */

.fsc-sg-section,
.fsc-sg-section * {
    box-sizing: border-box;
}

.fsc-sg-section { position: relative; }

/* ── Inner wrapper ── */
.fsc-sg-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Section header ── */
.fsc-sg-header {
    text-align: center;
    margin-bottom: 52px;
}

.fsc-sg-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fsc-sg-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 4px;
}

.fsc-sg-subtitle {
    font-size: 20px;
    line-height: 1.5;
    max-width: 600px;
    margin: 16px auto 0;
}

/* ── Grid ── */
.fsc-sg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* ── Card ── */
.fsc-sg-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Accent line pseudo-element (slides in on hover) */
.fsc-sg-card::after {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fsc-sg-grid--accent-bottom .fsc-sg-card::after { bottom: 0; }
.fsc-sg-grid--accent-top    .fsc-sg-card::after { top: 0; }

.fsc-sg-card:hover::after { width: 100%; }

/* Hover lift */
.fsc-sg--lift .fsc-sg-card:hover {
    transform: translateY(-4px);
}

/* ── Icon box ── */
.fsc-sg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ── Title ── */
.fsc-sg-title {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

/* ── Description ── */
.fsc-sg-desc {
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

/* ── Link ── */
.fsc-sg-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SERVICES GRID
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fsc-sg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fsc-sg-grid {
        grid-template-columns: 1fr;
    }

    .fsc-sg-heading {
        font-size: 32px;
    }
}


/* ═══════════════════════════════════════════════
   FSC INFO CARDS WIDGET
═══════════════════════════════════════════════ */

.fsc-ic-section,
.fsc-ic-section * {
    box-sizing: border-box;
}

.fsc-ic-section { position: relative; }

/* ── Inner wrapper ── */
.fsc-ic-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Section header ── */
.fsc-ic-header {
    margin-bottom: 52px;
}

.fsc-ic-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fsc-ic-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
}

/* ── Grid ── */
.fsc-ic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* ── Card ── */
.fsc-ic-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.fsc-ic-card--linked:hover {
    box-shadow: 0 8px 28px rgba(28, 43, 75, 0.1);
}

/* ── Card inner: horizontal (icon-left) ── */
.fsc-ic-card-inner {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.fsc-ic-card-inner--horizontal {
    flex-direction: row;
}

/* ── Card inner: vertical (icon-top) ── */
.fsc-ic-card-inner--vertical {
    flex-direction: column;
}

/* ── Icon box ── */
.fsc-ic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Body ── */
.fsc-ic-body {
    flex: 1;
    min-width: 0;
}

/* ── Title ── */
.fsc-ic-title {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

/* ── Primary text ── */
.fsc-ic-primary {
    line-height: 1.5;
    margin: 0;
}

/* ── Secondary / note text ── */
.fsc-ic-secondary {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — INFO CARDS
═══════════════════════════════════════════════ */

@media (max-width: 767px) {
    .fsc-ic-grid {
        grid-template-columns: 1fr;
    }

    .fsc-ic-heading {
        font-size: 32px;
    }
}


/* ═══════════════════════════════════════════════
   FSC DARK CARDS WIDGET
═══════════════════════════════════════════════ */

.fsc-dc-section,
.fsc-dc-section * {
    box-sizing: border-box;
}

/* ── Section ── */
.fsc-dc-section {
    position: relative;
    overflow: hidden;
}

/* Ambient radial glow overlay */
.fsc-dc-section--ambient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(155,27,48,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(200,169,81,.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

/* ── Header ── */
.fsc-dc-header {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 28px;
}

/* ── Cross decoration ── */
.fsc-dc-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fsc-dc-cross::before,
.fsc-dc-cross::after {
    content: '';
    width: 48px;
    height: 1px;
    flex-shrink: 0;
}

/* ── Heading ── */
.fsc-dc-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    margin: 0;
}

/* ── Subtitle ── */
.fsc-dc-subtitle {
    font-size: 18px;
    line-height: 1.55;
    margin: 14px auto 0;
}

/* ── Grid wrapper ── */
.fsc-dc-grid-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

/* ── Grid ── */
.fsc-dc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* ── Card ── */
.fsc-dc-card {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease,
                transform 0.3s ease, box-shadow 0.3s ease;
}

/* Accent top line — slides in on hover if --fsc-dc-accent is set */
.fsc-dc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fsc-dc-accent, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fsc-dc-card:hover::before {
    transform: scaleX(1);
}

/* Hover lift */
.fsc-dc--lift .fsc-dc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ── Icon circle ── */
.fsc-dc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Card title ── */
.fsc-dc-card-title {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

/* ── Card body ── */
.fsc-dc-card-body {
    font-size: 16px;
    line-height: 1.6;
}

.fsc-dc-card-body p { margin: 0; }
.fsc-dc-card-body p + p { margin-top: 10px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — DARK CARDS
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fsc-dc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fsc-dc-grid {
        grid-template-columns: 1fr;
    }

    .fsc-dc-heading {
        font-size: 32px;
    }
}


/* ═══════════════════════════════════════════════
   FSC CTA BANNER WIDGET
═══════════════════════════════════════════════ */

.fsc-cb-section,
.fsc-cb-section * {
    box-sizing: border-box;
}

.fsc-cb-section {
    position: relative;
}

/* Optional radial highlight overlay */
.fsc-cb-section--pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Inner wrapper ── */
.fsc-cb-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* ── Content block ── */
.fsc-cb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ── Heading ── */
.fsc-cb-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* ── Body ── */
.fsc-cb-body {
    font-size: 19px;
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
}

.fsc-cb-body p { margin: 0; }

/* ── Button group ── */
.fsc-cb-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Base button ── */
.fsc-cb-btn-primary,
.fsc-cb-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--bd-f, 'Source Sans 3', Arial, sans-serif);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease,
                border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* ── Filled gold ── */
.fsc-cb-btn-primary--gold,
.fsc-cb-btn-secondary--gold {
    background-color: #C8A951;
    color: #111D35;
    border-color: #C8A951;
}
.fsc-cb-btn-primary--gold:hover,
.fsc-cb-btn-secondary--gold:hover {
    background-color: #D4BA6A;
    border-color: #D4BA6A;
    transform: translateY(-1px);
}

/* ── Filled white ── */
.fsc-cb-btn-primary--white,
.fsc-cb-btn-secondary--white {
    background-color: #ffffff;
    color: #9B1B30;
    border-color: #ffffff;
}
.fsc-cb-btn-primary--white:hover,
.fsc-cb-btn-secondary--white:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

/* ── Outline white ── */
.fsc-cb-btn-primary--outline-white,
.fsc-cb-btn-secondary--outline-white {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
}
.fsc-cb-btn-primary--outline-white:hover,
.fsc-cb-btn-secondary--outline-white:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.08);
}

/* ── Outline gold ── */
.fsc-cb-btn-primary--outline-gold,
.fsc-cb-btn-secondary--outline-gold {
    background-color: transparent;
    color: #E0CA7E;
    border-color: rgba(200,169,81,0.5);
}
.fsc-cb-btn-primary--outline-gold:hover,
.fsc-cb-btn-secondary--outline-gold:hover {
    border-color: #C8A951;
    background-color: rgba(200,169,81,0.08);
}

/* ── Ghost ── */
.fsc-cb-btn-primary--ghost,
.fsc-cb-btn-secondary--ghost {
    background-color: transparent;
    color: rgba(255,255,255,0.85);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.fsc-cb-btn-primary--ghost:hover,
.fsc-cb-btn-secondary--ghost:hover {
    color: #ffffff;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — CTA BANNER
═══════════════════════════════════════════════ */

@media (max-width: 767px) {
    .fsc-cb-heading {
        font-size: 26px;
    }

    .fsc-cb-body {
        font-size: 17px;
    }

    .fsc-cb-btns {
        flex-direction: column;
        width: 100%;
    }

    .fsc-cb-btn-primary,
    .fsc-cb-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════
   FSC ABOUT STORY WIDGET
═══════════════════════════════════════════════ */

.fsc-as-section,
.fsc-as-section * {
    box-sizing: border-box;
}

.fsc-as-section { position: relative; }

/* ── Inner wrapper ── */
.fsc-as-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Two-column grid ── */
.fsc-as-grid {
    display: grid;
    align-items: start;
}

.fsc-as-grid--reversed .fsc-as-left  { order: 2; }
.fsc-as-grid--reversed .fsc-as-right { order: 1; }

/* ── Section header ── */
.fsc-as-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fsc-as-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fsc-as-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 8px;
}

/* Divider SVG */
.fsc-as-divider {
    display: block;
    width: 48px;
    height: 6px;
    flex-shrink: 0;
}

/* ── Body paragraphs ── */
.fsc-as-body-1,
.fsc-as-body-2,
.fsc-as-body-3 {
    font-size: 19px;
    line-height: 1.55;
}

.fsc-as-body-1 p,
.fsc-as-body-2 p,
.fsc-as-body-3 p { margin: 0; }

/* ── Scripture blockquote ── */
.fsc-as-scripture {
    background-color: #ffffff;
    border-left: 4px solid #9B1B30;
    border-radius: 0 8px 8px 0;
    padding: 28px 32px;
    margin: 0;
    position: relative;
}

/* Decorative open-quote glyph */
.fsc-as-scripture::before {
    content: '\201C';
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
    pointer-events: none;
}

.fsc-as-scripture--no-glyph::before {
    display: none;
}

.fsc-as-scripture-text {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 22px;
    font-style: italic;
    line-height: 1.4;
    margin: 0 0 8px;
    position: relative;
}

.fsc-as-scripture-cite {
    font-family: var(--bd-f, 'Source Sans 3', Arial, sans-serif);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Right column ── */
.fsc-as-right {
    display: flex;
    flex-direction: column;
}

/* ── Image ── */
.fsc-as-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ── Pull-quote card ── */
.fsc-as-pullquote {
    text-align: center;
}

.fsc-as-pq-text {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    margin: 0 0 6px;
}

.fsc-as-pq-attr {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — ABOUT STORY
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fsc-as-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .fsc-as-grid--reversed .fsc-as-left,
    .fsc-as-grid--reversed .fsc-as-right {
        order: unset;
    }

    .fsc-as-heading {
        font-size: 36px;
    }
}


/* ═══════════════════════════════════════════════
   FSC STATS SPLIT WIDGET
═══════════════════════════════════════════════ */

.fsc-ss-section,
.fsc-ss-section * {
    box-sizing: border-box;
}

.fsc-ss-section { position: relative; }

/* ── Inner wrapper ── */
.fsc-ss-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ── Two-column grid ── */
.fsc-ss-grid {
    display: grid;
    align-items: center;
}

.fsc-ss-grid--reversed .fsc-ss-left  { order: 2; }
.fsc-ss-grid--reversed .fsc-ss-panel { order: 1; }

/* ── Left column ── */
.fsc-ss-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow */
.fsc-ss-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Heading */
.fsc-ss-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 8px;
}

/* Divider SVG */
.fsc-ss-divider {
    display: block;
    width: 48px;
    height: 6px;
    flex-shrink: 0;
    margin-bottom: 20px;
}

/* Body paragraphs */
.fsc-ss-body-1,
.fsc-ss-body-2 {
    font-size: 19px;
    line-height: 1.55;
}

.fsc-ss-body-1 p,
.fsc-ss-body-2 p { margin: 0; }

/* Button */
.fsc-ss-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--bd-f, 'Source Sans 3', Arial, sans-serif);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease,
                border-color 0.3s ease, transform 0.3s ease;
}

/* Outline (default) */
.fsc-ss-btn--outline {
    background: transparent;
}

/* Filled */
.fsc-ss-btn--filled {
    border-color: transparent;
}

/* Ghost */
.fsc-ss-btn--ghost {
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.fsc-ss-btn--ghost:hover { text-decoration: none; }

/* ── Stats panel (right) ── */
.fsc-ss-panel {
    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.fsc-ss-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 16px solid rgba(255,255,255,0.02);
    border-radius: 50%;
    pointer-events: none;
}

/* Panel heading */
.fsc-ss-panel-heading {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Stat rows */
.fsc-ss-stat-row {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.fsc-ss-stat-value {
    font-family: var(--hd, 'Playfair Display', Georgia, serif);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.fsc-ss-stat-label {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 2px;
}

.fsc-ss-stat-sublabel {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — STATS SPLIT
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fsc-ss-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .fsc-ss-grid--reversed .fsc-ss-left,
    .fsc-ss-grid--reversed .fsc-ss-panel {
        order: unset;
    }

    .fsc-ss-heading {
        font-size: 30px;
    }
}
