/*
 Theme Name:   Astra Child
 Theme URI:    https://wpastra.com/
 Description:  A child theme for Astra to handle custom post type templates and styles.
 Author:       Antigravity
 Author URI:   https://example.com
 Template:     astra
 Version:      1.0.0
 Text Domain:  astra-child
*/

/* Force Podcast Archive Container Width */
body.post-type-archive-podcast .site-content .ast-container,
body.post-type-archive-podcast .ast-container {
    max-width: 1200px !important;
    width: 100% !important;
}

/* Override Astra's built-in 33% width grid conflict */
body.post-type-archive-podcast article.ast-article-post,
body.post-type-archive-podcast .ast-row .ast-article-post {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

.podcast-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 100px 60px !important;
    margin-top: 40px !important;
    margin-bottom: 80px !important;
    width: 100% !important;
}

.podcast-card {
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.podcast-intro {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 50px !important;
    font-size: 1.25rem !important;
    line-height: 1.7 !important;
    color: var(--ast-global-color-3) !important;
}

.podcast-image-wrapper {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 100% !important;
    /* Perfect Square */
    overflow: hidden !important;
    margin-bottom: 25px !important;
    border-radius: 8px !important;
}

.podcast-image-link {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.podcast-image-link img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.podcast-play-button {
    position: absolute !important;
    bottom: 15px !important;
    right: 15px !important;
    left: auto !important;
    top: auto !important;
    background: #00BFD1 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(0, 191, 209, 0.4) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10 !important;
    transform: none !important;
}

.podcast-image-link:hover .podcast-play-button {
    transform: scale(1.1) !important;
}

.podcast-play-button svg {
    width: 24px !important;
    height: 24px !important;
    margin-left: 3px !important;
}

.podcast-content {
    padding: 0 !important;
}

.podcast-title {
    font-family: inherit !important;
    font-weight: 400 !important;
    font-size: 1.35rem !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.4 !important;
    color: #333 !important;
}

.podcast-title a {
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.podcast-title a:hover {
    color: #00BFD1 !important;
}


@media (max-width: 1200px) {
    .podcast-grid {
        gap: 60px 30px !important;
    }
}

@media (max-width: 1024px) {
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 60px 40px !important;
    }
}

/* Podcast Hero Section */
.podcast-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0 120px;
    gap: 80px;
    border-bottom: 1px solid #eee;
    margin-bottom: 80px;
    margin-top: 80px;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.hero-content .hero-intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.hero-content .hero-intro-text strong {
    display: block;
    font-size: 4rem;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 25px;
    font-family: inherit;
    font-weight: 800;
}

.listen-now-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.hero-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-social-icons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f5f5f5;
}

.hero-social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-social-icons .icon-spotify:hover {
    background: #1DB954;
}

.hero-social-icons .icon-apple:hover {
    background: #000;
}

.hero-social-icons .icon-google:hover {
    background: #4285F4;
}

.hero-social-icons .icon-youtube:hover {
    background: #FF0000;
}

.hero-social-icons svg {
    width: 24px;
    height: 24px;
    fill: #555;
    transition: fill 0.3s ease;
}

.hero-social-icons a:hover svg {
    fill: #fff;
}

/* Phone Mockup */
.hero-image-mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 45px;
    padding: 10px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 6px solid #1a1a1a;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dynamic Island / Notch */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

@media (max-width: 1024px) {
    .podcast-hero {
        flex-direction: column-reverse;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-social-icons {
        justify-content: center;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }
}

/* --- Custom Minimalist Header Structure --- */
#masthead.custom-header {
    position: absolute;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    padding: 50px 0;
    transition: all 0.4s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Force Astra's internal bars to be transparent */
.custom-header .main-header-bar,
.custom-header .ast-container,
.custom-header .main-header-bar-wrap {
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}



/* --- Elena Rossi Branding Colors --- */
:root {
    --brand-teal: #008080;
    --brand-cyan: #00acc1;
    --brand-dark: #1a1a1a;
    --brand-light: #f8fafc;
    --brand-accent: #ff8ab4;
    /* Pink script color */
}

/* Utilities for modular builder */
.grid {
    display: grid;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gap-16 {
    gap: 64px;
}

.gap-12 {
    gap: 48px;
}

.gap-8 {
    gap: 32px;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.py-24 {
    padding: 96px 0;
}

.py-16 {
    padding: 64px 0;
}

.bg-brand-light {
    background-color: var(--brand-light);
}

.text-brand-dark {
    color: var(--brand-dark);
}

.font-serif {
    font-family: 'Playfair Display', serif !important;
}

.font-semibold {
    font-weight: 600;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.mb-16 {
    margin-bottom: 64px;
}

.mb-12 {
    margin-bottom: 48px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 16px;
}

.rounded-lg {
    border-radius: 8px;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.opacity-50 {
    opacity: 0.5;
}

.grayscale {
    filter: grayscale(100%);
}

.transition-all {
    transition: all 0.3s ease;
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bg-white {
    background-color: #ffffff;
}

.border-y {
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

/* Header logic simplified for non-fixed state */
/* Removed scroll logic */

.header-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    /* Essential: allows logo to be absolutely centered */
}

.header-nav {
    flex: 1;
    /* Equal width ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â essential for centering */
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: flex-end;
    padding-right: 200px;
    /* Clear zone: keeps menus out of the logo area */
}

.header-right {
    justify-content: flex-start;
    padding-left: 200px;
    /* Symmetrical */
}

.header-logo-container {
    position: absolute;
    /* KEY FIX: Absolutely center the logo */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    transition: all 0.4s ease;
    pointer-events: auto;
    white-space: nowrap;
}

#masthead.scrolled .header-logo-container {
    flex-basis: 240px;
}

/* Ensure script heading font loads even if theme overrides */
.script-heading,
[class*="script-heading"] {
    font-family: 'Mrs Saint Delafield', cursive !important;
}

.site-logo-link {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

.logo-text-top {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(8px, 1.5vw, 12px) !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6em !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
    transition: all 0.4s ease;
    display: block;
}

.logo-text-bottom {
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(16px, 3vw, 24px) !important;
    font-weight: 600 !important;
    /* Bolder for impact */
    text-transform: uppercase !important;
    letter-spacing: 0.35em !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    transition: all 0.4s ease;
    display: block;
}

#masthead.scrolled .logo-text-top {
    font-size: clamp(7px, 1.2vw, 10px) !important;
    margin-bottom: 4px !important;
    opacity: 0.8;
}

#masthead.scrolled .logo-text-bottom {
    font-size: clamp(14px, 2.5vw, 18px) !important;
}

/* Menu Typography & Style */
.header-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 45px !important;
}

.header-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.header-menu li a {
    text-decoration: none !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: bold;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    position: relative;
    padding: 10px 0;
}

.header-menu li a:hover,
.header-menu li.current-menu-item>a {

    opacity: 1 !important;
}

/* Podcast Archive Header Override (High Specificity) */
body.post-type-archive-podcast #masthead .header-logo-container,
body.post-type-archive-podcast #masthead .logo-text-top,
body.post-type-archive-podcast #masthead .logo-text-bottom,
body.post-type-archive-podcast #masthead .header-menu li a {
    color: #000000 !important;
}

body.post-type-archive-podcast #masthead .mobile-menu-toggle .hamburger-line {
    background-color: #000000 !important;
}

/* @import for Google Fonts as fallback backup */
@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap');

/* Header styling maintained above at line 308 */

/* --- Elena Rossi Inspired Hero --- */
.hero-rossi-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background: #ffffff;
}

.hero-rossi-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Top gradient overlay to ensure menu text is readable over the image */
/* .hero-rossi-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 40%,
            rgba(255, 255, 255, 0.5) 70%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-white-section::after,
.press-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 40%,
            rgba(255, 255, 255, 0.5) 70%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
} */

.hero-rossi-content {
    position: relative;
    z-index: 10;
    width: 100%;

    /* Aligns exactly with header-container */
    margin: 0 auto;
    padding: 499px 40px 100px;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
    /* Same horizontal padding as header */
}

.hero-rossi-inner {
    width: 100%;
    max-width: 550px;
    text-align: right;
}

.script-heading {
    font-family: 'Mrs Saint Delafield', cursive !important;
    color: #00BFD1 !important;
    font-size: 5.5rem !important;
    line-height: 0.8 !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.hero-rossi-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(3rem, 5vw, 4.2rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6) !important;
    margin: 5px 0 25px 0 !important;
    line-height: 1.1 !important;
}

.hero-rossi-desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 300 !important;
    color: #f8fafc !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
    line-height: 1.7 !important;
    margin-bottom: 40px !important;
    max-width: 450px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-rossi-cta {
    margin-top: 15px;
}

.header-cta-button {
    display: inline-block !important;
    padding: 16px 45px !important;
    background-color: var(--brand-cyan) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 172, 193, 0.4) !important;
}

