/* ── Accessibility utilities ─────────────────────────────── */

/* Visually hidden but available to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip navigation link — visible only on keyboard focus */
.skip-link {
    position: fixed;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: #30373b;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #0FACB2;
    outline-offset: 2px;
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .ntcg-homepage__video {
        display: none;
    }
}

/* ── Mobile nav: responsive font + tap submenus ─────────── */
.ntcg-homepage__mobile-nav-link {
    font-size: clamp(12px, 3.5vw, 15px) !important;
}
.ntcg-homepage__mobile-nav-link--disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.ntcg-homepage__mobile-nav-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ntcg-homepage__mobile-nav-row .ntcg-homepage__mobile-nav-link {
    flex: 1;
    border-bottom: none;
}

.ntcg-homepage__mobile-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 17px 4px 17px 16px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
}

.ntcg-homepage__mobile-nav-toggle .ntcg-homepage__mobile-chevron {
    transition: transform 0.2s ease;
}
.ntcg-homepage__mobile-nav-toggle[aria-expanded="true"] .ntcg-homepage__mobile-chevron {
    transform: rotate(90deg);
}

.ntcg-homepage__mobile-subnav {
    padding: 8px 0 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ntcg-homepage__mobile-subnav[hidden] { display: none; }
.ntcg-homepage__mobile-subnav a {
    display: block;
    padding: 9px 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.15s;
}
.ntcg-homepage__mobile-subnav a:hover { color: #ffffff; }

/* Hide burger when mobile menu is open — dedicated header X handles close */
body.ntcg-homepage-menu-open .ntcg-homepage__mobile-trigger {
    display: none !important;
}

/* Mobile close button — white X, no circle, aligned with logo */
.ntcg-homepage__mobile-close {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    width: 32px !important;
    height: 32px !important;
}

/* Burger bar colour — dark when scrolled past hero or on inner pages */
body.ntcg-hero-out .ntcg-homepage__mobile-trigger span,
body:has(.ntcg-homepage__stickybar--inner) .ntcg-homepage__mobile-trigger span {
    background: #30373b;
    transition: background 0.2s ease, transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}
/* Override: white again when footer is in view */
body.ntcg-footer-visible .ntcg-homepage__mobile-trigger span {
    background: #ffffff !important;
}

/* Mobile network links (NTCG, YOUTH, etc.) — slightly larger */
.ntcg-homepage__mobile-network a {
    font-size: 12px !important;
}

/* ── Nav dropdown: fix inherited text-align: center from homepage hero ── */
.ntcg-homepage__nav-dd-promo,
.ntcg-homepage__nav-dd-links {
    text-align: left;
}

/* ── Inner Pages ─────────────────────────────────────────── */
.ntcg-inner {
    padding-top: calc(44px + 80px);
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    font-family: "Figtree", sans-serif;
}

.admin-bar .ntcg-inner {
    padding-top: calc(76px + 80px);
}

.ntcg-inner__hero {
    background: transparent;
    padding: 64px 48px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.ntcg-inner__label {
    color: #0FACB2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.ntcg-inner__heading {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.ntcg-inner__h-grey   { color: #9ca3af; }
.ntcg-inner__h-teal   { color: #0FACB2; }
.ntcg-inner__h-yellow { color: #F7C70C; }

.ntcg-inner__sub {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.65;
    max-width: 600px;
    margin: 0;
    font-weight: 300;
}

.ntcg-inner__body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 48px 80px;
}

/* ── Events toolbar ──────────────────────────────────────── */
.ntcg-inner__events-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 12px;
}

/* View toggle */
.ntcg-view-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
}

.ntcg-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.ntcg-view-btn.is-active {
    background: #ffffff;
    color: #30373b;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.ntcg-view-btn:hover:not(.is-active) {
    color: #30373b;
}

/* Subscribe button */
.ntcg-inner__cal-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #4b5563;
    background: transparent;
    font-family: "Figtree", sans-serif;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.ntcg-inner__cal-subscribe:hover {
    border-color: #0FACB2;
    color: #0FACB2;
}

/* Force [hidden] to work even when display is set by CSS */
.ntcg-inner__cal-subscribe[hidden],
.ntcg-ev-search[hidden] {
    display: none !important;
}

/* ── Event search field ───────────────────────────────────── */
.ntcg-ev-search {
    position: relative;
    flex: 1;
}

.ntcg-ev-search__icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.ntcg-ev-search__input {
    width: 100%;
    padding: 8px 16px 8px 36px;
    border: 1.5px solid #e5e7eb;
    border-radius: 999px;
    font-size: 13px;
    font-family: "Figtree", sans-serif;
    color: #30373b;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ntcg-ev-search__input:focus {
    border-color: #0FACB2;
}

.ntcg-ev-search__input::placeholder {
    color: #9ca3af;
}

/* ── View More button ─────────────────────────────────────── */
.ntcg-ev-more-wrap {
    text-align: center;
    margin-top: 32px;
}

.ntcg-ev-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
    color: #4b5563;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.ntcg-ev-more-btn:hover {
    border-color: #0FACB2;
    color: #0FACB2;
}

/* ── Subscribe modal ─────────────────────────────────────── */
.ntcg-sub-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
}

.ntcg-sub-overlay.is-open {
    display: block;
}

.ntcg-sub-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 201;
    background: #ffffff;
    border-radius: 16px;
    width: min(480px, calc(100vw - 32px));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    font-family: "Figtree", sans-serif;
}

.ntcg-sub-modal.is-open {
    display: block;
}

.ntcg-sub-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.ntcg-sub-modal__title {
    font-size: 17px;
    font-weight: 700;
    color: #30373b;
    margin: 0;
}

.ntcg-sub-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.15s;
}

.ntcg-sub-modal__close:hover {
    background: #e5e7eb;
    color: #30373b;
}

.ntcg-sub-modal__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ntcg-sub-option {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ntcg-sub-option__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    color: #30373b;
    flex-shrink: 0;
}

.ntcg-sub-option__icon--google {
    color: #4285f4;
}

.ntcg-sub-option__content {
    flex: 1;
    min-width: 0;
}

.ntcg-sub-option__label {
    font-size: 14px;
    font-weight: 600;
    color: #30373b;
    margin: 0 0 2px;
}

.ntcg-sub-option__desc {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.ntcg-sub-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ntcg-sub-divider::before,
.ntcg-sub-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.ntcg-sub-copyrow {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ntcg-sub-copyrow__input {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 12px;
    font-family: monospace;
    color: #4b5563;
    background: #f9fafb;
    outline: none;
}

.ntcg-sub-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    border: none;
}

.ntcg-sub-btn--primary {
    background: #0FACB2;
    color: #ffffff;
}

.ntcg-sub-btn--primary:hover {
    background: #0d9da0;
    color: #ffffff;
}

.ntcg-sub-btn--copy {
    background: #30373b;
    color: #ffffff;
}

.ntcg-sub-btn--copy:hover {
    background: #1f2528;
}

/* ── Department filter bar ───────────────────────────────── */
.ntcg-ev-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ntcg-ev-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1.5px solid #d1d5db;
    background: transparent;
    color: #4b5563;
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.ntcg-ev-filter-btn.is-active {
    background: #30373b;
    border-color: #30373b;
    color: #ffffff;
}

.ntcg-ev-filter-btn:hover:not(.is-active) {
    border-color: #30373b;
    color: #30373b;
}

/* ── Events card grid ────────────────────────────────────── */
.ntcg-ev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ntcg-ev-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #9ca3af;
    font-size: 15px;
    padding: 48px 0;
}

.ntcg-ev-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.18s, transform 0.18s;
    display: flex;
    flex-direction: column;
    user-select: none;
}

.ntcg-ev-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

.ntcg-ev-card:focus-visible {
    outline: 2px solid #0FACB2;
    outline-offset: 2px;
}

/* Image area */
.ntcg-ev-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

.ntcg-ev-card__img--placeholder {
    background-color: #f3f4f6;
    background-image: repeating-linear-gradient(
        45deg,
        #e5e7eb 0,
        #e5e7eb 1px,
        transparent 0,
        transparent 50%
    );
    background-size: 12px 12px;
}

.ntcg-ev-card__img--color {
    background: #edeef0 !important;
    position: relative;
    overflow: hidden;
}

.ntcg-ev-card__img--color::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/app/uploads/2026/03/CrossAndFlame-white.svg') center / 72px no-repeat;
}

.ntcg-ev-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.ntcg-ev-card__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #30373b;
    line-height: 1.35;
}

