/* ============================================================
   TKHCI Public Site — Custom Overrides
   Loaded last so these always win over the template.
   ============================================================ */

/* ── Self-hosted Fonts ── */
@font-face {
    font-family: 'DrukTextWide';
    src: url('/fonts/druk-trial-webfont/DrukTextWide-Medium-Trial.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DrukTextWide';
    src: url('/fonts/druk-trial-webfont/DrukTextWide-MediumItalic-Trial.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DrukTextWide';
    src: url('/fonts/druk-trial-webfont/DrukTextWide-Bold-Trial.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DrukTextWide';
    src: url('/fonts/druk-trial-webfont/DrukTextWide-BoldItalic-Trial.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DrukTextWide';
    src: url('/fonts/druk-trial-webfont/DrukTextWide-Heavy-Trial.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DrukTextWide';
    src: url('/fonts/druk-trial-webfont/DrukTextWide-Super-Trial.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Variables ── */
:root {
    --primary-color:   #0d1b3e;
    --accent-color:    #c9a84c;
    --secondary-color: #f5f0e8;
    --text-color:      #3a3a3a;
    --heading-font:    'DrukTextWide', sans-serif;
    --body-font:       'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── Global font overrides ── */
body {
    font-family: var(--body-font) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font) !important;
}

/* ── Buttons ── */
.btn-default {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #0d1b3e !important;
    position: relative;
}
/* Ensure text nodes without <span> render above template pseudo-elements */
.btn-default,
.btn-default span {
    position: relative;
    z-index: 2;
}
.btn-default:hover {
    background-color: #b8943e !important;
    border-color: #b8943e !important;
    color: #fff !important;
}
.btn-default:hover span { color: #fff !important; }
.btn-default.btn-highlighted {
    background-color: transparent !important;
    border: 2px solid #fff !important;
    color: #3b0909 !important;
}
.btn-default.btn-highlighted:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-default.btn-highlighted:hover span { color: #fff !important; }

/* ── Section headings ── */
.section-title h3,
.section-title > h3 { color: var(--accent-color) !important; }

/* ── Navbar — white background ── */
header.main-header,
header.main-header .header-sticky {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(13,27,62,0.08);
}

/* Nav links — dark text on white */
header.main-header .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}
header.main-header .nav-link:hover,
header.main-header .nav-item.active .nav-link {
    color: var(--accent-color) !important;
}

.nav-login-btn {
    background: var(--accent-color);
    color: #0d1b3e !important;
    padding: 8px 22px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}
.nav-login-btn:hover { background: #b8943e; color: #0d1b3e !important; }
.nav-watch-btn {
    border: 2px solid var(--accent-color);
    color: var(--accent-color) !important;
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.nav-watch-btn:hover { background: var(--accent-color); color: #0d1b3e !important; }

/* ── Tickers ── */
.our-scrolling-ticker,
.service-ticker { background-color: var(--accent-color); }
.scrolling-content span { color: #0d1b3e; font-weight: 600; }

/* ── Pastor message section ── */
.about-us.pastor-section {
    background: #efeeee !important;
}
@media (max-width: 991px) {
    .about-us.pastor-section .about-content .section-title h2 { font-size: 1.1rem !important; }
    .about-us.pastor-section .about-content .section-title p  { font-size: 0.95rem !important; line-height: 1.7 !important; }
    .about-us.pastor-section .about-content .section-title h3 { font-size: 0.9rem !important; }
}

/* ── Misc ── */
.readmore-btn:hover { background-color: var(--accent-color); }
.icon-box { background-color: var(--accent-color) !important; }
.service-item:hover { border-color: var(--accent-color); }
.main-footer { background-color: #0d1b3e; }

/* ── Page Hero ── */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.78) 55%, rgba(4,120,87,0.48) 100%);
    z-index: 1;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    padding: 90px 20px 70px;
}
.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 18px;
}
.page-hero-label::before,
.page-hero-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.55;
}
.page-hero-title {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: clamp(2.8rem, 7vw, 3.3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 26px;
    letter-spacing: -0.01em;
}
.page-hero-divider {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8d08a, #c9a84c);
    border-radius: 2px;
    margin: 0 auto 22px;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--accent-color); }
.page-hero-breadcrumb .sep {
    color: rgba(201,168,76,0.5);
    font-size: 0.55rem;
}

/* ── Placeholder for coming-soon pages ── */
.page-placeholder {
    padding: 100px 0;
    text-align: center;
    color: #888;
}
.page-placeholder h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #555;
}

/* ============================================================
   Homepage — Boxed Carousel Hero
   ============================================================ */

.homepage-hero {
    background: #fff;
    padding: 32px 0 48px;
}
.homepage-hero > .container:first-child {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 992px) {
    .homepage-hero > .container:first-child {
        padding-left: 120px;
        padding-right: 120px;
    }
    .homepage-hero {
        padding: 32px 0 48px;
    }
}

.hero-carousel-box {
    border-radius: 20px;
    overflow: hidden;
    height: 624px;
    box-shadow: 0 8px 40px rgba(13,27,62,0.14);
}
.hero-carousel-box .swiper,
.hero-carousel-box .swiper-wrapper,
.hero-carousel-box .swiper-slide {
    width: 100%;
    height: 100%;
}
.hero-carousel-box .swiper-slide {
    background-size: cover;
    background-position: center;
}
.hero-carousel-box .swiper-pagination { bottom: 20px; z-index: 3; }
.hero-carousel-box .swiper-pagination-bullet {
    background: #fff; opacity: 0.5; width: 10px; height: 10px;
}
.hero-carousel-box .swiper-pagination-bullet-active {
    background: var(--accent-color); opacity: 1;
}

.homepage-intro {
    padding-top: 40px;
    text-align: center;
}
.homepage-intro .section-title h1,
.homepage-intro .text-anime-style-2 {
    color: var(--primary-color) !important;
}
.homepage-intro-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-default.btn-highlighted-navy {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}
.btn-default.btn-highlighted-navy:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-default.btn-highlighted-navy span { color: inherit !important; }

@media (max-width: 991px) {
    .hero-carousel-box { height: 300px; border-radius: 14px; box-shadow: 0 4px 20px rgba(13,27,62,0.12); }
    .homepage-intro { padding-top: 28px; }
    .homepage-hero { padding: 20px 16px 36px; }
    .homepage-intro-btns { flex-wrap: nowrap; justify-content: center; }
    .homepage-intro-btns .btn-default { flex: 1; text-align: center; font-size: 0.82rem; padding: 10px 8px; }
}

/* ============================================================
   Our Branches Page
   ============================================================ */

.branches-section {
    padding: 40px 0 60px;
}
.branches-section + .branches-section {
    padding-top: 0;
}

.branch-section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.branch-section-label::before,
.branch-section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}
.branch-section-heading {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
}
.branch-section-heading span { color: var(--accent-color); }

.branch-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    border-left: 4px solid var(--accent-color);
    padding: 28px 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.branch-card:hover {
    box-shadow: 0 12px 40px rgba(13,27,62,0.10);
    transform: translateY(-3px);
}

.branch-type-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.badge-hq {
    background: rgba(201,168,76,0.12);
    color: #8a6d20;
    border: 1px solid rgba(201,168,76,0.4);
}
.badge-branch {
    background: rgba(13,27,62,0.06);
    color: var(--primary-color);
    border: 1px solid rgba(13,27,62,0.15);
}
.badge-international {
    background: rgba(5,150,105,0.08);
    color: #047857;
    border: 1px solid rgba(5,150,105,0.25);
}

.branch-card-name {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 16px;
}
.branch-card-divider {
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 18px;
    opacity: 0.6;
}

.branch-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.branch-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
}
.branch-info-list li .bi {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.branch-services-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 6px;
}
.branch-service-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(13,27,62,0.05);
    border-radius: 20px;
    padding: 3px 10px;
    margin: 2px 3px 2px 0;
}
.branch-service-time .bi {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.branch-established {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 14px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--primary-color);
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    align-self: flex-start;
}
.btn-directions:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}
.btn-directions .bi { font-size: 0.9rem; }

.branches-section.international {
    background: #f7f5f0;
    padding: 60px 0;
}

.branches-count-strip {
    background: var(--primary-color);
    padding: 32px 0;
    text-align: center;
}
.branches-count-strip .count-item { color: #fff; }
.branches-count-strip .count-number {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    display: block;
}
.branches-count-strip .count-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    display: block;
}
.branches-count-strip .divider-v {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    margin: auto;
}

/* ============================================================
   About Us Page
   ============================================================ */

/* ── Section label / heading shared pattern ── */
.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.about-section-label::before,
.about-section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}
.about-section-heading {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.about-section-heading span { color: var(--accent-color); }

/* ── Mission & Vision ── */
.about-mv-section {
    padding: 80px 0 60px;
}
.mv-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    border-top: 4px solid var(--accent-color);
    padding: 40px 36px;
    height: 100%;
    text-align: center;
}
.mv-card-alt {
    background: var(--primary-color);
    border-top-color: var(--accent-color);
}
.mv-card-alt .mv-title,
.mv-card-alt .mv-text { color: #fff; }
.mv-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 18px;
}
.mv-title {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.mv-divider {
    width: 48px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    margin: 0 auto 20px;
}
.mv-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0;
}

/* ── Core Beliefs ── */
.about-beliefs-section {
    padding: 70px 0;
    background: #efefef;
}
.belief-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}
.belief-card:hover {
    box-shadow: 0 10px 32px rgba(13,27,62,0.09);
    transform: translateY(-3px);
}
.belief-number {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    margin-bottom: 12px;
}
.belief-title {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.belief-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

/* ── History ── */
.about-history-section {
    padding: 80px 0;
}
.history-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
}
.history-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.history-text p {
    /* font-size: 0.975rem; */
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}
.history-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}
.history-stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-top: 4px;
}
.history-stat-divider {
    width: 1px;
    height: 36px;
    background: #e0e0e0;
}