.header-cta-button:hover {
    background-color: #ffffff !important;
    color: var(--brand-cyan) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 768px) {
    .hero-rossi-section {
        align-items: center !important;
    }

    .hero-rossi-content {
        padding: 120px 20px 60px !important;
        justify-content: center !important;
    }

    .hero-rossi-inner {
        text-align: center !important;
        max-width: 100% !important;
    }

    .hero-rossi-title {
        font-size: clamp(2.2rem, 8vw, 2.8rem) !important;
    }

    .hero-rossi-desc {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Logos Section */
.home-logos {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.section-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 30px;
    font-weight: 700;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0.6;
}

.logo-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
}

/* Intro Section */
.home-intro-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fcfcfc;
}

/* --------------------------------------------------------------------------
 * Slider Cards Design System
 * -------------------------------------------------------------------------- */

/* Universal Card Base */
.podcast-appearance-card,
.tv-card,
.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    border: 1px solid #f0f0f0;
}

.podcast-appearance-card:hover,
.tv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Images & Thumbnails */
.podcast-thumb-wrapper,
.tv-card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #f8f9fa;
}

.podcast-thumb-wrapper img,
.tv-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.podcast-appearance-card:hover .podcast-thumb-wrapper img,
.tv-card:hover .tv-card-image img {
    transform: scale(1.05);
}

