/* =========================================================================
 * T25 Multicultural Community — scoped CSS (vibrant, joyful, inclusive)
 * Coral + teal + gold + warm cream.
 * Poppins (display) + Nunito (body).
 * Scoped to .mfv-t25.
 * ========================================================================= */

.mfv-t25 {
    --t25-coral:         #E8785A;
    --t25-coral-dark:    #D66B4F;
    --t25-coral-soft:    color-mix(in srgb, var(--t25-coral) 10%, transparent);
    --t25-coral-line:    color-mix(in srgb, var(--t25-coral) 8%, transparent);
    --t25-coral-frosted: color-mix(in srgb, var(--t25-coral) 15%, transparent);
    --t25-teal:          #2B8A8A;
    --t25-teal-soft:     rgba(43,138,138,0.10);
    --t25-gold:          #D4A843;
    --t25-gold-dark:     #BF953C;
    --t25-gold-soft:     color-mix(in srgb, var(--t25-gold) 20%, transparent);
    --t25-cream:         #FFF8F0;
    --t25-charcoal:      #2B3A42;
    --t25-charcoal-deep: #1E2A30;
    --t25-white:         #FFFFFF;
    --t25-text:          #2B3A42;
    --t25-text-body:     #666666;
    --t25-text-muted:    #888888;
    --t25-text-faint:    rgba(255,255,255,0.40);

    --t25-font-head: 'Poppins', system-ui, sans-serif;
    --t25-font-body: 'Nunito', system-ui, sans-serif;

    --mfv-chrome-accent: var(--t25-coral);
    --mfv-chrome-on-accent: var(--t25-white);

    font-family: var(--t25-font-body);
    color: var(--t25-text-body);
    line-height: 1.6;
    background: var(--t25-white);
}
.mfv-t25 *,.mfv-t25 *::before,.mfv-t25 *::after { box-sizing: border-box; }
.mfv-t25 img { max-width: 100%; display: block; }

/* ─── Nav (sticky white) ─────────────────── */

.mfv-t25__nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--t25-coral-line);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.mfv-t25__nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 1rem;
    display: flex; align-items: center; justify-content: space-between;
    min-height: 64px;
    gap: 1rem;
}
.mfv-t25__brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: inherit;
}
.mfv-t25__brand-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--t25-coral), var(--t25-gold));
    color: var(--t25-white);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mfv-t25__brand-mark svg { width: 20px; height: 20px; }
.mfv-t25__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.mfv-t25__brand-name {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: 16px; color: var(--t25-charcoal);
}
.mfv-t25__brand-eyebrow {
    font-family: var(--t25-font-body); font-weight: 500;
    font-size: 10px; color: var(--t25-coral);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-top: 1px;
}
.mfv-t25__nav-links {
    display: none; align-items: center; gap: 1.25rem;
}
@media (min-width: 992px) { .mfv-t25__nav-links { display: flex; } }
.mfv-t25__nav-link {
    font-family: var(--t25-font-body); font-weight: 600;
    font-size: 14px; color: #555;
    text-decoration: none;
    transition: color 160ms ease;
}
.mfv-t25__nav-link:hover,
.mfv-t25__nav-link.is-active { color: var(--t25-coral); outline: none; }
.mfv-t25__nav-cta {
    display: inline-flex; align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--t25-coral); color: var(--t25-white);
    font-family: var(--t25-font-body); font-weight: 700;
    font-size: 13.5px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 160ms ease;
}
.mfv-t25__nav-cta:hover { background: var(--t25-coral-dark); outline: none; }

/* ─── Hero slider ───────────────────────── */