/* ── Leadership ── */
.about-leadership-section {
    padding: 70px 0 80px;
    background: #f7f5f0;
}
.leader-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}
.leader-card:hover {
    box-shadow: 0 12px 40px rgba(13,27,62,0.10);
    transform: translateY(-3px);
}
.leader-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.leader-photo-placeholder {
    background: rgba(13,27,62,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(13,27,62,0.2);
}
.leader-info {
    padding: 22px 20px 24px;
    border-top: 3px solid var(--accent-color);
}
.leader-name {
    /* font-family: 'Fira Sans Condensed', sans-serif; */
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.leader-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-color);
}

/* ── Departments ── */
.about-departments-section {
    padding: 80px 0;
    background: #fff;
}

/* ============================================================
   sp-card — shared image cards (Services & Programs, About)
   ============================================================ */

.sp-section { padding: 30px 0; }
.sp-section-alt { background: #f8f9fb; }

.sp-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 8px;
}
.sp-section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    line-height: 1.2;
}
.sp-section-lead {
    color: #64748b;
    font-size: 1.25rem;
    max-width: 560px;
}
.sp-divider {
    width: 48px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    margin: 20px 0 48px;
}

.sp-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 320px;
    cursor: default;
    box-shadow: 0 4px 20px rgba(13,27,62,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13,27,62,0.18);
}
.sp-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sp-card:hover .sp-card-img { transform: scale(1.05); }