/* Shared Content Padding */
.podcast-card-content,
.tv-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Card Typography */
.podcast-card-title,
.tv-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.podcast-card-speaker,
.tv-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00bcd4;
    /* Brand cyan highlight */
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tv-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Call To Action specific to podcast */
.podcast-card-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-top: auto;
}

.listen-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #111827;
    transition: color 0.2s ease;
}

.podcast-appearance-card:hover .listen-link {
    color: #00bcd4;
}

.listen-link svg {
    transition: transform 0.2s ease;
}

.podcast-appearance-card:hover .listen-link svg {
    transform: translateX(4px);
}

/* Testimonial Specifics */
.testimonial-card {
    padding: 2.5rem;
    text-align: center;
    justify-content: center;
    border-top: 4px solid #00bcd4;
}

.testimonial-quote-icon {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.testimonial-quote-icon svg {
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.testimonial-content {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* TV Play Icon Overlay */
.tv-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.tv-card:hover .tv-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: #00bcd4;
}

.tv-play-icon svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    width: 100%;
    gap: 120px;
    /* Increased gap for cleaner breathing room */
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
    width: 100%;
}

.portrait-photo {
    width: 100%;
    height: auto;
    /* border-radius: 12px; */
    /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12); */
    /* Enhanced premium shadow */
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    /* Subtle frame */
    transition: transform 0.4s ease;
    object-fit: cover;
}

.portrait-photo:hover {
    transform: translateY(-5px);
}

.bio-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.25rem !important;
    /* Increased font size as requested */
    color: #444 !important;
    line-height: 1.7 !important;
}

.bio-text p {
    margin-bottom: 25px !important;
}

.bio-text p:first-of-type {
    font-size: 1.45rem !important;
    /* Lead paragraph */
    color: #1a1a1a !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
}

.intro-cta {
    margin-top: 40px !important;
}

.bio-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 40px;
}

.intro-cta {
    margin-top: 15px;
}

/* Podcasts Grid Section */
.home-podcasts {
    padding: 100px 0;
    background: #fff;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.podcast-item {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.podcast-item:hover {
    transform: translateY(-10px);
}

.podcast-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.episode-ref {
    display: block;
    color: #00BFD1;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.podcast-title {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .podcasts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Spacing for content below absolute header */
#page,
.site-content,
#primary,
.entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Push front-page content down so it's not hidden under the absolute header */
.home .elementor-section:first-of-type {
    padding-top: 180px !important;
    margin-top: 0 !important;
    /* Force background to start at top */
}

@media (max-width: 768px) {
    .home .elementor-section:first-of-type {
        padding-top: 140px !important;
    }
}

/* Ensure Home Template doesn't have theme-inherited spacing */
.page-template-template-home .site-content {
    padding-top: 0 !important;
}

.page-template-template-home .ast-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Optional: Add smooth scroll for the whole page */
html {
    scroll-behavior: smooth;
}

/* --- Mobile Navigation Enhancements --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

/* Fix: Toggle visibility during offcanvas menu */
body.no-scroll .mobile-menu-toggle {
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-toggle .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* WordPress Admin Bar Compatibility */
.admin-bar #masthead.custom-header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar #masthead.custom-header {
        top: 46px !important;
    }
}

/* Ensure white text in initial dark mode state */
.dark-mode-header:not(.scrolled) .logo-text-top,
.dark-mode-header:not(.scrolled) .logo-text-bottom,
.dark-mode-header:not(.scrolled) .header-menu li a,
.dark-mode-header:not(.scrolled) .header-cta-button {
    color: #fff !important;
    border-color: #fff !important;
}

.dark-mode-header:not(.scrolled) .header-menu li a::after {
    background: #fff;
}

.dark-mode-header:not(.scrolled) .mobile-menu-toggle .hamburger-line {
    background-color: #fff !important;
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.mobile-offcanvas.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 32px;
    background: transparent;
    border: none;
    font-size: 40px;
    font-weight: 200;
    cursor: pointer;
    color: #000;
}