.ntcg-ev-card__date {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.ntcg-ev-card__loc {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ntcg-ev-card__desc {
    margin: 0;
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.5;
}

.ntcg-ev-card__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

.ntcg-ev-card__price,
.ntcg-ev-card__cap {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

/* ── Slide-out overlay & panel ───────────────────────────── */
.ntcg-ev-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 100;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.ntcg-ev-overlay.is-open {
    display: block;
}

.ntcg-ev-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 100vw;
    background: #ffffff;
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.ntcg-ev-panel.is-open {
    transform: translateX(0);
}

.ntcg-ev-panel__bar {
    height: 5px;
    flex-shrink: 0;
    background: #D42769;
}

/* Hero image in panel */
.ntcg-ev-panel__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

.ntcg-ev-panel__scroll {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px 40px;
    position: relative;
}

.ntcg-ev-panel__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: border-color 0.15s, color 0.15s;
    padding: 0;
}

.ntcg-ev-panel__close:hover {
    border-color: #30373b;
    color: #30373b;
}

.ntcg-ev-panel__meta {
    padding-top: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 24px;
}

.ntcg-ev-panel__date {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ntcg-ev-panel__title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #30373b;
    line-height: 1.25;
}

.ntcg-ev-panel__loc {
    margin: 0 0 10px;
    font-size: 13px;
    color: #6b7280;
}

.ntcg-ev-panel__desc {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
    white-space: pre-wrap;
}

.ntcg-ev-panel__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 10px;
}

.ntcg-ev-badge {
    display: inline-flex;
    align-items: center;
    background: #f3f4f6;
    color: #30373b;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

/* Tickets section */
.ntcg-ev-panel__tickets {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.ntcg-ev-panel__section-hd {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ntcg-ev-ticket-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f05537;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.15s;
}

.ntcg-ev-ticket-link:hover {
    opacity: 0.88;
    color: #ffffff;
}

/* Share section */
.ntcg-ev-panel__share {
    margin-bottom: 8px;
}

.ntcg-ev-panel__share-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ntcg-ev-share-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #30373b;
    font-family: "Figtree", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    width: 100%;
}

.ntcg-ev-share-btn:hover {
    border-color: #0FACB2;
    color: #0FACB2;
}

/* Prevent body scroll when panel open */
body.ntcg-panel-open {
    overflow: hidden;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .ntcg-ev-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ntcg-ev-grid { grid-template-columns: 1fr; }
    .ntcg-ev-panel { width: 100vw; }
    .ntcg-inner__events-toolbar { flex-wrap: wrap; }
}

.ntcg-inner__calendar .simcal-calendar {
    box-shadow: none;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

/* ── NTCG Calendar ───────────────────────────────────────── */
.ntcg-cal { font-family: "Figtree", sans-serif; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.ntcg-cal__head { background: #30373b; display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.ntcg-cal__month-name { color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.ntcg-cal__nav { color: rgba(255,255,255,.7); text-decoration: none; font-size: 28px; line-height: 1; padding: 0 4px; transition: color .15s; }
.ntcg-cal__nav:hover { color: #F7C70C; }
.ntcg-cal__grid { display: grid; grid-template-columns: repeat(7,1fr); border-left: 1px solid #e5e7eb; border-top: 1px solid #e5e7eb; }
.ntcg-cal__dh { background: #f6f8fc; color: #9ca3af; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; text-align: center; padding: 10px 4px; border-right: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.ntcg-cal__day { border-right: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; padding: 6px; min-height: 90px; vertical-align: top; background: #fff; }
.ntcg-cal__day--empty { background: #fafafa; }
.ntcg-cal__day--today { background: rgba(15,172,178,.06); border-color: #0FACB2; }
.ntcg-cal__day-num { display: block; font-size: .8125rem; font-weight: 600; color: #30373b; margin-bottom: 4px; }
.ntcg-cal__day--today .ntcg-cal__day-num { color: #0FACB2; font-weight: 700; }
.ntcg-cal__ev { display: block; background: #F7C70C; color: #30373b; font-size: .68rem; font-weight: 600; padding: 2px 6px; margin-top: 2px; border-radius: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-decoration: none; transition: opacity .15s; }
.ntcg-cal__ev:hover { opacity: .82; color: #30373b; }
.ntcg-cal__ev-time { margin-right: 4px; opacity: .85; }
@media (max-width: 640px) {
    .ntcg-cal__day { min-height: 56px; padding: 4px; }
    .ntcg-cal__day-num { font-size: .75rem; }
    .ntcg-cal__ev { font-size: .6rem; padding: 1px 4px; }
}

/* ── Brand Strip ─────────────────────────────────────────── */
.hp-strip { display: flex; height: 6px; }
.hp-strip span { flex: 1; }

/* ── About ───────────────────────────────────────────────── */
.hp-about { background: #ffffff; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 80px 48px; gap: 20px; }
.hp-about__heading { font-size: clamp(36px, 4.5vw, 52px); font-weight: 900; line-height: 1.1; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hp-about__h-grey { color: #a6a6a6; }
.hp-about__h-teal { color: #0FACB2; }
.hp-about__tagline { color: #a6a6a6; font-size: 22px; font-style: normal; font-weight: 300; margin: 0; }
.hp-about__body { max-width: 920px; color: #6b7280; font-size: 17px; line-height: 1.7; margin: 0; }
.hp-about__quote { max-width: 920px; color: #6b7280; font-size: 16px; font-style: italic; line-height: 1.7; margin: 0; border: none; padding: 0; }

/* ── Prayer ──────────────────────────────────────────────── */
.hp-prayer { background: #f6f8fc; display: flex; flex-direction: column; align-items: center; padding: 72px 48px 80px; gap: 48px; position: relative; z-index: 2; }
.hp-prayer__hdr { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 720px; text-align: center; }
.hp-prayer__heading { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.15; display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; justify-content: center; }
.hp-prayer__h-grey { color: #9ca3af; }
.hp-prayer__h-teal { color: #0FACB2; }
.hp-prayer__sub { color: #4b5563; font-size: 16px; line-height: 1.65; margin: 0; }
.hp-prayer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 960px; width: 100%; }
.hp-prayer__card { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.hp-prayer__img { width: 200px; height: 200px; flex-shrink: 0; border-radius: 0; background-size: cover; background-position: center; box-shadow: 0 8px 30px -4px rgba(0,0,0,0.35), 0 4px 12px -2px rgba(0,0,0,0.2); }
.hp-prayer__card-title { color: #0FACB2; font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin: 0; }
.hp-prayer__card-body { color: #4b5563; font-size: 15px; line-height: 1.7; margin: 0; }

/* ── Conventions ─────────────────────────────────────────── */
.hp-conv { background: #ffffff; display: flex; flex-direction: column; align-items: center; padding: 72px 48px 80px; gap: 48px; position: relative; z-index: 2; }
.hp-conv__hdr { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.hp-conv__heading { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.15; display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; justify-content: center; }
.hp-conv__h-grey { color: #9ca3af; }
.hp-conv__h-teal { color: #0FACB2; }
.hp-conv__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; max-width: 1100px; width: 100%; margin: 0 auto; align-items: start; }
.hp-conv__card { display: flex; flex-direction: column; background: transparent; }
.hp-conv__card--link { text-decoration: none; color: inherit; cursor: pointer; }
.hp-conv__card--link:hover .hp-conv__card-img-el { opacity: 0.85; transform: scale(1.02); }
.hp-conv__card--link:hover .hp-conv__name { color: #0FACB2; }
.hp-conv__card-img { width: 100%; aspect-ratio: 1; flex-shrink: 0; align-self: center; background-size: cover; background-position: center; box-shadow: 0 8px 30px -4px rgba(0,0,0,0.35), 0 4px 12px -2px rgba(0,0,0,0.2); }
.hp-conv__card-img--soon { filter: blur(3px) saturate(0.25); }
.hp-conv__card-img--placeholder {
    background: #edeef0 !important;
    background-image: none !important;
    position: relative;
    overflow: hidden;
}
.hp-conv__card-img--placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/app/uploads/2026/03/CrossAndFlame-white.svg') center / 72px no-repeat;
}
.hp-conv__card-info { display: flex; flex-direction: column; gap: 4px; padding: 14px 8px; text-align: center; }
.hp-conv__month { color: #9ca3af; font-size: 10px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; margin: 0; }
.hp-conv__name { color: #0FACB2; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin: 0; }

/* ── Leadership Training Centre ─────────────────────────── */
.hp-ltc { background: #f6f8fc; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.hp-ltc__banner { width: 100%; overflow: hidden; height: 380px; flex-shrink: 0; }
.hp-ltc__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hp-ltc__content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; max-width: 720px; padding: 72px 48px 80px; }
.hp-ltc__eyebrow { color: #0FACB2; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin: 0; }
.hp-ltc__heading { color: #1f2937; font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1.1; margin: 0; }
.hp-ltc__tagline { color: #4b5563; font-size: clamp(16px, 2vw, 20px); font-weight: 300; margin: 0; line-height: 1.4; }
.hp-ltc__body { color: #6b7280; font-size: 15px; line-height: 1.7; margin: 0; max-width: 580px; }
.hp-ltc__cta { display: inline-block; background: #F7C70C; border: none; border-radius: 999px; padding: 13px 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #1f2328; text-decoration: none; margin-top: 8px; transition: background 0.2s; }
.hp-ltc__cta:hover { background: #e6b800; }

/* ── Find A Church ───────────────────────────────────────── */
.hp-fac { background: #30373b; display: flex; flex-direction: column; align-items: center; padding: 72px 120px; gap: 24px; text-align: center; }
.hp-fac__heading { color: #ffffff; font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; max-width: 800px; line-height: 1.2; margin: 0; }
.hp-fac__bar { display: flex; width: 100%; max-width: 760px; height: 52px; border-radius: 6px; overflow: hidden; background: #ffffff; }
.hp-fac__input { flex: 1; border: none; outline: none; padding: 0 20px; font-family: inherit; font-size: 15px; color: #30373b; background: transparent; }
.hp-fac__input::placeholder { color: #9ca3af; }
.hp-fac__btn { background: #F7C70C; border: none; padding: 0 28px; font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: 1px; color: #1f2328; cursor: pointer; border-radius: 0 6px 6px 0; transition: background 0.2s; }
.hp-fac__btn:hover { background: #e6b800; }
.hp-fac__browse { color: #0FACB2; font-size: 15px; font-weight: 500; text-decoration: none; }
.hp-fac__browse:hover { text-decoration: underline; }

/* ── News ────────────────────────────────────────────────── */
.hp-news { background: #ffffff; padding: 72px 48px; display: flex; flex-direction: column; gap: 40px; }
.hp-news__hdr { display: flex; align-items: flex-end; justify-content: space-between; }
.hp-news__hdr-left { display: flex; flex-direction: column; gap: 8px; }
.hp-news__label { color: #F7C70C; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin: 0; }
.hp-news__title { color: #30373b; font-size: 36px; font-weight: 800; margin: 0; }
.hp-news__viewall { color: #30373b; font-size: 15px; font-weight: 500; text-decoration: none; }
.hp-news__viewall:hover { text-decoration: underline; }
.hp-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hp-news__card { border-radius: 8px; overflow: hidden; border: 1px solid #e5e7eb; display: flex; flex-direction: column; }
.hp-news__card-img { height: 220px; background-size: cover; background-position: center; background-color: #e5e7eb; }
.hp-news__card-body { display: flex; flex-direction: column; gap: 10px; padding: 16px 20px 24px; flex: 1; }
.hp-news__card-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #0FACB2; margin: 0; }
.hp-news__card-title { font-size: 20px; font-weight: 700; color: #30373b; margin: 0; line-height: 1.3; }
.hp-news__card-title a { color: inherit; text-decoration: none; }
.hp-news__card-title a:hover { text-decoration: underline; }
.hp-news__card-excerpt { color: #6b7280; font-size: 14px; line-height: 1.6; margin: 0; }

/* ── We Serve ────────────────────────────────────────────── */
.hp-give { background: #f6f8fc; display: flex; align-items: center; justify-content: center; padding: 80px 48px; }
.hp-give--dark {
    background-image: linear-gradient(160deg, #2e3a40 0%, #30373b 50%, #2a3238 100%);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.hp-give__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: 840px; text-align: center; }
.hp-give__heading-wrap { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.15; }
.hp-give__h-grey { color: #9ca3af; }
.hp-give__h-teal { color: #0FACB2; }
.hp-give__sub { color: #4b5563; font-size: 17px; line-height: 1.7; margin: 0; }
.hp-give--dark .hp-give__sub { color: rgba(255,255,255,0.65); }
.hp-give__survey-btn { display: inline-block; border: none; border-radius: 999px; padding: 12px 32px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #ffffff; text-decoration: none; background: rgba(255,255,255,0.15); cursor: pointer; font-family: inherit; transition: background 0.2s; }
.hp-give__survey-btn:hover { background: rgba(255,255,255,0.25); }
.hp-give__initiative-logo { max-width: 340px; width: 100%; height: auto; }

/* ── We Serve modal ──────────────────────────────────────── */
.hp-ws-modal { display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,0.55); align-items: center; justify-content: center; padding: 24px; }
.hp-ws-modal.is-open { display: flex; }
.hp-ws-modal__inner { background: #fff; border-radius: 10px; width: 100%; max-width: 640px; max-height: 85vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
.hp-ws-modal__hdr { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; border-bottom: 1px solid #e5e7eb; flex-shrink: 0; }
.hp-ws-modal__title { font-size: 18px; font-weight: 700; color: #1a1f24; margin: 0; }
.hp-ws-modal__close { background: none; border: none; cursor: pointer; padding: 4px 8px; color: #6b7280; font-size: 22px; line-height: 1; transition: color 0.15s; }
.hp-ws-modal__close:hover { color: #1a1f24; }
.hp-ws-modal__body { padding: 28px; overflow-y: auto; font-size: 16px; line-height: 1.75; color: #374151; }
.hp-ws-modal__body p { margin: 0 0 16px; }
.hp-ws-modal__body p:last-child { margin-bottom: 0; }
.hp-ws-modal__sig { display: block; max-width: 200px; height: auto; margin-top: 28px; }

/* ── Footer ──────────────────────────────────────────────── */
.hp-footer { background: #30373b; display: flex; flex-direction: column; }

/* Tagline */
.hp-footer__tagline-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 56px 80px 48px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hp-footer__tagline { color: #F7C70C; font-size: clamp(20px, 2.5vw, 30px); font-weight: 400; margin: 0; letter-spacing: 0.5px; }
.hp-footer__tagline-sub { color: #9ca3af; font-size: 14px; margin: 0; }

/* Body: info column + locations */
.hp-footer__body { display: grid; grid-template-columns: 240px 1fr; gap: 48px; padding: 48px 80px; }
.hp-footer__info { display: flex; flex-direction: column; gap: 24px; }
.hp-footer__logo { height: 40px; width: auto; object-fit: contain; object-position: left; }
.hp-footer__info-head { color: #ffffff; font-size: 12px; font-weight: 700; margin: 0 0 8px; }
.hp-footer__info-text { color: #9ca3af; font-size: 13px; line-height: 1.7; margin: 0; }
.hp-footer__phone { color: rgba(255,255,255,0.60); }
.hp-footer__ministries-list { display: flex; flex-direction: column; gap: 4px; }
.hp-footer__ministries-list a { color: #9ca3af; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.hp-footer__ministries-list a:hover { color: #ffffff; }

/* Locations */
.hp-footer__locations { display: flex; flex-direction: column; gap: 16px; }
.hp-footer__locations-grid { columns: 5; column-gap: 20px; }
.hp-footer__locations-grid a { display: block; color: #9ca3af; font-size: 13px; line-height: 2; text-decoration: none; white-space: nowrap; transition: color 0.2s; break-inside: avoid; }
.hp-footer__locations-grid a:hover { color: #ffffff; }

/* Bottom */
.hp-footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 32px 80px 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.hp-footer__find-btn { display: inline-block; border: 1.5px solid #6b7280; border-radius: 999px; padding: 10px 28px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #e5e7eb; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.hp-footer__find-btn:hover { border-color: #ffffff; color: #ffffff; }
.hp-footer__social { display: flex; gap: 10px; }
.hp-footer__social-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #4b5563; color: #e5e7eb; font-size: 14px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.hp-footer__social-icon:hover { background: #6b7280; color: #ffffff; }

/* ── About Page ───────────────────────────────────────────── */
.ntcg-about { background: #ffffff; }

/* Two-column layout: main + sticky sidenav */
.ntcg-about__layout {
    display: flex;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 48px;
}

.ntcg-about__main {
    flex: 1;
    min-width: 0;
    padding: 64px 0 80px;
}

/* Sticky right nav */
.ntcg-about__sidenav {
    width: 180px;
    flex-shrink: 0;
    position: sticky;
    top: calc(44px + 80px + 32px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 64px 0 80px;
    gap: 0;
}

.ntcg-about__sidenav-link {
    display: block;
    padding: 10px 16px 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    text-align: right;
    border-right: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    line-height: 1.3;
}
.ntcg-about__sidenav-link:hover { color: #30373b; }
.ntcg-about__sidenav-link.is-active { color: #30373b; border-right-color: #0FACB2; font-weight: 600; }

/* Sections */
.ntcg-about__section {
    padding: 0 0 72px;
    scroll-margin-top: 120px;
}
.ntcg-about__section:last-child { padding-bottom: 0; }

/* Eyebrow */
.ntcg-about__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6f6f6f;
    margin: 0 0 12px;
}

/* Headings */
.ntcg-about__h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 12px;
}

.ntcg-about__h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    color: #30373b;
    line-height: 1.1;
    margin: 0 0 20px;
}

.ntcg-about__tagline {
    font-size: 16px;
    font-weight: 300;
    color: #6f6f6f;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
}

.ntcg-about__body {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 20px;
    max-width: 680px;
}
.ntcg-about__body:last-child { margin-bottom: 0; }

/* Grey rounded cards */
.ntcg-about__card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 48px;
}
.ntcg-about__card--teal {
    background: #edfafa;
}

/* Buttons */
.ntcg-about__btn {
    display: inline-block;
    background: #30373b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    margin-top: 8px;
}
.ntcg-about__btn:hover { background: #0FACB2; }
.ntcg-about__btn--block {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    margin-top: 16px;
}

/* Leader image */
.ntcg-about__leader-img-wrap {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 12px;
    background: #e5e7eb;
    margin: 24px 0;
}
.ntcg-about__leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Vision pillars */
.ntcg-about__pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
}
.ntcg-about__pillar-title {
    font-size: 15px;
    font-weight: 700;
    color: #0FACB2;
    margin: 0 0 6px;
}

/* Mission grid */
.ntcg-about__mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 8px;
}
.ntcg-about__mission-item { }

/* Beliefs cards */
.ntcg-about__belief-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.ntcg-about__belief-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 32px;
}
.ntcg-about__belief-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #30373b;
    margin: 0 0 10px;
}
.ntcg-about__belief-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* About responsive */
@media (max-width: 960px) {
    .ntcg-about__sidenav { display: none; }
    .ntcg-about__layout { padding: 0 24px; }
    .ntcg-about__mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .ntcg-about__card { padding: 28px 24px; }
    .ntcg-about__belief-cards { grid-template-columns: 1fr; }
}
.hp-footer__copy { color: rgba(255,255,255,0.60); font-size: 12px; margin: 0; text-align: center; line-height: 1.6; }
.hp-footer__built { color: rgba(255,255,255,0.60); font-size: 11px; margin: 8px 0 0; text-align: center; }

/* ── Footer tablet — equalise left/right padding ─────────── */
@media (max-width: 1100px) and (min-width: 769px) {
    .hp-footer__body {
        padding: 48px 40px;
    }
    .hp-footer__bottom {
        padding: 32px 40px 40px;
    }
}

/* ── Homepage mobile / tablet ───────────────────────────── */
@media (max-width: 768px) {

    /* Hero logo + tagline — centred */
    .ntcg-homepage__logo {
        width: min(260px, 70vw) !important;
        max-width: 260px !important;
        margin-left: auto;
        margin-right: auto;
    }
    .ntcg-homepage__tagline {
        text-align: center;
    }

    /* Body text — compact like desktop proportions */
    .hp-about__body,
    .hp-about__quote {
        font-size: 14px;
        line-height: 1.65;
    }
    .hp-prayer__sub,
    .hp-prayer__card-body {
        font-size: 13px;
    }
    .hp-give__sub {
        font-size: 13px;
        line-height: 1.65;
    }
    .hp-about {
        padding: 48px 24px 56px;
    }
    .hp-prayer,
    .hp-conv,
    .hp-give {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hp-give--dark { background-attachment: scroll; }

    /* National Prayer — stack cards vertically */
    .hp-prayer {
        padding: 56px 24px 64px;
    }
    .hp-prayer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Upcoming Conferences */
    .hp-conv {
        padding: 56px 16px 64px;
    }
    .hp-conv__grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }

    /* Footer — hide locations, centre info + ministries */
    .hp-footer__body {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        justify-items: center;
        text-align: center;
    }
    .hp-footer__info {
        align-items: center;
    }
    .hp-footer__logo {
        object-position: center;
    }
    .hp-footer__ministries-list {
        align-items: center;
    }
    .hp-footer__locations {
        display: none;
    }
    .hp-footer__tagline-wrap {
        padding: 48px 24px 40px;
    }
    .hp-footer__bottom {
        padding: 32px 24px 40px;
    }

    /* ── Inner pages: about / history / beliefs / leadership / locations ── */
    .ntcg-about__h1 {
        font-size: clamp(32px, 9vw, 48px);
    }
    .ntcg-about__h2 {
        font-size: clamp(22px, 6vw, 34px);
    }
    .ntcg-about__body {
        font-size: 14px;
        line-height: 1.7;
    }
    .ntcg-about__tagline {
        font-size: 14px;
    }
    .ntcg-about__card {
        padding: 28px 20px;
    }
    .ntcg-beliefs__title {
        font-size: 14px;
    }
    .ntcg-beliefs__text {
        font-size: 14px;
    }
    .ntcg-leadership__name {
        font-size: 13px;
    }
    .ntcg-leadership__role {
        font-size: 12px;
    }
    .ntcg-history__pioneer-name {
        font-size: 13px;
    }
    .ntcg-history__pioneer-role {
        font-size: 12px;
    }
    .ntcg-loc__heading {
        font-size: clamp(32px, 9vw, 48px);
    }
    .ntcg-loc__sub {
        font-size: 15px;
    }
}

/* ── History Page ────────────────────────────────────────── */
.ntcg-history__figure {
    margin: 32px 0 0;
}
.ntcg-history__figure-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    max-height: 400px;
}
.ntcg-history__figure-caption {
    margin-top: 10px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.ntcg-history__offices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.ntcg-history__office {
    margin: 0;
}
.ntcg-history__office img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.ntcg-history__office figcaption {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #30373b;
    line-height: 1.5;
}
.ntcg-history__office figcaption span {
    font-weight: 400;
    color: #6b7280;
}

.ntcg-history__pioneers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.ntcg-history__pioneer {
    text-align: center;
}
.ntcg-history__pioneer img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    display: block;
    margin-bottom: 12px;
}
.ntcg-history__pioneer-name {
    font-size: 14px;
    font-weight: 700;
    color: #30373b;
    margin: 0 0 2px;
}
.ntcg-history__pioneer-role {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}
.ntcg-history__pioneer-years {
    font-size: 12px;
    color: #9ca3af;
    margin: 2px 0 0;
}

@media (max-width: 960px) {
    .ntcg-history__pioneers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ntcg-history__offices { grid-template-columns: 1fr; }
    .ntcg-history__pioneers { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── Leadership Page ──────────────────────────────────────── */
.ntcg-leadership__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.ntcg-leadership__person {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.ntcg-leadership__person--noimg {
    background: #f6f8fc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 12px;
    justify-content: center;
}

.ntcg-leadership__photo-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    background: #e5e7eb;
}

.ntcg-leadership__photo-wrap--has-img { background: #eef0f2; aspect-ratio: 1; border-radius: 50%; overflow: hidden; }
.ntcg-leadership__photo-wrap--has-img .ntcg-leadership__photo { object-fit: cover; object-position: center center; padding: 0; }

.ntcg-leadership__photo-wrap--sm {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.ntcg-leadership__photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.ntcg-leadership__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ntcg-leadership__name {
    font-size: 14px;
    font-weight: 700;
    color: #30373b;
    margin: 0;
    line-height: 1.3;
}

.ntcg-leadership__role {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.ntcg-leadership__dept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.ntcg-leadership__dept-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

/* Staff compact grid */
.ntcg-leadership__staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}
.ntcg-leadership__staff-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
}
.ntcg-leadership__staff-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1f24;
    margin: 0 0 4px;
}
.ntcg-leadership__staff-role {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .ntcg-leadership__grid { grid-template-columns: repeat(2, 1fr); }
    .ntcg-leadership__dept-grid { grid-template-columns: repeat(2, 1fr); }
    .ntcg-leadership__staff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ntcg-leadership__grid { grid-template-columns: repeat(2, 1fr); }
    .ntcg-leadership__dept-grid { grid-template-columns: 1fr; }
    .ntcg-leadership__staff-grid { grid-template-columns: 1fr; }
}

/* ── Beliefs Page ─────────────────────────────────────────── */
.ntcg-beliefs__list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: belief;
}

.ntcg-beliefs__item {
    counter-increment: belief;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: start;
}
.ntcg-beliefs__item:first-child { border-top: 1px solid #e5e7eb; }

.ntcg-beliefs__item::before {
    content: counter(belief, decimal-leading-zero);
    font-size: 13px;
    font-weight: 700;
    color: #0FACB2;
    padding-top: 2px;
    line-height: 1.4;
}

.ntcg-beliefs__title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #30373b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ntcg-beliefs__text {
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
}

.ntcg-beliefs__further {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

/* ══════════════════════════════════════════════════════════════
   Locations page
   ══════════════════════════════════════════════════════════════ */

/* Override legacy fullscreen-map lock that blocked scrolling */
.page-template-page-ntcg-locations,
.page-template-page-ntcg-locations body {
    overflow: visible !important;
    height: auto !important;
}

.ntcg-loc {
    background: #fff;
}

/* Map modal */
.ntcg-map-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ntcg-map-modal.is-open {
    display: flex;
}

.ntcg-map-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.ntcg-map-modal__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.ntcg-map-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.ntcg-map-modal__title {
    font-size: 15px;
    font-weight: 600;
    color: #30373b;
    margin: 0;
}

.ntcg-map-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.1s, color 0.1s;
}

.ntcg-map-modal__close:hover {
    background: #f3f4f6;
    color: #30373b;
}

.ntcg-map-modal__iframe-wrap {
    height: 480px;
    flex-shrink: 0;
}

.ntcg-map-modal__iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.ntcg-map-modal__footer {
    display: flex;
    justify-content: center;
    padding: 12px 20px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.ntcg-map-modal__directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #0FACB2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 999px;
    transition: background 0.2s;
}

.ntcg-map-modal__directions-btn:hover {
    background: #0a8f96;
}

@media (max-width: 600px) {
    .ntcg-map-modal {
        padding: 0;
        align-items: flex-end;
    }

    .ntcg-map-modal__box {
        border-radius: 16px 16px 0 0;
        max-width: 100%;
    }

    .ntcg-map-modal__iframe-wrap {
        height: 320px;
    }

    .ntcg-map-modal__directions-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Hero — two column */
.ntcg-loc__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 148px 40px 80px; /* 148px = 102px nav + 46px breathing room */
}

.ntcg-loc__hero-text {
    min-width: 0;
}

.ntcg-loc__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0a6e73;
    margin: 0 0 16px;
}

.ntcg-loc__heading {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: #30373b;
    margin: 0 0 20px;
}

.ntcg-loc__sub {
    font-size: 17px;
    line-height: 1.65;
    color: #6b7280;
    max-width: 420px;
    margin: 0 0 32px;
}

.ntcg-loc__hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ntcg-loc__cta {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ntcg-loc__cta--primary {
    background: #0FACB2;
    color: #fff;
}

.ntcg-loc__cta--primary:hover {
    background: #097d84;
    color: #fff;
}

.ntcg-loc__cta--outline {
    border: 1.5px solid #30373b;
    color: #30373b;
    background: transparent;
}

.ntcg-loc__cta--outline:hover {
    background: #30373b;
    color: #fff;
}

/* Map in hero */
.ntcg-loc__hero-map {
    border-radius: 16px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.ntcg-loc__hero-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Search bar */
.ntcg-loc__search-section {
    border-top: 1px solid #e5e7eb;
    padding: 40px 40px 0;
}

.ntcg-loc__search-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #0FACB2;
    padding-bottom: 12px;
}

.ntcg-loc__search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #30373b;
    background: transparent;
    font-family: inherit;
}

.ntcg-loc__search-input::placeholder {
    color: #0FACB2;
}

.ntcg-loc__search-icon {
    color: #0FACB2;
    flex-shrink: 0;
}

/* Directory grid */
.ntcg-loc__directory {
    padding: 56px 40px 80px;
}

.ntcg-loc__directory-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
}

.ntcg-loc__region-name {
    font-size: 15px;
    font-weight: 700;
    color: #30373b;
    margin: 0 0 10px;
}

.ntcg-loc__region-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ntcg-loc__region-items li {
    line-height: 1;
}

.ntcg-loc__region-items li a {
    font-size: 14px;
    color: #0FACB2;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-block;
    padding: 4px 0;
    transition: color 0.1s;
}

.ntcg-loc__region-items li a:hover {
    color: #097d84;
}

.ntcg-loc__no-results {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
    color: #6b7280;
    font-size: 15px;
}

/* Postcode proximity results */
.ntcg-loc__nearby {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 16px;
}

.ntcg-loc__nearby-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 20px;
}

.ntcg-loc__nearby-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4px 24px;
}

.ntcg-loc__nearby-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
}

.ntcg-loc__nearby-item a {
    font-size: 14px;
    color: #0FACB2;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.1s;
}

.ntcg-loc__nearby-item a:hover {
    color: #097d84;
}

.ntcg-loc__nearby-dist {
    font-size: 12px;
    color: #9ca3af;
    font-variant-numeric: tabular-nums;
    margin-left: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .ntcg-loc__hero {
        grid-template-columns: 1fr;
        padding: 130px 24px 48px;
        gap: 36px;
    }

    .ntcg-loc__hero-map {
        height: 340px;
    }

    .ntcg-loc__directory-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntcg-loc__search-section {
        padding: 32px 24px 0;
    }

    .ntcg-loc__directory {
        padding: 40px 24px 60px;
    }
}

@media (max-width: 480px) {
    .ntcg-loc__directory-inner {
        grid-template-columns: 1fr;
    }
}

/* ── Video pause button ──────────────────────────────────── */
.hp-hero__pause-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.2s ease;
}
.ntcg-homepage__hero:hover .hp-hero__pause-btn,
.hp-hero__pause-btn:focus-visible {
    opacity: 1;
}
.hp-hero__pause-btn:focus-visible {
    background: rgba(0,0,0,0.7);
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
.hp-hero__pause-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ── Prayer image as <img> ───────────────────────────────── */
.hp-prayer__img {
    object-fit: cover;
    object-position: center;
}

/* ── Conference image as <img> ───────────────────────────── */
.hp-conv__card-img-el {
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    align-self: center;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 8px 30px -4px rgba(0,0,0,0.35), 0 4px 12px -2px rgba(0,0,0,0.2);
    transition: opacity 0.2s, transform 0.2s;
}
@media (max-width: 768px) {
    .hp-conv__card-img-el {
        width: 100%;
        height: auto;
    }
}

/* ── Blockquote citation ─────────────────────────────────── */
.hp-about__quote-credit {
    display: block;
    font-size: 13px;
    font-style: normal;
    color: #6f6f6f;
    margin-top: 10px;
}
.hp-about__quote-credit cite { font-style: italic; }

/* ── Abbreviations — semantic but no dotted underline ────── */
abbr[title] {
    text-decoration: none;
    cursor: help;
}

/* ── Footer email link ───────────────────────────────────── */
.hp-footer__info-text a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.35);
    text-underline-offset: 2px;
}
.hp-footer__info-text a:hover {
    text-decoration-color: rgba(255,255,255,0.75);
}

/* ── Policies page ───────────────────────────────────────── */
.ntcg-policies__table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}
.ntcg-policies__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ntcg-policies__table th,
.ntcg-policies__table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.ntcg-policies__table th {
    background: #f9fafb;
    font-weight: 600;
    color: #30373b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ntcg-policies__table tr:last-child td { border-bottom: none; }
.ntcg-policies__table td:first-child code {
    font-family: ui-monospace, monospace;
    font-size: 13px;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    color: #374151;
}
.ntcg-policies__contact-block {
    background: rgba(15,172,178,0.07);
    border-left: 3px solid #0FACB2;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 20px 0;
}

/* ── Contact page ────────────────────────────────────────── */
.ntcg-contact__details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.ntcg-contact__detail-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ntcg-contact__detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(15,172,178,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0FACB2;
    margin-bottom: 4px;
    flex-shrink: 0;
}
.ntcg-contact__detail-head {
    font-size: 15px;
    font-weight: 600;
    color: #30373b;
    margin: 0;
}
.ntcg-contact__detail-body {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    font-style: normal;
    line-height: 1.6;
}
.ntcg-contact__detail-body a {
    color: #0FACB2;
    text-decoration: none;
}
.ntcg-contact__detail-body a:hover { text-decoration: underline; }
.ntcg-contact__detail-hours {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

/* Form */
.ntcg-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}
.ntcg-contact__form-row { display: flex; gap: 16px; }
.ntcg-contact__form-row--two > .ntcg-contact__field { flex: 1; min-width: 0; }
.ntcg-contact__field { display: flex; flex-direction: column; gap: 6px; }
.ntcg-contact__label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.ntcg-contact__optional { font-weight: 400; color: #9ca3af; }
.ntcg-contact__input {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #30373b;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    appearance: none;
}
.ntcg-contact__input:focus {
    outline: none;
    border-color: #0FACB2;
    box-shadow: 0 0 0 3px rgba(15,172,178,0.15);
}
.ntcg-contact__input::placeholder { color: #9ca3af; }
.ntcg-contact__textarea { resize: vertical; min-height: 140px; }
.ntcg-contact__select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.ntcg-contact__field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.ntcg-contact__check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
    line-height: 1.5;
}
.ntcg-contact__check {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: #0FACB2;
}
.ntcg-contact__check-label a { color: #0FACB2; }
.ntcg-contact__submit {
    align-self: flex-start;
    background: #0FACB2;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    letter-spacing: 0.02em;
}
.ntcg-contact__submit:hover { background: #0a8f96; }
.ntcg-contact__submit:focus-visible {
    outline: 2px solid #0FACB2;
    outline-offset: 3px;
}
.ntcg-contact__success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15,172,178,0.08);
    border: 1px solid rgba(15,172,178,0.3);
    border-radius: 10px;
    padding: 16px 20px;
    color: #0a6e73;
    font-size: 14px;
    margin-bottom: 8px;
}
.ntcg-contact__success svg { flex-shrink: 0; color: #0FACB2; }
.ntcg-contact__success p { margin: 0; }

/* Department grid */
.ntcg-contact__dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}
.ntcg-contact__dept-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ntcg-contact__dept-card:hover {
    border-color: #0FACB2;
    box-shadow: 0 2px 12px rgba(15,172,178,0.1);
}
.ntcg-contact__dept-name {
    font-size: 14px;
    font-weight: 600;
    color: #30373b;
}
.ntcg-contact__dept-email {
    font-size: 13px;
    color: #0FACB2;
}

@media (max-width: 768px) {
    .ntcg-contact__details-grid { grid-template-columns: 1fr; }
    .ntcg-contact__form-row--two { flex-direction: column; }
    .ntcg-contact__dept-grid { grid-template-columns: 1fr; }
    .ntcg-contact__submit { width: 100%; text-align: center; justify-content: center; }
}

/* Policies list */
.ntcg-policies__list {
    padding-left: 20px;
    margin: 12px 0 16px;
    display: block;
}
.ntcg-policies__list li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ── Bio page (admin-bishop) ─────────────────────────────── */

.ntcg-bio__hero-img-wrap {
    margin: 28px 0 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.ntcg-bio__hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.ntcg-bio__hero-caption {
    font-size: 12px;
    color: #9ca3af;
    margin: 8px 0 0;
    text-align: center;
    letter-spacing: 0.04em;
}

/* Stats strip */
.ntcg-bio__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}
.ntcg-bio__stat {
    background: #ffffff;
    padding: 24px 20px;
    text-align: center;
}
.ntcg-bio__stat-number {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0FACB2;
    margin: 0 0 4px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.ntcg-bio__stat-label {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Pull quote */
.ntcg-bio__quote {
    border-left: 4px solid #0FACB2;
    margin: 24px 0;
    padding: 12px 20px;
    background: rgba(15,172,178,0.05);
    border-radius: 0 8px 8px 0;
}
.ntcg-bio__quote p {
    font-size: 16px;
    font-style: italic;
    color: #30373b;
    margin: 0;
    line-height: 1.65;
}
.ntcg-bio__quote--light {
    border-left-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.12);
}
.ntcg-bio__quote--light p {
    color: rgba(255,255,255,0.95);
}

/* Timeline */
.ntcg-bio__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 28px 0;
    border-left: 2px solid #e5e7eb;
    padding-left: 24px;
}
.ntcg-bio__timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 24px;
    position: relative;
}
.ntcg-bio__timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #e5e7eb;
}
.ntcg-bio__timeline-item--current::before {
    background: #0FACB2;
    box-shadow: 0 0 0 2px #0FACB2;
}
.ntcg-bio__timeline-year {
    font-size: 12px;
    font-weight: 700;
    color: #0FACB2;
    letter-spacing: 0.08em;
    min-width: 36px;
    padding-top: 2px;
}
.ntcg-bio__timeline-title {
    font-size: 15px;
    font-weight: 700;
    color: #30373b;
    margin: 0 0 4px;
}
.ntcg-bio__timeline-body {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .ntcg-bio__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ntcg-bio__stats { grid-template-columns: 1fr 1fr; }
}

/* ── Give page ───────────────────────────────────────────── */

/* Payit two-column layout */
.ntcg-give__payit-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 24px;
}

/* CTA column */
.ntcg-give__payit-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.ntcg-give__payit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F7C70C;
    color: #30373b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
    width: 100%;
    justify-content: center;
}
.ntcg-give__payit-btn:hover {
    background: #e6b800;
    transform: translateY(-1px);
}

.ntcg-give__payit-or {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ntcg-give__qr {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    display: block;
}

.ntcg-give__payit-logo {
    max-width: 120px;
    height: auto;
    display: block;
    opacity: 0.75;
}

/* Info column */
.ntcg-give__payit-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ntcg-give__payit-head {
    font-size: 20px;
    font-weight: 700;
    color: #30373b;
    margin: 0 0 16px;
}

.ntcg-give__ref-block {
    background: rgba(247,199,12,0.08);
    border: 1.5px solid rgba(247,199,12,0.4);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 4px 0 16px;
}
.ntcg-give__ref-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 8px;
}
.ntcg-give__ref-example {
    font-size: 15px;
    color: #30373b;
    margin: 0 0 6px;
}
.ntcg-give__ref-example code {
    background: rgba(0,0,0,0.06);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 14px;
}
.ntcg-give__ref-eg {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Other ways: two equal cards */
.ntcg-give__methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

/* Bank transfer definition list */
.ntcg-give__bank-dl {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}
.ntcg-give__bank-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.ntcg-give__bank-row dt {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    min-width: 130px;
    flex-shrink: 0;
}
.ntcg-give__bank-row dd {
    margin: 0;
    font-size: 14px;
    color: #30373b;
}
.ntcg-give__bank-row dd code {
    background: #f3f4f6;
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 13px;
    letter-spacing: 0.04em;
}

/* Cheque address */
.ntcg-give__address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
    color: #30373b;
    border-left: 3px solid #e5e7eb;
    padding-left: 14px;
    margin: 12px 0 16px;
}

/* Newsletter section */
.ntcg-give__newsletter {
    background: #0FACB2;
    border-radius: 16px;
    padding: 48px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ntcg-give__newsletter-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin: 0 0 12px;
}
.ntcg-give__newsletter-head {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.15;
}
.ntcg-give__newsletter-body {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.ntcg-give__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ntcg-give__newsletter-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ntcg-give__newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #30373b;
    background: #ffffff;
    box-sizing: border-box;
}
.ntcg-give__newsletter-input::placeholder { color: #9ca3af; }
.ntcg-give__newsletter-input:focus {
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: 2px;
}
.ntcg-give__newsletter-btn {
    background: #30373b;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    align-self: flex-start;
    width: 100%;
}
.ntcg-give__newsletter-btn:hover { background: #1a1f22; }
.ntcg-give__newsletter-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}
.ntcg-give__newsletter-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.ntcg-give__newsletter-legal a { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
    .ntcg-give__payit-wrap { grid-template-columns: 1fr; }
    .ntcg-give__payit-cta { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .ntcg-give__methods-grid { grid-template-columns: 1fr; }
    .ntcg-give__newsletter { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
    .ntcg-give__newsletter-btn { width: 100%; }
}

/* ── Newsroom ─────────────────────────────────────────────── */

/* Magazine reader */
/* Reader stage — dark surround makes the viewer appear to float */
.ntcg-newsroom__reader-stage {
    background: #141618;
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ntcg-newsroom__reader {
    height: 760px;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    background: #0c0e10;
    box-shadow:
        0 32px 80px rgba(0,0,0,0.55),
        0 8px 24px rgba(0,0,0,0.3);
}
.ntcg-newsroom__reader iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Issue selector */
.ntcg-newsroom__issue-selector {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 24px;
}
.ntcg-newsroom__issue-tile {
    background: var(--tile-colour, #0facb2);
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.15s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ntcg-newsroom__issue-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.ntcg-newsroom__issue-tile.is-active {
    border-color: #fff;
    box-shadow: 0 0 0 1px #1a1f24, 0 8px 24px rgba(0,0,0,0.2);
}

/* Cover image (when thumb URL is provided) */
.ntcg-newsroom__tile-cover {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

/* Placeholder icon (when no thumb) */
.ntcg-newsroom__tile-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ntcg-newsroom__tile-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 4px 9px;
    color: rgba(255,255,255,0.92);
    background: rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
    .ntcg-newsroom__reader-stage { padding: 16px; border-radius: 12px; }
    .ntcg-newsroom__reader { height: 500px; }
    .ntcg-newsroom__issue-selector { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
    .ntcg-newsroom__reader-stage { padding: 12px; }
    .ntcg-newsroom__reader { height: 380px; }
    .ntcg-newsroom__issue-selector { grid-template-columns: repeat(4, 1fr); }
    .ntcg-newsroom__tile-label { font-size: 10px; }
}

/* Filter tabs */
.ntcg-newsroom__filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.ntcg-newsroom__filter-btn {
    background: #f0f0f1;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #30373b;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ntcg-newsroom__filter-btn[data-filter="all"]                  { border-color: #30373b; }
.ntcg-newsroom__filter-btn[data-filter="statement"]            { border-color: #d1d5db; }
.ntcg-newsroom__filter-btn[data-filter="release"]              { border-color: #d1d5db; }
.ntcg-newsroom__filter-btn[data-filter="promo"]                { border-color: #d1d5db; }
.ntcg-newsroom__filter-btn.is-active[data-filter="all"]        { background: #30373b; border-color: #30373b; color: #fff; }
.ntcg-newsroom__filter-btn.is-active[data-filter="statement"]  { background: #0facb2; border-color: #0facb2; color: #fff; }
.ntcg-newsroom__filter-btn.is-active[data-filter="release"]    { background: #f7c70c; border-color: #f7c70c; color: #30373b; }
.ntcg-newsroom__filter-btn.is-active[data-filter="promo"]      { background: #fe8f11; border-color: #fe8f11; color: #fff; }
.ntcg-newsroom__view-toggle {
    margin-left: auto;
    display: flex;
    gap: 4px;
}
.ntcg-newsroom__view-btn {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    transition: color 0.15s, border-color 0.15s;
}
.ntcg-newsroom__view-btn.is-active,
.ntcg-newsroom__view-btn:hover { color: #30373b; border-color: #9ca3af; }

/* Article grid */
.ntcg-newsroom__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ntcg-newsroom__grid.is-list { grid-template-columns: 1fr; }
.ntcg-newsroom__card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s;
}
.ntcg-newsroom__card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.ntcg-newsroom__card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}
.ntcg-newsroom__card-img--logo {
    object-fit: contain;
    padding: 24px 32px;
    background: #f6f8fc;
}
.ntcg-newsroom__card-img--placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ntcg-newsroom__card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.ntcg-newsroom__card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ntcg-newsroom__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}
.ntcg-newsroom__badge--magazine  { background: #fef3c7; color: #92400e; }
.ntcg-newsroom__badge--statement { background: rgba(15,172,178,0.12); color: #0facb2; }
.ntcg-newsroom__badge--release   { background: rgba(247,199,12,0.15); color: #b8930a; }
.ntcg-newsroom__badge--promo     { background: rgba(254,143,17,0.15); color: #d97706; }
.ntcg-newsroom__card-date { font-size: 12px; color: #9ca3af; }
.ntcg-newsroom__card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1f24;
    line-height: 1.35;
    margin: 0;
}
.ntcg-newsroom__card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ntcg-newsroom__card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ntcg-newsroom__card-link {
    font-size: 13px;
    font-weight: 600;
    color: #0facb2;
    text-decoration: none;
}
.ntcg-newsroom__card-link:hover { text-decoration: underline; }

/* List view adjustments */
.ntcg-newsroom__show-all-wrap {
    margin-top: 24px;
}
.ntcg-newsroom__show-all-btn {
    display: block;
    width: 100%;
    background: #30373b;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-family: "League Spartan", "Figtree", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s;
}
.ntcg-newsroom__show-all-btn:hover {
    background: #0facb2;
}
.ntcg-newsroom__grid.is-list .ntcg-newsroom__card { flex-direction: row; }
.ntcg-newsroom__grid.is-list .ntcg-newsroom__card-img,
.ntcg-newsroom__grid.is-list .ntcg-newsroom__card-img--placeholder {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: unset;
    height: auto;
}

/* Connect Magazine embed */
.ntcg-newsroom__magazine-embed {
    position: relative;
    width: 100%;
    padding-top: 62%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #111;
}
.ntcg-newsroom__magazine-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.ntcg-newsroom__magazine-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.ntcg-newsroom__magazine-issues {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.ntcg-newsroom__issue-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s;
}
.ntcg-newsroom__issue-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.ntcg-newsroom__issue-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f3f4f6;
    display: block;
}
.ntcg-newsroom__issue-label {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #30373b;
    text-align: center;
}

/* Featured statement */
.ntcg-newsroom__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.ntcg-newsroom__featured-img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.ntcg-newsroom__featured-body { display: flex; flex-direction: column; gap: 12px; }
.ntcg-newsroom__featured-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1f24;
    line-height: 1.3;
}
.ntcg-newsroom__featured-excerpt {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .ntcg-newsroom__grid { grid-template-columns: 1fr; }
    .ntcg-newsroom__magazine-issues { grid-template-columns: repeat(2, 1fr); }
    .ntcg-newsroom__featured { grid-template-columns: 1fr; }
    .ntcg-newsroom__grid.is-list .ntcg-newsroom__card { flex-direction: column; }
    .ntcg-newsroom__grid.is-list .ntcg-newsroom__card-img,
    .ntcg-newsroom__grid.is-list .ntcg-newsroom__card-img--placeholder { width: 100%; aspect-ratio: 16/9; }
}

/* ── Conferences holding page ─────────────────────────────── */

.conf-hold__hero {
    position: relative;
    background: #30373b;
    margin-top: -124px;
    padding: calc(124px + 96px) 32px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
}
.admin-bar .conf-hold__hero {
    margin-top: -156px;
    padding-top: calc(156px + 96px);
}
.conf-hold__hero-inner {
    position: relative;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.conf-hold__hero .ntcg-about__eyebrow { color: rgba(255,255,255,0.7); }
.conf-hold__hero .ntcg-about__h1 { color: #fff; }
.conf-hold__hero .ntcg-inner__h-grey  { color: rgba(255,255,255,0.7); }
.conf-hold__hero .ntcg-inner__h-teal  { color: #F7C70C; }
.conf-hold__hero .ntcg-about__tagline { color: rgba(255,255,255,0.85); }
.conf-hold__hero .ntcg-about__body    { color: rgba(255,255,255,0.9); max-width: 580px; }
.conf-hold__next {
    margin-top: 28px;
    margin-bottom: 32px;
    padding: 18px 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    text-align: left;
}
.conf-hold__next-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 6px;
}
.conf-hold__next-event {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
}
.conf-hold__next-date {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.conf-hold__cta {
    display: inline-block;
    background: #F7C70C;
    color: #1a1f24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: 999px;
    transition: opacity 0.2s;
}
.conf-hold__cta:hover { opacity: 0.85; }

/* Watch-back section */
.conf-hold__watchback {
    background: #f6f8fc;
    padding: 72px 32px 96px;
}
.conf-hold__watchback-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.conf-hold__conf-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.conf-hold__conf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--conf-colour, #333);
    flex-shrink: 0;
}
.conf-hold__conf-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 4px;
}
.conf-hold__conf-name {
    font-size: 28px;
    font-weight: 800;
    color: #1a1f24;
    margin: 0;
}
.conf-hold__sessions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.conf-hold__session {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}
.conf-hold__embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.conf-hold__embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.conf-hold__session-title {
    padding: 14px 16px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1f24;
    margin: 0;
}

@media (max-width: 768px) {
    .conf-hold__hero { padding: 48px 20px 60px; }
    .conf-hold__sessions { grid-template-columns: 1fr 1fr; }
    .conf-hold__watchback { padding: 52px 20px 72px; }
}
@media (max-width: 480px) {
    .conf-hold__sessions { grid-template-columns: 1fr; }
}

/* ── Conferences (old) ────────────────────────────────────── */

.ntcg-conf__hero { background: #0c0e10; }

.ntcg-conf__strip {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 48px 48px 0;
    height: 460px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ntcg-conf__panel {
    flex: 1;
    height: 72%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    background: var(--conf-bg, #1a1a1a);
    filter: grayscale(1) brightness(0.5);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: flex 0.5s cubic-bezier(0.4,0,0.2,1),
                height 0.5s cubic-bezier(0.4,0,0.2,1),
                filter 0.4s ease;
}
.ntcg-conf__panel.is-active { flex: 2.8; height: 100%; filter: none; }
.ntcg-conf__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
    pointer-events: none;
}
.ntcg-conf__panel-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    writing-mode: vertical-rl;
    rotate: 180deg;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.ntcg-conf__panel:not(.is-active):hover .ntcg-conf__panel-label { opacity: 1; }

/* Hero info bar */
.ntcg-conf__hero-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 56px 44px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}
.ntcg-conf__hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}
.ntcg-conf__hero-title {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 10px;
    transition: opacity 0.15s;
}
.ntcg-conf__hero-tagline {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 480px;
    transition: opacity 0.15s;
}
.ntcg-conf__hero-cta {
    flex-shrink: 0;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s;
}
.ntcg-conf__hero-cta:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.45); }

/* Dot nav */
.ntcg-conf__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-bottom: 32px;
}
.ntcg-conf__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: none; padding: 0; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.ntcg-conf__dot.is-active { background: #fff; transform: scale(1.4); }

/* Content sections */
.ntcg-conf__sections-wrap { background: #f8f8f8; }

.ntcg-conf__section {
    padding: 56px 56px 64px;
    max-width: 1400px;
    margin: 0 auto;
    scroll-margin-top: 80px;
    box-sizing: border-box;
}
.ntcg-conf__sections-wrap > div + div { border-top: 1px solid #e8e8e8; }

.ntcg-conf__section-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
}
.ntcg-conf__section-accent {
    width: 4px;
    min-height: 72px;
    background: var(--conf-colour, #0facb2);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
}
.ntcg-conf__section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--conf-colour, #0facb2);
    margin-bottom: 6px;
}
.ntcg-conf__section-name {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #1a1f24;
    margin: 0 0 6px;
}
.ntcg-conf__section-tagline { font-size: 15px; color: #6b7280; line-height: 1.6; margin: 0 0 8px; }
.ntcg-conf__section-desc    { font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0 0 8px; max-width: 640px; }
.ntcg-conf__section-dates   { font-size: 12px; font-weight: 600; color: #b0b7c0; margin: 0; }

/* Sessions coming-soon message (no sessions yet) */
.ntcg-conf__sessions-soon {
    padding: 40px 0 8px;
    color: #9ca3af;
    font-size: 14px;
}

/* Session grid */
.ntcg-conf__sessions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.ntcg-conf__session-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.18s;
}
.ntcg-conf__session-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }

.ntcg-conf__session-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #111;
}
.ntcg-conf__session-video iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.ntcg-conf__session-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1f24 0%, #2d3440 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ntcg-conf__session-play {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ntcg-conf__session-soon {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}
.ntcg-conf__session-body { padding: 16px 18px 20px; }
.ntcg-conf__session-title  { font-size: 14px; font-weight: 700; color: #1a1f24; margin: 0 0 4px; line-height: 1.35; }
.ntcg-conf__session-speaker { font-size: 13px; color: #9ca3af; margin: 0; }

@media (max-width: 1024px) {
    .ntcg-conf__strip { padding: 32px 24px 0; }
    .ntcg-conf__hero-info { padding: 28px 32px 36px; }
    .ntcg-conf__section { padding: 44px 32px 52px; }
}
@media (max-width: 768px) {
    .ntcg-conf__strip { height: 320px; gap: 4px; padding: 24px 16px 0; }
    .ntcg-conf__panel.is-active { flex: 2.2; }
    .ntcg-conf__hero-info { flex-direction: column; align-items: flex-start; padding: 24px 20px 32px; gap: 14px; }
    .ntcg-conf__section { padding: 36px 20px 44px; }
    .ntcg-conf__sessions { grid-template-columns: 1fr 1fr; }
    .ntcg-conf__section-accent { display: none; }
}
@media (max-width: 480px) {
    .ntcg-conf__strip { height: 240px; }
    .ntcg-conf__sessions { grid-template-columns: 1fr; }
}

/* ── Conferences watch-back (streaming layout) ─────────────────── */

.conf-watch__next-pill {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    overflow: hidden;
    font-family: inherit;
}
.conf-watch__next-pill-label {
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}
.conf-watch__next-pill-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(0, 0, 0, 0.10);
}
.conf-watch__next-pill-name {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1f24;
    letter-spacing: -0.01em;
}
.conf-watch__next-pill-count {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding: 10px 16px;
    background: #0FACB2;
    color: #fff;
}
.conf-watch__next-pill-number {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.conf-watch__next-pill-unit {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.conf-watch {
    background: transparent;
    padding: 0 0 80px;
}

/* Featured session */
.conf-watch__featured {
    position: relative;
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}
.conf-watch__featured-thumb {
    position: relative;
    width: 100%;
    padding-top: 42%;
    background-size: cover;
    background-position: center;
    background-color: #1a1f24;
    cursor: pointer;
}
.conf-watch__featured-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.conf-watch__featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,12,16,0.85) 0%, rgba(10,12,16,0.4) 60%, rgba(10,12,16,0.1) 100%);
    pointer-events: none;
}
.conf-watch__featured-info {
    position: absolute;
    bottom: 10%;
    left: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 420px;
}
.conf-watch__featured-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}
.conf-watch__featured-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}
.conf-watch__featured-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    font-family: inherit;
}
.conf-watch__featured-play:hover { background: rgba(255,255,255,0.25); }

/* Filter tabs */
.conf-watch__filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 28px 40px 20px;
    max-width: 1180px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.conf-watch__filter {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.conf-watch__filter:hover {
    background: #f3f4f6;
    color: #30373b;
    border-color: #9ca3af;
}
.conf-watch__filter.is-active {
    background: #0FACB2;
    border-color: #0FACB2;
    color: #fff;
}

/* Session grid */
.conf-watch__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 4px 40px 0;
    max-width: 1180px;
    margin: 0 auto;
}
.conf-watch__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
}
.conf-watch__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.conf-watch__thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0c0e12;
    overflow: hidden;
}
.conf-watch__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}
.conf-watch__thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.conf-watch__play-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
}
.conf-watch__play-btn svg {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.18s, transform 0.18s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.conf-watch__thumb:hover .conf-watch__play-btn { background: rgba(0,0,0,0.35); }
.conf-watch__thumb:hover .conf-watch__play-btn svg { opacity: 1; transform: scale(1); }
.conf-watch__card-body { padding: 12px 14px 16px; }
.conf-watch__card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1f24;
    margin: 0 0 3px;
    line-height: 1.3;
}
.conf-watch__card-speaker {
    font-size: 13px;
    color: #4b5563;
    margin: 0 0 8px;
}
.conf-watch__card-meta {
    display: flex;
    align-items: center;
    gap: 7px;
}
.conf-watch__card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.conf-watch__card-conf {
    font-size: 12px;
    color: #6b7280;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.conf-watch__card-year {
    font-size: 12px;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Video modal */
.conf-watch__modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.conf-watch__modal.is-open { display: flex; }
.conf-watch__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
}
.conf-watch__modal-box {
    position: relative;
    width: min(960px, calc(100vw - 40px));
    background: #1a1f24;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.conf-watch__modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.conf-watch__modal-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0 0 2px;
}
.conf-watch__modal-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.conf-watch__modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}
.conf-watch__modal-close:hover { background: rgba(255,255,255,0.18); }
.conf-watch__modal-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.conf-watch__modal-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .conf-watch__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .conf-watch__header-wrap { padding: 40px 20px 36px; }
    .conf-watch__filters { padding: 20px 20px 12px; }
    .conf-watch__grid { grid-template-columns: repeat(2, 1fr); padding: 4px 20px 0; }
}
@media (max-width: 480px) {
    .conf-watch__grid { grid-template-columns: 1fr; }
}

/* ── Connect Magazine gallery + modal ──────────────────────────── */
.ntcg-magazine__featured {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}
.ntcg-magazine__cover-wrap {
    position: relative;
    display: block;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: box-shadow 0.2s, transform 0.2s;
}
.ntcg-magazine__cover-wrap:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    transform: translateY(-3px);
}
.ntcg-magazine__cover-img {
    display: block;
    width: 100%;
    height: auto;
}
.ntcg-magazine__cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.ntcg-magazine__cover-wrap:hover .ntcg-magazine__cover-overlay,
.ntcg-magazine__cover-wrap:focus-visible .ntcg-magazine__cover-overlay {
    opacity: 1;
}
.ntcg-magazine__read-btn {
    background: #fff;
    color: #1a1f24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 4px;
}
.ntcg-magazine__featured-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}
.ntcg-magazine__featured-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1f24;
    margin: 0;
    line-height: 1.2;
}
.ntcg-magazine__featured-issue {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ntcg-magazine__featured-body {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}
.ntcg-magazine__cta { margin-top: 4px; }

.ntcg-magazine__past-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 36px 0 16px;
}
.ntcg-magazine__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}
.ntcg-magazine__grid .ntcg-magazine__cover-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ntcg-magazine__issue-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    padding: 6px 4px 2px;
    background: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Magazine fullscreen modal ─────────────────────────────────── */
.ntcg-magazine__modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.ntcg-magazine__modal.is-open {
    display: flex;
}
.ntcg-magazine__modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    z-index: 1;
}
.ntcg-magazine__modal-close:hover { background: rgba(255,255,255,0.2); }
.ntcg-magazine__modal iframe#ntcg-magazine-iframe {
    width: min(900px, calc(100vw - 40px));
    height: min(620px, calc(100vh - 80px));
    border: none;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .ntcg-magazine__featured { grid-template-columns: 1fr; }
    .ntcg-magazine__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Newsroom post modal ────────────────────────────────────── */
.ntcg-post-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.ntcg-post-modal.is-open { display: flex; }
.ntcg-post-modal__inner {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 640px;
    height: min(85vh, 720px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    overflow: hidden;
}
.ntcg-post-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px 16px;
    border-bottom: 1px solid #f0f1f3;
    flex-shrink: 0;
}
.ntcg-post-modal__title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1f24;
    margin: 0;
    line-height: 1.3;
}
.ntcg-post-modal__close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color 0.15s;
    margin-top: 2px;
}
.ntcg-post-modal__close:hover { color: #1a1f24; }
.ntcg-post-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px 28px 32px;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.75;
    color: #374151;
}
.ntcg-post-modal__body p { margin: 0 0 16px; }
.ntcg-post-modal__body p:last-of-type { margin-bottom: 0; }
.ntcg-post-modal__body ol {
    margin: 0 0 16px 20px;
    padding: 0;
}
.ntcg-post-modal__body li + li { margin-top: 10px; }
.ntcg-post-modal.has-video .ntcg-post-modal__inner {
    background: #111;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    height: auto;
    max-height: none;
}
.ntcg-post-modal.has-video .ntcg-post-modal__header {
    border-bottom-color: rgba(255,255,255,0.1);
}
.ntcg-post-modal.has-video .ntcg-post-modal__title {
    color: #fff;
}
.ntcg-post-modal.has-video .ntcg-post-modal__close {
    color: rgba(255,255,255,0.5);
}
.ntcg-post-modal.has-video .ntcg-post-modal__close:hover {
    color: #fff;
}
.ntcg-post-modal__video {
    width: auto;
    max-width: 100%;
    max-height: calc(75vh - 80px);
    border-radius: 6px;
    background: #000;
    display: block;
    margin: 0 auto;
}
.ntcg-post-modal__embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
}
.has-video .ntcg-post-modal__body {
    padding: 0;
}
.ntcg-post-modal__embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.ntcg-post-modal__signature {
    display: block;
    max-width: 200px;
    height: auto;
    margin-top: 28px;
}
.ntcg-post-modal__notes {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
}
.ntcg-post-modal__notes-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 12px;
}
.ntcg-post-modal__notes ol {
    margin: 0 0 12px 18px;
    padding: 0;
}
.ntcg-post-modal__notes li + li {
    margin-top: 6px;
}
.ntcg-post-modal__hashtag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #0facb2;
    background: rgba(15, 172, 178, 0.08);
    border: 1px solid rgba(15, 172, 178, 0.2);
    border-radius: 999px;
    padding: 4px 12px;
    margin-top: 12px;
}
.ntcg-newsroom__read-more {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}
@media (max-width: 480px) {
    .ntcg-post-modal { padding: 16px; }
    .ntcg-post-modal__header { padding: 20px 20px 14px; }
    .ntcg-post-modal__body { padding: 20px 20px 28px; }
}

/* ── Homepage subscribe section ──────────────────────────── */
.hp-subscribe {
    background: #f6f8fc;
    padding: 72px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-subscribe__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1080px;
}

.hp-subscribe__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0FACB2;
    margin: 0 0 10px;
}

.hp-subscribe__heading {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #30373b;
    line-height: 1.2;
    margin: 0 0 12px;
}

.hp-subscribe__body {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.hp-subscribe__btn {
    flex-shrink: 0;
    background: #30373b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    white-space: nowrap;
}

.hp-subscribe__btn:hover { background: #1e2427; }

@media (max-width: 768px) {
    .hp-subscribe { padding: 56px 24px; }
    .hp-subscribe__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}