.sp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.45) 55%, rgba(13,27,62,0.15) 100%);
}
.sp-card-program .sp-card-overlay {
    background: linear-gradient(to top, rgba(100,65,10,0.93) 0%, rgba(13,27,62,0.55) 55%, rgba(13,27,62,0.15) 100%);
}

.sp-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 22px;
}
.sp-card-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    background: rgba(201,168,76,0.22);
    color: var(--accent-color);
    border: 1px solid rgba(201,168,76,0.4);
}
.sp-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 8px;
}
.sp-card-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   Podcast Page
   ============================================================ */

/* ── Platform badges ── */
.podcast-platforms-section {
    padding: 20px 0 20px;
    background: #fafafa;
    border-bottom: 1px solid #efefef;
}
.podcast-platforms-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
}
.podcast-platforms-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.platform-badge .bi { font-size: 1.1rem; }
.platform-podbean {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}
.platform-apple {
    background: #1c1c1e;
    color: #fff;
    border-color: #1c1c1e;
}
.platform-youtube {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

/* ── Episode list ── */
.podcast-episodes-section {
    padding: 10px 0 80px;
}
.episode-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}
.episode-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    transition: background 0.15s;
}
.episode-item:last-child { border-bottom: none; }
.episode-item:hover,
.episode-item.is-playing { background: #f9f7f2; }
.episode-item.is-playing { border-left: 3px solid var(--accent-color); }
.episode-number {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(201,168,76,0.35);
    min-width: 30px;
    flex-shrink: 0;
}
.episode-body { flex: 1; min-width: 0; }
.episode-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.episode-item.is-playing .episode-title { color: #8a6d20; }
.episode-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: #999;
}
.episode-meta .bi { color: var(--accent-color); margin-right: 3px; }
.episode-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.episode-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.episode-play-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.08);
}
.episode-item.is-playing .episode-play-btn {
    background: var(--accent-color);
    color: var(--primary-color);
}
.episode-download-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.episode-download-btn:hover { border-color: var(--accent-color); color: var(--accent-color); }