.offcanvas-content {
    width: 100%;
    text-align: center;
}

.mobile-nav-combined .mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-combined .mobile-list li {
    margin: 30px 0;
}

.mobile-nav-combined .mobile-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.mobile-nav-combined .mobile-list li a:hover {
    opacity: 0.5;
}

/* --- Logo Cloud Overlay Section --- */
.logo-cloud-overlay-section {
    position: relative;
    z-index: 99;
    background: rgba(255, 255, 255, 0.85);
    /* Changed to light theme overlay for clean look */
    margin-top: -120px;
    /* Pulls it up exactly over the bottom of the hero */
    padding: 43px 0;
    backdrop-filter: blur(5px);
    width: 100%;
}

.logo-cloud-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-cloud-label {
    color: #00BFD1 !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    margin-right: 40px;
}

.logo-cloud-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.logo-image-white {
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-image-white:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .logo-cloud-overlay-section {
        margin-top: 0;
        /* Don't overlay on mobile when everything stacks */
        padding: 40px 20px;
    }

    .logo-cloud-inner {
        flex-direction: column;
        gap: 20px;
    }

    .logo-cloud-label {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .logo-cloud-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .logo-image-white {
        height: 25px;
    }
}


/* Prevent scroll when menu is open */
body.no-scroll {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 32px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-container {
        justify-content: center;
        /* Center logo on mobile */
        height: 100px;
        position: relative;
    }

    .header-logo-container {
        position: relative;
        left: auto;
        transform: none;
    }

    #masthead.custom-header {
        position: absolute;
        top: 0;
        background: transparent;
        padding: 0;
    }
}

/* --- Press Archive Hero Section (Centered Full-Width Breakout) --- */
.press-hero-centered {
    position: relative;
    background: #1a1a1a;
    padding: 80px 20px 80px;
    /* Reduced top padding to touch the 80px header */
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Breakout Logic for Full Width */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;

    color: #ffffff;
    overflow: hidden;
}


.press-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
    /* Cleaned duplicate backgrounds */
    z-index: 1;
}

.press-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.press-archive-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 5rem !important;
    /* Slightly smaller for half-height */
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    letter-spacing: -1px !important;
    margin-bottom: 25px !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.press-archive-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.3rem !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    max-width: 750px !important;
    margin: 0 auto !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .press-hero-centered {
        padding-top: 70px;
        min-height: 400px;
    }

    .press-archive-title {
        font-size: 3rem !important;
    }

    .press-archive-subtitle {
        font-size: 1.1rem !important;
    }
}






.page-template-template-press .mobile-menu-toggle span,
.page-template-template-television .mobile-menu-toggle span,
.page-template-template-lectures .mobile-menu-toggle span,
.dark-mode-header .mobile-menu-toggle span {
    background-color: #ffffff !important;
}


/* Ensure header logo text is white */
.page-template-template-press .logo-text-top,
.page-template-template-press .logo-text-bottom {
    color: #ffffff !important;
}


/* Moved press-hero-overlay background gradient to base class */


/* --- Press Archive Item Styles --- */
.press-list-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Professional Press Grid & Cards --- */
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.press-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.press-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    transform: translateY(-10px);
    border-color: #00BFD1;
}

.press-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.press-outlet {
    color: #00BFD1;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.press-date {
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-card .press-title {
    margin: 0 0 20px 0 !important;
}

.press-card .press-title a {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.85rem !important;
    color: #111 !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease;
}

.press-card:hover .press-title a {
    color: #00BFD1 !important;
}

.press-desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #666 !important;
    margin-bottom: 40px !important;
}

.press-link {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #111 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.press-link .arrow {
    font-size: 1.2rem;
    line-height: 1;
    color: #00BFD1;
    transition: transform 0.3s ease;
}

.press-link:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .press-card {
        padding: 40px 30px;
    }

    .press-card .press-title a {
        font-size: 1.5rem !important;
    }
}

/* --- Minimalist & Elegant Podcast Slider Widget Styles --- */
.podcast-slider-wrapper {
    padding: 0 50px;
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.podcast-slider-wrapper .podcast-swiper {
    padding-bottom: 50px !important;
}

.podcast-slider-wrapper .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.podcast-slider-wrapper .swiper-slide {
    height: auto !important;
    display: flex !important;
}

.podcast-appearance-card,
.press-appearance-card {
    width: 100%;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-decoration: none !important;
}

.podcast-appearance-card:hover,
.press-appearance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #00BFD1;
}

.podcast-thumb-wrapper,
.press-thumb-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1f5f9;
}