.mfv-t25__hero {
    position: relative;
    min-height: clamp(620px, 85vh, 900px);
    overflow: hidden;
    display: flex; align-items: center;
    background: var(--t25-charcoal);
}
.mfv-t25__hero-slides { position: absolute; inset: 0; z-index: 0; }
.mfv-t25__hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 900ms ease-in-out;
    will-change: opacity;
}
.mfv-t25__hero-slide.is-active { opacity: 1; }
.mfv-t25__hero-slide img,
.mfv-t25__hero-slide video {
    width: 100%; height: 100%; object-fit: cover;
}
.mfv-t25__hero-slide.is-active img {
    animation: mfv-t25-ken 12s ease-in-out infinite alternate;
}
@keyframes mfv-t25-ken {
    0%   { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.08) translate(-1.5%, 0.8%); }
}
.mfv-t25__hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right,
        color-mix(in srgb, var(--t25-charcoal, #2B3A42) 80%, transparent) 0%,
        color-mix(in srgb, var(--t25-charcoal, #2B3A42) 50%, transparent) 50%,
        color-mix(in srgb, var(--t25-charcoal, #2B3A42) 10%, transparent) 100%);
}
.mfv-t25__hero-inner {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    padding: 5rem 1rem;
    width: 100%;
    display: flex; align-items: center;
}
.mfv-t25__hero-content { max-width: 720px; }
.mfv-t25__hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--t25-white);
    font-family: var(--t25-font-body); font-weight: 500;
    font-size: 12px;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.mfv-t25__hero-badge svg { width: 14px; height: 14px; color: var(--t25-coral); }
.mfv-t25 .mfv-t25__hero-headline {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: clamp(44px, 6vw, 74px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.01em;
    color: var(--t25-white);
    margin: 0 0 1.25rem !important;
    padding: 0 !important;
}
.mfv-t25__hero-headline-accent { color: var(--t25-gold); }
.mfv-t25__hero-sub {
    font-family: var(--t25-font-body);
    font-size: 17px; line-height: 1.65;
    color: rgba(255,255,255,0.70);
    max-width: 540px;
    margin: 0 0 2rem;
}
.mfv-t25__hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.mfv-t25__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.9rem 1.75rem;
    font-family: var(--t25-font-body); font-weight: 700;
    font-size: 14px;
    border: 0; border-radius: 12px;
    text-decoration: none; cursor: pointer;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.mfv-t25__btn--coral { background: var(--t25-coral); color: var(--t25-white); }
.mfv-t25__btn--coral:hover { background: var(--t25-coral-dark); outline: none; }
.mfv-t25__btn--frosted {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--t25-white);
    border: 1px solid rgba(255,255,255,0.10);
}
.mfv-t25__btn--frosted:hover { background: rgba(255,255,255,0.25); outline: none; }
.mfv-t25__btn svg { width: 14px; height: 14px; }

/* Floating service-times card (desktop, faith only) */
.mfv-t25__hero-svccard {
    display: none;
    position: absolute; right: 2rem; bottom: 3rem; z-index: 3;
    width: 288px;
    padding: 1.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.20);
}
@media (min-width: 1024px) { .mfv-t25__hero-svccard { display: block; } }
.mfv-t25__hero-svccard-heading {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: 13px; color: var(--t25-charcoal);
    margin: 0 0 0.75rem;
}
.mfv-t25__hero-svccard-list { display: flex; flex-direction: column; gap: 0.75rem; }
.mfv-t25__hero-svccard-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.mfv-t25__hero-svccard-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.mfv-t25__hero-svccard-time {
    width: 56px; flex-shrink: 0;
    text-align: right;
    font-family: var(--t25-font-body); font-weight: 700;
    font-size: 11px; color: var(--t25-coral);
    padding-top: 1px;
}
.mfv-t25__hero-svccard-name {
    font-family: var(--t25-font-body); font-weight: 600;
    font-size: 13px; color: var(--t25-charcoal);
}
.mfv-t25__hero-svccard-detail {
    font-family: var(--t25-font-body);
    font-size: 11px; color: var(--t25-text-muted);
    margin-top: 2px;
}

/* Hero thumb dots */
.mfv-t25__hero-thumbs {
    position: absolute; left: 50%; bottom: 1.75rem; z-index: 3;
    transform: translateX(-50%);
    display: flex; gap: 10px;
}
.mfv-t25__hero-thumb {
    width: 12px; height: 12px;
    padding: 0; margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.40);
    cursor: pointer;
    transition: background 220ms ease, transform 220ms ease;
}
.mfv-t25__hero-thumb:hover { background: rgba(255,255,255,0.70); outline: none; }
.mfv-t25__hero-thumb.is-active {
    background: var(--t25-gold);
    transform: scale(1.2);
}

/* ─── Common eyebrow + heading ────────── */

.mfv-t25__eyebrow {
    font-family: var(--t25-font-body); font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase;
    margin: 0;
}
.mfv-t25__eyebrow--teal { color: var(--t25-teal); }
.mfv-t25__heading {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.15;
    color: var(--t25-charcoal);
    margin: 0.75rem 0 1.5rem;
}
.mfv-t25__heading-accent {
    color: var(--t25-coral);
    font-style: normal;
}

/* ─── Welcome band (cream) ─────────────── */

.mfv-t25__welcome {
    background: var(--t25-cream);
    padding: 5rem 1rem;
}
.mfv-t25__welcome-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .mfv-t25__welcome-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.mfv-t25__welcome-content { }
.mfv-t25__welcome-body {
    font-family: var(--t25-font-body);
    font-size: 16px; line-height: 1.65;
    color: var(--t25-text-body);
    margin: 0 0 1rem;
}
.mfv-t25__welcome-pills {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 1.25rem;
}
.mfv-t25__welcome-pill {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: var(--t25-teal-soft);
    color: var(--t25-teal);
    font-family: var(--t25-font-body); font-weight: 500;
    font-size: 12px;
    border-radius: 999px;
}
.mfv-t25__welcome-image {
    width: 100%;
    height: clamp(280px, 40vw, 420px);
    border-radius: 16px;
    overflow: hidden;
    background: var(--t25-coral-soft);
}
.mfv-t25__welcome-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Stats band (coral→gold gradient) ── */

.mfv-t25__stats {
    /* !important defeats the `section:not([class*="--"]){background:transparent}`
       preview reset that blanks this gradient band -> white numbers go invisible. */
    background: linear-gradient(to right, var(--t25-coral), var(--t25-gold)) !important;
    padding: 3rem 1rem;
}
.mfv-t25__stats-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) { .mfv-t25__stats-grid { grid-template-columns: repeat(4, 1fr); } }
.mfv-t25__stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mfv-t25__stat-value {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1;
    color: var(--t25-white);
}
.mfv-t25__stat-label {
    font-family: var(--t25-font-body);
    font-size: 13px; color: rgba(255,255,255,0.75);
    margin-top: 6px;
}

/* ─── Ministries grid (white) ─────────── */

.mfv-t25__ministries {
    background: var(--t25-white);
    padding: 5rem 1rem;
}
.mfv-t25__ministries-inner { max-width: 1280px; margin: 0 auto; }
.mfv-t25__ministries-header {
    text-align: center;
    margin-bottom: 3rem;
}
.mfv-t25__ministries-header .mfv-t25__heading { margin-top: 0.75rem; }
.mfv-t25__ministries-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .mfv-t25__ministries-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mfv-t25__ministries-grid { grid-template-columns: repeat(3, 1fr); } }
.mfv-t25__ministry {
    background: var(--t25-cream);
    border: 1px solid var(--t25-coral-line);
    border-radius: 16px;
    padding: 1.75rem;
    transition: box-shadow 220ms ease;
    height: 100%;
}
.mfv-t25__ministry:hover { box-shadow: 0 14px 32px rgba(0,0,0,0.08); }
.mfv-t25__ministry-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--t25-coral-frosted), var(--t25-gold-soft));
    color: var(--t25-coral);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: background 220ms ease;
}
.mfv-t25__ministry:hover .mfv-t25__ministry-icon {
    background: linear-gradient(135deg, color-mix(in srgb, var(--t25-coral) 25%, transparent), color-mix(in srgb, var(--t25-gold) 25%, transparent));
}
.mfv-t25__ministry-icon svg { width: 22px; height: 22px; }
.mfv-t25__ministry-title {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: 18px; color: var(--t25-charcoal);
    margin: 0 0 0.5rem;
}
.mfv-t25__ministry-desc {
    font-family: var(--t25-font-body);
    font-size: 13.5px; line-height: 1.65;
    color: var(--t25-text-muted);
    margin: 0;
}