/* ── Empty state ── */
.podcast-empty {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}
.podcast-empty .bi { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.podcast-empty a { color: var(--accent-color); }

/* ── Search ── */
.podcast-search-form { max-width: 520px; margin-left: auto; margin-right: auto; }
.podcast-search-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.podcast-search-wrap:focus-within { border-color: var(--primary-color); }
.podcast-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 0.95rem;
    background: transparent;
    color: #1f2937;
}
.podcast-search-btn {
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}
.podcast-search-btn:hover { color: var(--accent-color); }
.podcast-search-clear {
    padding: 10px 12px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}
.podcast-search-clear:hover { color: #ef4444; }
.podcast-search-meta {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

/* ── Sticky bottom player ── */
.podcast-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 14px 0;
    z-index: 1050;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.player-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.player-icon { color: var(--accent-color); font-size: 1.2rem; flex-shrink: 0; }
.player-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#audioPlayer {
    flex: 2;
    min-width: 0;
    height: 36px;
    accent-color: var(--accent-color);
}
.player-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: color 0.2s;
}
.player-close:hover { color: #fff; }

/* ── YouTube CTA ── */
.podcast-youtube-section {
    padding: 0 0 80px;
    background: #fafafa;
}
.youtube-cta-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--primary-color);
    border-radius: 14px;
    padding: 36px 40px;
    flex-wrap: wrap;
}
.youtube-cta-icon {
    font-size: 3rem;
    color: #ff0000;
    flex-shrink: 0;
}
.youtube-cta-content { flex: 1; min-width: 200px; }
.youtube-cta-content h3 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.youtube-cta-content p {
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .episode-item { padding: 14px 16px; gap: 12px; }
    .episode-number { display: none; }
    .player-inner { gap: 12px; }
    #audioPlayer { flex: 1; }
    .player-title { display: none; }
    .youtube-cta-card { padding: 28px 24px; }
}