.podcast-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.podcast-appearance-card:hover .podcast-thumb-wrapper img,
.press-appearance-card:hover .press-thumb-wrapper img {
    transform: scale(1.05);
}

.press-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}

.podcast-card-content,
.press-card-content {
    padding: 25px 25px 15px;
    flex-grow: 1;
}

.podcast-card-speaker,
.press-card-outlet {
    font-family: 'Inter', sans-serif !important;
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px !important;
}

.podcast-card-title,
.press-card-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    margin: 0 !important;
}

.podcast-card-footer,
.press-card-footer {
    padding: 0 25px 25px;
}

.listen-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #64748b !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.listen-link svg {
    margin-left: 6px;
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.podcast-appearance-card:hover .listen-link,
.press-appearance-card:hover .listen-link {
    color: #00BFD1 !important;
}

.podcast-appearance-card:hover .listen-link svg {
    transform: translateX(4px);
}

/* Fixed Navigation Controls */
.podcast-slider-wrapper .swiper-button-next,
.podcast-slider-wrapper .swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    color: #1e293b !important;
    border: 1px solid #f1f5f9 !important;
    z-index: 10;
}

.podcast-slider-wrapper .swiper-button-next:after,
.podcast-slider-wrapper .swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: 700 !important;
}

.podcast-slider-wrapper .swiper-button-next:hover,
.podcast-slider-wrapper .swiper-button-prev:hover {
    color: #00BFD1 !important;
    border-color: #00BFD1 !important;
}

.podcast-slider-wrapper .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: #e2e8f0 !important;
    opacity: 1 !important;
    margin: 0 6px !important;
}

.podcast-slider-wrapper .swiper-pagination-bullet-active {
    background: #00BFD1 !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* More Button Link */
.podcast-slider-more-wrap {
    text-align: center;
    margin-top: 40px;
}

/* .podcast-slider-wrapper merged above */

.podcast-more-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: #1e293b;
    color: #ffffff !important;
    border-radius: 50px;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.15);
}

.podcast-more-link:hover {
    background: #00BFD1;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 191, 209, 0.25);
}

.podcast-more-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.podcast-more-link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .podcast-slider-wrapper {
        padding: 40px 15px;
    }

    .podcast-card-title {
        font-size: 1rem !important;
    }
}

/* --- Premium Television Grid Styles --- */
.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.tv-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: #00BFD1;
}

.tv-card-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.tv-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.tv-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tv-card:hover .tv-card-image img {
    transform: scale(1.08);
}

.tv-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.tv-placeholder span {
    font-size: 3rem;
    color: #e2e8f0;
}

.tv-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(0, 191, 209, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding-left: 4px;
    /* Optical adjustment for triangle */
}

.tv-card:hover .tv-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.tv-play-icon svg {
    width: 24px;
    height: 24px;
}

.tv-card-content {
    padding: 30px 25px;
}

.tv-card-meta {
    margin-bottom: 12px;
}

.tv-date {
    font-family: 'Inter', sans-serif !important;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tv-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin: 0 0 15px 0 !important;
    transition: color 0.3s ease;
}

.tv-card:hover .tv-title {
    color: #00BFD1 !important;
}

.tv-desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1280px) {
    .tv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

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

    .podcast-slider-wrapper {
        padding: 40px 60px;
    }
}

@media (max-width: 768px) {
    .tv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .podcast-slider-wrapper {
        padding: 40px 15px;
    }

    .tv-card-content {
        padding: 25px 20px;
    }

    .tv-title {
        font-size: 1.1rem !important;
    }
}

/* Slider Swiper Arrows Outside (Shared) */
.tv-swiper-next,
.tv-swiper-prev,
.podcast-swiper-next,
.podcast-swiper-prev,
.press-swiper-next,
.press-swiper-prev {
    color: #00BFD1 !important;
    width: 44px !important;
    height: 44px !important;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 10;
}

.tv-swiper-next,
.podcast-swiper-next {
    right: 0px !important;
}

.tv-swiper-prev,
.podcast-swiper-prev {
    left: 0px !important;
}

.tv-swiper-next:after,
.tv-swiper-prev:after,
.podcast-swiper-next:after,
.podcast-swiper-prev:after,
.testimonial-swiper-next:after,
.testimonial-swiper-prev:after {
    font-size: 18px !important;
    font-weight: 900;
}

/* Slider Pagination (Below Slider) */
.podcast-slider-wrapper .swiper-pagination,
.press-slider-wrapper .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 35px auto 0 !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    z-index: 5;
}

.swiper-pagination-bullet {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 6px !important;
    background: #cccccc !important;
    opacity: 1 !important;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #00BFD1 !important;
    width: 24px !important;
    border-radius: 4px !important;
}