/* ─── Upcoming events (cream) ────────── */

.mfv-t25__events {
    background: var(--t25-cream);
    padding: 5rem 1rem;
}
.mfv-t25__events-inner { max-width: 960px; margin: 0 auto; }
.mfv-t25__events-header {
    text-align: center;
    margin-bottom: 3rem;
}
.mfv-t25__events-list { display: flex; flex-direction: column; gap: 1rem; }
.mfv-t25__event {
    background: var(--t25-white);
    border: 1px solid var(--t25-coral-line);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex; align-items: center; gap: 1.25rem;
    transition: box-shadow 220ms ease;
}
.mfv-t25__event:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.mfv-t25__event-date {
    width: 64px; height: 64px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--t25-coral), var(--t25-gold));
    border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--t25-white);
    line-height: 1.1;
    text-align: center;
}
.mfv-t25__event-date-month {
    font-family: var(--t25-font-body); font-weight: 700;
    font-size: 10px; text-transform: uppercase;
}
.mfv-t25__event-date-day {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: 20px;
}
.mfv-t25__event-body { flex: 1; min-width: 0; }
.mfv-t25__event-title-row {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.mfv-t25__event-title {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: 15px; color: var(--t25-charcoal);
    margin: 0;
}
.mfv-t25__event-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: var(--t25-teal-soft);
    color: var(--t25-teal);
    font-family: var(--t25-font-body); font-weight: 500;
    font-size: 10px;
    border-radius: 999px;
}
.mfv-t25__event-desc {
    font-family: var(--t25-font-body);
    font-size: 13px; color: var(--t25-text-muted);
    margin: 0;
}