/* ── Podcast pagination ── */
.podcast-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}
.pagination-info {
    font-size: 0.82rem;
    color: #999;
}
.pagination-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: #fff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.page-btn:hover { background: var(--accent-color); border-color: var(--accent-color); color: var(--primary-color); }
.page-btn-active { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.page-btn-active:hover { background: var(--primary-color); color: #fff; }
.page-btn-disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* ============================================================
   Podcast Episode Detail Page
   ============================================================ */

.episode-detail-section {
    padding: 30px 0 80px;
}
.episode-detail-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 34px 38px;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(13,27,62,0.07);
}
.episode-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 32px;
}
.episode-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-color);
    flex-shrink: 0;
}
.episode-detail-title {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.45rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}
.episode-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: #888;
}
.episode-detail-meta .bi {
    color: var(--accent-color);
    margin-right: 4px;
}
.episode-detail-player {
    width: 100%;
    height: 48px;
    accent-color: var(--accent-color);
    margin-bottom: 28px;
    border-radius: 8px;
}
.episode-detail-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.episode-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.episode-action-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}
.share-copied {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s;
}
.share-copied.visible { opacity: 1; }

.episode-back-link {
    text-align: center;
    margin-top: 32px;
}
.episode-back-link a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.episode-back-link a:hover { color: var(--primary-color); }

/* Episode title link in list */
.episode-title a {
    color: inherit;
    text-decoration: none;
}
.episode-title a:hover { color: var(--accent-color); }

@media (max-width: 576px) {
    .episode-detail-card { padding: 28px 20px; }
    .episode-detail-header { flex-direction: column; gap: 14px; }
}

/* ── Episode 3-dot menu ── */
.episode-menu {
    position: relative;
}
.episode-menu-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.episode-menu-btn:hover,
.episode-menu.open .episode-menu-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}
.episode-menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(13,27,62,0.12);
    min-width: 150px;
    z-index: 100;
    overflow: hidden;
}
.episode-menu.open .episode-menu-dropdown {
    display: block;
}
.episode-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.15s;
}
.episode-menu-item:hover {
    background: rgba(201,168,76,0.08);
    color: var(--primary-color);
}
.episode-menu-item .bi {
    color: var(--accent-color);
    font-size: 0.95rem;
}

/* ============================================================
   Keeper's Music Page
   ============================================================ */

.music-about-section {
    padding: 30px 0 35px;
}
.music-about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 28px;
}

/* Activities grid */
.music-activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.music-activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.music-activity-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(201,168,76,0.12);
}
.music-activity-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Videos section */
.music-videos-section {
    padding: 20px 0 40px;
    background: #fafafa;
}

/* YouTube CTA card (shown when no channel ID) */
.music-youtube-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--primary-color);
    border-radius: 14px;
    padding: 36px 40px;
    flex-wrap: wrap;
    max-width: 760px;
    margin: 0 auto;
}
.music-yt-icon {
    font-size: 3rem;
    color: #ff0000;
    flex-shrink: 0;
}
.music-yt-content { flex: 1; min-width: 200px; }
.music-yt-content h3 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.music-yt-content p { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.9rem; }

/* Video card */
.music-video-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s;
}
.music-video-card:hover {
    box-shadow: 0 12px 40px rgba(13,27,62,0.12);
    transform: translateY(-3px);
}
.music-video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}
.music-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.music-video-card:hover .music-video-thumb img { transform: scale(1.04); }
.music-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,62,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}
.music-video-card:hover .music-video-overlay { opacity: 1; }
.music-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
}
.music-video-info { padding: 16px 18px; }
.music-video-title {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.music-video-date { font-size: 0.78rem; color: #aaa; }

/* Lightbox */
.music-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.music-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}
.music-lightbox-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
}
.music-lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.music-lightbox-close:hover { opacity: 1; }
.music-lightbox-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.8;
    padding-right: 40px;
}
.music-lightbox-video {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}
.music-lightbox-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .music-activities-grid { grid-template-columns: 1fr; }
    .music-youtube-cta { padding: 24px 20px; }
}