.testimonial-pagination {
    margin-top: 40px !important;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Lecture Grid Widget & Archive ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
:root {
    --lecture-brand: #1a6e9c;
    --lecture-hover: #00BFD1;
}

.full-width-breakout {
    background: #f4f4f6;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0 120px;
}

/* .press-hero-centered duplicate removed */

/* .press-hero-overlay duplicate removed */

.lecture-grid-wrapper {
    padding: 20px 0;
}

.lecture-year-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d3748;
    margin: 4rem 0 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.lecture-year-heading:first-child {
    margin-top: 0;
}

.lecture-year-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 80px;
    background: var(--lecture-brand);
}

/* Archive Grid Selector (Plural) */
.lectures-grid,
.lecture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Redundant 1200px media query removed */

@media (max-width: 1024px) {

    .lectures-grid,
    .lecture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .lectures-grid,
    .lecture-grid {
        grid-template-columns: 1fr;
    }
}

/* Lecture Card Styling (Shared with Archive) */
.lecture-card {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid transparent;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lecture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-top-color: #1a6e9c;
}

.lecture-card-link,
.lecture-card-inner {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.5rem;
}

.lecture-card-logo-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lecture-logo-img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.lecture-card:hover .lecture-logo-img {
    filter: grayscale(0%);
}

.lecture-logo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a6e9c, #00BFD1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.lecture-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.lecture-card-meta {
    margin-bottom: 0.75rem;
}

.lecture-meta-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #718096;
    margin: 0;
    display: inline-block;
    background: #edf2f7;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.lecture-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.5;
    margin: 0;
    transition: color 0.2s ease;
}

.lecture-card:hover .lecture-card-title {
    color: #1a6e9c;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Blog Archive & Cards ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.blog-card-thumb-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.blog-card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-thumb-wrap img {
    transform: scale(1.05);
}

.blog-placeholder-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    color: #94a3b8;
}

.blog-placeholder-img .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
}

.blog-card-content {
    padding: 25px 25px 15px !important;
    text-align: left !important;
}

.blog-card-meta {
    margin-bottom: 10px !important;
    text-align: left !important;
}

.blog-card-title {
    font-size: 1.25rem !important;
    margin-bottom: 12px !important;
    text-align: left !important;
    color: #0f172a !important;
}

.blog-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    padding: 0 25px 25px;
    margin-top: auto;
}

.read-more-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lecture-brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.blog-card:hover .read-more-btn {
    color: var(--lecture-hover);
}

/* Pagination Styling */
.blog-pagination-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.blog-pagination-wrap .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1a202c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.blog-pagination-wrap .page-numbers:hover {
    background: #f8fafc;
    border-color: var(--lecture-brand);
    color: var(--lecture-brand);
}

.blog-pagination-wrap .page-numbers.current {
    background: var(--lecture-brand);
    border-color: var(--lecture-brand);
    color: #fff;
}

/* Testimonial Slider */
.testimonial-slider-wrapper {
    margin-top: 40px;
    /* Reduced from 100px for better balance */
}

.testimonial-card {
    background: transparent;
    padding: 20px 80px 60px 80px;
    /* Reduced top padding to bring content closer to title */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote-icon {
    color: #b08d57;
    /* A subtle gold/premium color */
    margin-bottom: 30px;
    opacity: 0.6;
}

.testimonial-content {
    font-size: 1.5rem;
    /* Larger font for single slide */
    line-height: 1.6;
    color: #111;
    font-style: italic;
    margin-bottom: 40px;
    flex-grow: 1;
    font-family: 'Playfair Display', serif;
    /* Or similar premium font if available, staying with Inter if not */
}

.testimonial-content p {
    margin: 0;
}

.testimonial-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.testimonial-swiper-next,
.testimonial-swiper-prev {
    color: #111 !important;
    top: 50% !important;
}

.testimonial-swiper-next {
    right: 0px !important;
}

.testimonial-swiper-prev {
    left: 0px !important;
}

/* Books Section */
.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.book-card {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);
}

.book-image-container {
    flex: 0 0 160px;
}

.book-cover {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.book-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 15px 0;
}

.book-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.book-actions {
    margin-top: auto;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00BFD1;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.3s ease;
}

.buy-button:hover {
    background: #008ba3;
}

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

@media (max-width: 600px) {
    .book-card {
        flex-direction: column;
        text-align: center;
    }

    .book-image-container {
        flex: 0 0 auto;
        width: 150px;
        margin: 0 auto 20px;
    }
}

.tv-swiper-next:hover,
.tv-swiper-prev:hover,
.podcast-swiper-next:hover,
.podcast-swiper-prev:hover {
    background: #00BFD1;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 191, 209, 0.3);
}