/* ─── CTA (charcoal) ──────────────────── */

.mfv-t25__cta {
    /* !important defeats two greedy preview resets that target [class*="__cta"]:
       (a) `section:not([class*="--"]){background:transparent}` blanks this dark band
           -> white-on-white text; (b) `[class*="__cta"]{display:inline-flex}` tap-target
           rule collapses the full-bleed band to content width. */
    background: var(--t25-charcoal) !important;
    display: block !important;
    width: 100%;
    padding: 5rem 1rem;
    text-align: center;
}
.mfv-t25__cta-inner { display: block !important; max-width: 760px; margin: 0 auto; }
.mfv-t25__cta-heading {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: clamp(28px, 3.8vw, 40px);
    line-height: 1.15;
    color: var(--t25-white);
    margin: 0 0 1rem;
}
.mfv-t25__cta-heading-accent { color: var(--t25-gold); }
.mfv-t25__cta-blurb {
    font-family: var(--t25-font-body);
    font-size: 17px; line-height: 1.65;
    color: rgba(255,255,255,0.60);
    max-width: 540px;
    margin: 0 auto 2rem;
}
.mfv-t25__cta-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: 1rem;
}
.mfv-t25__cta-address {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--t25-font-body);
    font-size: 13.5px; color: rgba(255,255,255,0.50);
    text-decoration: none;
    transition: color 160ms ease;
}
.mfv-t25__cta-address:hover { color: var(--t25-gold); outline: none; }
.mfv-t25__cta-address svg { width: 16px; height: 16px; }