/* ── Recent episodes sidebar ── */
.recent-episodes-panel {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 24px;
}
.recent-episodes-heading {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary-color);
    padding: 16px 20px;
    margin: 0;
    letter-spacing: 0.03em;
}
.recent-episodes-list {
    display: flex;
    flex-direction: column;
}
.recent-episode-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.15s;
}
.recent-episode-item:last-child { border-bottom: none; }
.recent-episode-item:hover { background: #f9f7f2; }
.recent-episode-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background 0.15s;
}
.recent-episode-item:hover .recent-episode-icon {
    background: var(--accent-color);
    color: var(--primary-color);
}
.recent-episode-body { min-width: 0; }
.recent-episode-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.recent-episode-date {
    font-size: 0.75rem;
    color: #aaa;
}
.recent-episodes-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    transition: background 0.15s;
}
.recent-episodes-all:hover { background: #f0ede5; color: var(--primary-color); }

/* ============================================================
   Giving Page
   ============================================================ */

/* ── Scripture intro ── */
.giving-intro-section {
    padding: 60px 0 20px;
    background: #fafaf8;
}
.giving-intro-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.giving-scripture {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.65;
    margin: 0 0 10px;
}
.giving-scripture-ref {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}
.giving-intro-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Giving options grid ── */
.giving-section {
    padding: 20px 0 80px;
}
.giving-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 991px) {
    .giving-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .giving-grid { grid-template-columns: 1fr; }
}

/* ── Individual card ── */
.giving-card {
    background: #fff;
    border: 1px solid #e8e4d9;
    border-radius: 12px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.giving-card:hover {
    box-shadow: 0 8px 32px rgba(13,27,62,0.10);
    transform: translateY(-3px);
}

/* Logo area */
.giving-card-logo {
    height: 56px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.giving-card-logo img {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

.giving-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px;
}
.giving-card-subtitle {
    font-size: 0.82rem;
    color: #888;
    margin: 0 0 20px;
}

/* Account rows */
.giving-account-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.giving-account-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f6f0;
    border-radius: 8px;
    padding: 10px 14px;
    gap: 8px;
}
.giving-account-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.giving-account-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.giving-account-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    word-break: break-all;
}
.giving-account-name-row {
    font-size: 0.82rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 2px 0;
}
.giving-account-name-row .bi { color: var(--accent-color); }

/* Copy button */
.giving-copy-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    font-size: 0.85rem;
}
.giving-copy-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #f0f0f0;
}
.giving-copy-btn.copied {
    color: #16a34a;
    border-color: #16a34a;
    background: #f0fdf4;
}

.giving-card-note {
    font-size: 0.78rem;
    color: #999;
    margin: 14px 0 0;
    line-height: 1.5;
    border-top: 1px dashed #eee;
    padding-top: 12px;
}

/* ── Contact prompt ── */
.giving-contact-section {
    background: var(--primary-color);
    padding: 50px 0;
}
.giving-contact-card {
    text-align: center;
    color: #fff;
}
.giving-contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 14px;
}
.giving-contact-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.giving-contact-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.giving-contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}
.giving-contact-card a:hover { text-decoration: underline; }

/* ============================================================
   Footer — Contact icon boxes
   ============================================================ */
.footer-info-box .icon-box {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.footer-info-box .icon-box img {
    filter: brightness(0) invert(1);
}

/* ============================================================
   About Page — Pillars of Culture
   ============================================================ */
.about-beliefs-section {
    background: #f0f4f8;
    padding-top: 70px;
    padding-bottom: 70px;
}
.pillars-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.pillar-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 50px;
    border: 2px solid #cdd5e0;
    background: #fff;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pillar-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.pillar-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.pillar-tab-letter {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}
.pillars-content { min-height: 180px; }
.pillar-panel {
    display: none;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 48px;
    background: #fff;
    border-radius: 20px;
    border-left: 6px solid var(--accent-color);
    box-shadow: 0 4px 24px rgba(13,27,62,0.07);
    animation: pillarFade 0.25s ease;
}
.pillar-panel.active { display: flex; }
.pillar-panel-letter {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.85;
}
.pillar-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.pillar-panel p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #374151;
    margin: 0;
}
@keyframes pillarFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 576px) {
    .pillar-panel { flex-direction: column; gap: 12px; padding: 28px 24px; }
    .pillar-panel-letter { font-size: 2.8rem; }
}