@media (max-width: 768px) {

    .tv-swiper-next,
    .tv-swiper-prev,
    .podcast-swiper-next,
    .podcast-swiper-prev {
        display: none !important;
    }
}



@media (max-width: 921px) {
    #page {
        margin-top: 70px;
    }

    #masthead .main-header-bar {
        padding: 10px 0 !important;
    }
}

/* --------------------------------------------------------------------------
 * Layout Overrides for Modular Sliders
 * Force display: block so Astra's native flex-row doesn't squish elements
 * Enforce strict max-width to combat Elementor Full-Width template bleed
 * -------------------------------------------------------------------------- */
.home-intro-section .ast-container,
.podcast-appearances-section .ast-container,
.tv-section .ast-container,
.testimonial-section .ast-container,
.home-books-section .ast-container {
    display: block !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* --------------------------------------------------------------------------
 * Alternating Section Backgrounds (Premium Polish)
 * -------------------------------------------------------------------------- */
.home-intro-section,
.podcast-appearances-section,
.testimonial-section,
.tv-section,
.home-books-section {
    padding: 6rem 0 !important;
}

.home-intro-section {
    background-color: #f8fafc !important;
    /* Light Slate */
    border-bottom: 1px solid #f1f5f9;
}

.podcast-appearances-section {
    background-color: #ffffff !important;
    /* Clean White */
}

.testimonial-section {
    background-color: #f9fafb !important;
    /* Gentle Gray */
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.tv-section {
    background-color: #f8fafc !important;
    /* Light Slate */
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.home-books-section {
    background-color: #ffffff !important;
    /* Clean White */
}

.premium-section-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 3.25rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    margin-bottom: 3.5rem !important;
    position: relative;
    letter-spacing: -0.01em;
    width: 100% !important;
    display: block !important;
}

.massive-speaker-hero .ast-container {
    display: block !important;

    margin: 0 auto !important;
}

/* --------------------------------------------------------------------------
 * Massive Speaker Hero Section
 * -------------------------------------------------------------------------- */
.massive-speaker-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: #fff !important;
    /* Gentle Gray */
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    /* Deep slate baseline */
    padding: 8rem 0;
    overflow: hidden;
}

.massive-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at center, rgba(12, 28, 44, 0.4) 0%, rgba(12, 28, 44, 0.9) 100%); */
    z-index: 1;
}

.massive-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100% !important;
    margin: 0 auto;
}

.massive-headline {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2.2rem, 9vw, 5.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    text-transform: uppercase;
    margin-bottom: 2rem !important;
    color: #000 !important;

}

.massive-subheadline {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(1rem, 2.5vw, 2rem) !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #000 !important;
    /* Brand cyan */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: clamp(2rem, 8vw, 5rem) !important;
    opacity: 0.9;
}