/* ─── Footer (darker charcoal) ───────── */

.mfv-t25__footer {
    background: var(--t25-charcoal-deep);
    color: rgba(255,255,255,0.40);
    padding: 2.5rem 1rem;
}
.mfv-t25__footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; justify-content: space-between;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .mfv-t25__footer-inner { flex-direction: row; text-align: left; }
}
.mfv-t25__footer-brand {
    display: inline-flex; align-items: center; gap: 10px;
}
.mfv-t25__footer-brand-mark {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--t25-coral), var(--t25-gold));
    color: var(--t25-white);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mfv-t25__footer-brand-mark svg { width: 16px; height: 16px; }
.mfv-t25__footer-brand-name {
    font-family: var(--t25-font-head); font-weight: 700;
    font-size: 16px; color: var(--t25-white);
}
.mfv-t25__footer-copy {
    font-family: var(--t25-font-body);
    font-size: 12px; color: rgba(255,255,255,0.40);
    margin: 0;
}

/* ─── Admin CSS leak guards ──────────── */
.mfv-t25 .mfv-t25__hero-headline,
.mfv-t25 .mfv-t25__cta-heading,
.mfv-t25 .mfv-t25__brand-name,
.mfv-t25 .mfv-t25__footer-brand-name { color: var(--t25-white); }
.mfv-t25 .mfv-t25__cta-heading { color: var(--t25-white); }
.mfv-t25 .mfv-t25__heading,
.mfv-t25 .mfv-t25__ministry-title,
.mfv-t25 .mfv-t25__event-title,
.mfv-t25 .mfv-t25__hero-svccard-heading,
.mfv-t25 .mfv-t25__hero-svccard-name { color: var(--t25-charcoal); }
.mfv-t25 .mfv-t25__brand-name { color: var(--t25-charcoal); }
.mfv-t25 .mfv-t25__hero-headline-accent,
.mfv-t25 .mfv-t25__cta-heading-accent { color: var(--t25-gold); }
.mfv-t25 .mfv-t25__heading-accent,
.mfv-t25 .mfv-t25__brand-eyebrow,
.mfv-t25 .mfv-t25__hero-svccard-time { color: var(--t25-coral); }
.mfv-t25 .mfv-t25__eyebrow--teal,
.mfv-t25 .mfv-t25__welcome-pill,
.mfv-t25 .mfv-t25__event-tag { color: var(--t25-teal); }
.mfv-t25 .mfv-t25__brand,
.mfv-t25 .mfv-t25__nav-link,
.mfv-t25 .mfv-t25__nav-link.is-active,
.mfv-t25 .mfv-t25__cta-address { color: inherit; }
.mfv-t25 .mfv-t25__btn--coral,
.mfv-t25 .mfv-t25__nav-cta { color: var(--t25-white); }
.mfv-t25 .mfv-t25__btn--frosted { color: var(--t25-white); }
.mfv-t25 .mfv-t25__ministry-icon { color: var(--t25-coral); }
.mfv-t25 .mfv-t25__footer-brand-mark { color: var(--t25-white); }
.mfv-t25 .mfv-t25__brand-mark { color: var(--t25-white); }
.mfv-t25 .mfv-t25__hero-badge { color: var(--t25-white); }

/* T25 sub-page CSS — added with the Universal-Invariant retrofit 2026-05-15 */

/* Chrome wrapper variant on sub-pages */
.mfv-t25 .mfv-t25__nav--chrome { border-bottom: 1px solid rgba(0,0,0,0.06); }