.speaker-reel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: #000;
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.speaker-reel-wrapper:hover .video-container {
    transform: rotateX(0deg) scale(1.02);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-label {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.speaker-reel-placeholder {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-box {
    aspect-ratio: 16/9;
    background: rgba(255, 0, 0, 0.1);
    border: 3px dashed rgba(255, 0, 0, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 0, 0, 0.6);
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
 * Massive Value Proposition Section
 * -------------------------------------------------------------------------- */
.massive-text-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: #ffffff;
    padding: 10rem 0;
    overflow: hidden;
}

.massive-text-section.text-light {
    background-color: #fff;
    color: #ffffff;
}

.massive-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.massive-text-section.text-light .massive-text-overlay {
    /* background:
        radial-gradient(circle at 20% 30%, rgba(0, 191, 209, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 209, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(12, 28, 44, 0.3) 0%, rgba(6, 18, 29, 0.95) 100%); */
}

.massive-text-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.massive-para {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 2rem !important;
}

.massive-text-section.text-light .massive-para {
    color: #000 !important;
}

.massive-text-section.text-dark .massive-para {
    color: #0c1c2c !important;
}

.para-1 {
    opacity: 0.95;
}

.massive-para.para-2 {
    color: #00BFD1 !important;
}

.massive-para-spacer {
    height: 6rem;
}

@media (max-width: 768px) {
    .massive-para {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }

    .massive-para-spacer {
        height: 4rem;
    }
}

.premium-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #00bcd4;
    /* Brand cyan */
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.premium-section-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.25rem !important;
    color: #666 !important;
    text-align: center !important;
    margin-top: -2rem !important;
    margin-bottom: 4rem !important;
    font-weight: 400 !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
 * Ultra-Minimalist Stephanie Estima Style Footer
 * -------------------------------------------------------------------------- */
.stephanie-footer {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    position: relative;
    z-index: 10;
}

.stephanie-footer-main {
    background-color: #faf9f6;
    /* warm off-white, matching stephanie */
    padding: 80px 0 30px;
    display: flex;
    justify-content: center;
}

.stephanie-footer-main .ast-container {
    width: 100%;
    margin: 0 auto;
}

/* --- Bio & Media Grid --- */
.stephanie-bio-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    text-align: center;
    /* Center text internally */
}

/* Limit max-width for a more centered 'compact' feel like Stephanie's */
.stephanie-footer .ast-container {
    max-width: 1100px !important;
}

/* Left: Vertical Media Cards */
.stephanie-media-cards {
    display: flex;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.stephanie-media-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 250px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stephanie-media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stephanie-play-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Temporary Premium Gradients for Cards replacing images */
.card-cyan-1 {
    background: linear-gradient(135deg, #0cebeb 0%, #20e3b2 100%);
}

.card-cyan-2 {
    background: linear-gradient(135deg, #00BFD1 0%, #0072ff 100%);
}

.card-cyan-3 {
    background: linear-gradient(135deg, #38bdf8 0%, #0369a1 100%);
}

/* Right: Bio Text */
.stephanie-bio-text {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items in flex column */
}

.stephanie-bio-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.stephanie-bio-prefix {
    font-size: 0.5em;
    font-weight: 500;
    vertical-align: top;
    position: relative;
    top: 5px;
    margin-right: 5px;
}

.stephanie-bio-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
    font-weight: 400;
}

/* --- Thin Divider --- */
.stephanie-divider {
    border: 0;
    height: 1px;
    background-color: #00BFD1;
    /* Dr Fotuhi website theme color */
    opacity: 0.3;
    margin: 0 0 30px;
}

/* --- Bottom Connect Row --- */
.stephanie-footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 20px;
}

/* Left: Let's Connect */
.stephanie-connect-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stephanie-connect-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #475569;
}

.stephanie-socials {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.stephanie-socials a {
    color: #00BFD1;
    /* cyan theme */
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.stephanie-socials a:hover {
    color: #008ba3;
    transform: scale(1.1);
}

.stephanie-socials svg {
    width: 100%;
    height: 100%;
}

/* Right: Horizontal Links */
.stephanie-links-area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.stephanie-links-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stephanie-links-area a,
.stephanie-links-list a {
    color: #475569;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.stephanie-links-area a:hover,
.stephanie-links-list a:hover {
    color: #00BFD1;
}

/* Bottom Area: Copyright */
.stephanie-footer-bottom {
    background-color: #020617;
    /* completely dark slate black */
    padding: 25px 0;
    color: #94a3b8;
}

.stephanie-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stephanie-copyright a {
    color: #94a3b8;
    text-decoration: none;
}

.stephanie-copyright a:hover {
    color: #ffffff;
}

.stephanie-brand {
    color: #94a3b8;
}

.stephanie-brand span {
    color: #00BFD1;
    /* cyan theme */
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .stephanie-bio-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .stephanie-media-cards {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .stephanie-footer-top-inner,
    .stephanie-footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .stephanie-media-card {
        width: 100px;
        height: 180px;
    }
}

/* --------------------------------------------------------------------------
 * Native Premium Footer System (Legacy Deprecated)
 * -------------------------------------------------------------------------- */
.custom-premium-footer {
    background-color: #f6f8fa;
    /* Light, elegant gray */
    color: #334155;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 10;
    /* Ensure it sits above anything below */
}

.footer-main-area {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
}

/* Shared Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Column 1: About */
.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
}

/* Column 2: Quick Links */
.footer-links-heading {
    text-align: left;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    /* Perfectly splits links into two columns */
    column-gap: 2rem;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
    break-inside: avoid;
}

.footer-links-list a {
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links-list a::before {
    content: "ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
    color: #00bcd4;
    margin-right: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: #00bcd4;
}

.footer-links-list a:hover::before {
    transform: translateX(3px);
}

/* Column 3: Contact */
.footer-email-link {
    display: inline-flex;
    align-items: center;
    color: #334155;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-icon-email {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #00bcd4;
}

.footer-email-link:hover {
    color: #00bcd4;
}

.footer-cta-wrapper {
    margin-bottom: 1.5rem;
}

.footer-cta-wrapper .footer-cta-button {
    display: inline-block;
    background-color: #00bcd4;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.footer-cta-wrapper .footer-cta-button:hover {
    background-color: #00a0b6;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #00bcd4;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-icons a:hover {
    background-color: #00a0b6;
    transform: translateY(-2px);
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    background-color: #00bcd4;
    padding: 20px 0;
}

.copyright-text {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: -50px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #0060df;
    /* Deep Blue as in screenshot */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #004ba8;
    color: #ffffff;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-main-area {
        padding: 60px 0 40px;
    }

    .footer-links-list {
        column-count: 1;
    }
}