/* Page hero */
.mfv-t25 .mfv-t25__page-hero {
	background: var(--t25-cream, #FFF8F0);
	padding: 84px 32px 52px;
}
.mfv-t25 .mfv-t25__page-hero-inner { max-width: 1100px; margin: 0 auto; }
.mfv-t25 .mfv-t25__page-title {
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 700;
	font-size: clamp( 2.2rem, 4vw, 3.2rem );
	line-height: 1.1;
	color: var(--t25-charcoal, #2B3A42);
	margin: 12px 0 18px;
}
.mfv-t25 .mfv-t25__page-sub {
	max-width: 700px;
	color: var(--t25-gray-600, #4B5563);
	font-size: 1.08rem;
	line-height: 1.6;
}

/* About — story split */
.mfv-t25 .mfv-t25__about-story { padding: 80px 32px; background: #FFFFFF; }
.mfv-t25 .mfv-t25__about-story-inner {
	max-width: 1200px; margin: 0 auto;
	display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center;
}
.mfv-t25 .mfv-t25__about-story-image {
	border-radius: 12px; overflow: hidden;
	aspect-ratio: 4 / 5; background: var(--t25-cream, #FFF8F0);
}
.mfv-t25 .mfv-t25__about-story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mfv-t25 .mfv-t25__about-story-text {
	color: var(--t25-gray-700, #374151);
	font-size: 1.05rem; line-height: 1.7; margin-top: 16px;
}
@media ( max-width: 880px ) {
	.mfv-t25 .mfv-t25__about-story-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* Team grid */
.mfv-t25 .mfv-t25__team { padding: 80px 32px; background: var(--t25-cream, #FFF8F0); }
.mfv-t25 .mfv-t25__team-inner { max-width: 1200px; margin: 0 auto; }
.mfv-t25 .mfv-t25__team-header { text-align: center; margin-bottom: 40px; }
.mfv-t25 .mfv-t25__team-grid {
	display: grid; grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) ); gap: 28px;
}
.mfv-t25 .mfv-t25__team-card {
	background: #FFFFFF; border-radius: 12px; overflow: hidden;
	box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.mfv-t25 .mfv-t25__team-photo { aspect-ratio: 4 / 3; background: #F3F4F6; }
.mfv-t25 .mfv-t25__team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mfv-t25 .mfv-t25__team-body { padding: 22px 24px 26px; }
.mfv-t25 .mfv-t25__team-name {
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 700; font-size: 1.15rem; color: var(--t25-charcoal, #2B3A42);
}
.mfv-t25 .mfv-t25__team-role {
	margin-top: 2px; font-size: 0.9rem; color: var(--t25-coral, #E8785A);
	font-weight: 600; letter-spacing: 0.03em;
}
.mfv-t25 .mfv-t25__team-bio {
	margin-top: 10px; font-size: 0.93rem; line-height: 1.55;
	color: var(--t25-gray-600, #4B5563);
}
.mfv-t25 .mfv-t25__team-chip {
	display: inline-block; margin-top: 12px;
	font-size: 0.78rem; padding: 4px 10px;
	background: var(--t25-teal-soft, rgba(43,138,138,0.10));
	color: var(--t25-teal, #2B8A8A); border-radius: 99px;
}

/* Ministries-full page (re-uses .mfv-t25__ministry from home, adds full padding) */
.mfv-t25 .mfv-t25__ministries-full { padding: 80px 32px; background: #FFFFFF; }
.mfv-t25 .mfv-t25__ministries-full-inner { max-width: 1200px; margin: 0 auto; }
.mfv-t25 .mfv-t25__ministry-cta {
	margin-top: 14px; display: inline-flex; align-items: center; gap: 6px;
	color: var(--t25-coral, #E8785A); font-weight: 600; font-size: 0.92rem;
	text-decoration: none;
}
.mfv-t25 .mfv-t25__ministry-cta svg { width: 16px; height: 16px; }

/* Contact grid */
.mfv-t25 .mfv-t25__contact { padding: 60px 32px; background: var(--t25-cream, #FFF8F0); }
.mfv-t25 .mfv-t25__contact-inner { max-width: 1100px; margin: 0 auto; }
.mfv-t25 .mfv-t25__contact-grid {
	display: grid; grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) ); gap: 24px;
}
.mfv-t25 .mfv-t25__contact-card {
	background: #FFFFFF; border-radius: 12px; padding: 28px 24px;
	display: flex; flex-direction: column; gap: 6px;
	text-decoration: none; color: inherit;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.mfv-t25 .mfv-t25__contact-card:hover {
	box-shadow: 0 12px 32px rgba(0,0,0,0.06);
	transform: translateY(-2px);
}
.mfv-t25 .mfv-t25__contact-card-icon {
	width: 44px; height: 44px; color: var(--t25-coral, #E8785A);
	background: var(--t25-coral-soft, color-mix(in srgb, var(--t25-coral, #E8785A) 10%, transparent));
	border-radius: 10px;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 6px;
}
.mfv-t25 .mfv-t25__contact-card-icon svg { width: 22px; height: 22px; }
.mfv-t25 .mfv-t25__contact-card-label {
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 600; font-size: 0.85rem;
	letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--t25-gray-500, #6B7280); margin-bottom: 4px;
}
.mfv-t25 .mfv-t25__contact-card-value {
	font-size: 1.05rem; font-weight: 600; color: var(--t25-charcoal, #2B3A42);
}
/* Glass, not flat white. On a white page a #FFFFFF card with only a left rule
   is invisible as a card — the hours read as loose text that happens to be
   indented. A translucent fill plus a hairline and a soft shadow give it an
   edge without introducing a new colour, and the blur keeps it feeling like
   part of the page rather than a pasted-on panel. */
.mfv-t25 .mfv-t25__contact-hours {
	margin-top: 28px;
	background: rgba(43, 58, 66, .045);
	-webkit-backdrop-filter: blur(10px) saturate(1.15);
	backdrop-filter: blur(10px) saturate(1.15);
	padding: 26px 30px; border-radius: 14px;
	border: 1px solid rgba(43, 58, 66, .08);
	border-left: 4px solid var(--t25-coral, #E8785A);
	box-shadow: 0 6px 20px rgba(43, 58, 66, .05);
}
.mfv-t25 .mfv-t25__contact-hours-title {
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 700; color: var(--t25-charcoal, #2B3A42);
	margin-bottom: 14px;
}
.mfv-t25 .mfv-t25__contact-hours-list { list-style: none; margin: 0; padding: 0; }
.mfv-t25 .mfv-t25__contact-hours-list li {
	display: flex; justify-content: space-between; padding: 8px 0;
	border-bottom: 1px solid #F3F4F6;
}
.mfv-t25 .mfv-t25__contact-hours-list li:last-child { border-bottom: none; }
.mfv-t25 .mfv-t25__contact-hours-day { font-weight: 600; color: var(--t25-charcoal, #2B3A42); }
.mfv-t25 .mfv-t25__contact-hours-times { color: var(--t25-gray-600, #4B5563); }
.mfv-t25 .mfv-t25__contact-area {
	margin-top: 20px; padding: 18px 20px;
	background: rgba(255,255,255,0.6); border-radius: 8px;
}
.mfv-t25 .mfv-t25__contact-area h4 {
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 600; color: var(--t25-charcoal, #2B3A42); margin-bottom: 6px;
}
.mfv-t25 .mfv-t25__contact-area p { font-size: 0.92rem; color: var(--t25-gray-600, #4B5563); }

/* Chrome footer meta */
.mfv-t25 .mfv-t25__footer-meta {
	margin-top: 16px;
	display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
	font-size: 0.9rem; color: rgba(255,255,255,0.7);
}
.mfv-t25 .mfv-t25__footer-meta a { color: inherit; }
.mfv-t25 .mfv-t25__footer-socials {
	margin-top: 18px;
	display: flex; gap: 14px; justify-content: center;
}
.mfv-t25 .mfv-t25__footer-socials a {
	color: rgba(255,255,255,0.85); text-decoration: none;
	font-size: 0.88rem; padding: 6px 12px;
	border: 1px solid rgba(255,255,255,0.2); border-radius: 99px;
}
.mfv-t25 .mfv-t25__footer-tagline {
	margin-top: 10px; color: rgba(255,255,255,0.8); font-size: 0.95rem;
}

/* Empty-state */
.mfv-t25 .mfv-t25__empty {
	text-align: center; padding: 60px 0; color: #6B7280; font-style: italic;
}

/* ════════════════════════════════════════════════════════════════════
 * MOBILE RESPONSIVE POLISH (2026-06-02)
 * T25 migrated to the shared MFV_Site_Engine_Mobile_Nav overlay drawer
 * (data-mfv-navbar/toggle/panel on the home + chrome headers; the legacy
 * mfv_site_render_mobile_nav_toggle helper was removed). These rules cap
 * the hero, force the slide image to FILL it (no gray band), round the
 * slider dots, and trim hero clutter so headline + CTAs fit on a phone.
 * ════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
	/* FIXED hero height — the hero was clamp(620px,85vh,900px) tall and the
	 * gradient overlay ran far below the photo, leaving a big gray band under
	 * the headline/CTAs. Lock a sane height + clip the overflow. */
	.mfv-t25 .mfv-t25__hero {
		min-height: 0 !important;
		height: 78vh !important;
		max-height: 78vh !important;
		overflow: hidden !important;
	}
	.mfv-t25__hero-inner { padding: 2.5rem 1rem !important; }

	/* Force the slide layers + image to FILL the hero so the photo covers the
	 * WHOLE frame (no gray gradient band below it on mobile). */
	.mfv-t25 .mfv-t25__hero-slides,
	.mfv-t25 .mfv-t25__hero-slide {
		position: absolute !important;
		inset: 0 !important;
		height: 100% !important;
		width: 100% !important;
	}
	.mfv-t25 .mfv-t25__hero-slide img,
	.mfv-t25 .mfv-t25__hero-slide video {
		width: 100% !important;
		height: 100% !important;
		min-height: 100% !important;
		object-fit: cover !important;
		object-position: center !important;
	}

	/* Trim hero clutter — hide the long descriptive paragraph so the headline
	 * + primary CTA fit the frame without scrolling onto a gray band. */
	.mfv-t25__hero-sub { display: none !important; }
	/* Tighten the CTA stack so both buttons + dots sit within the hero. */
	.mfv-t25__hero-buttons { gap: 0.6rem !important; }

	/* Hero slider dots — small round circles. The flex container's default
	 * align-items:stretch + an inherited min-height stretched them into tall
	 * vertical bars; lock a fixed 9px square + center + kill flex sizing. */
	.mfv-t25__hero-thumbs {
		bottom: 1rem !important;
		gap: 8px !important;
		align-items: center !important;
	}
	.mfv-t25 .mfv-t25__hero-thumbs button.mfv-t25__hero-thumb,
	.mfv-t25__hero-thumbs button.mfv-t25__hero-thumb,
	button.mfv-t25__hero-thumb,
	.mfv-t25__hero-thumb {
		width: 9px !important;
		height: 9px !important;
		min-width: 9px !important;
		max-width: 9px !important;
		min-height: 9px !important;
		max-height: 9px !important;
		flex: none !important;
		aspect-ratio: auto !important;
		border-radius: 50% !important;
		box-sizing: border-box !important;
		align-self: center !important;
		padding: 0 !important;
		line-height: 0 !important;
	}
	.mfv-t25 .mfv-t25__hero-thumb.is-active {
		width: 9px !important; height: 9px !important;
		transform: none !important;
	}

	/* Stats band — keep the 2x2 default but tighten so the 4 cells fit one
	 * screen (gap was 2rem). */
	.mfv-t25 .mfv-t25__stats-grid { gap: 1.25rem !important; }
	.mfv-t25__stat { min-width: 0 !important; }
}
