/**
 * drfotuhi Theme Ã¢â‚¬â€ Main CSS
 * Premium design system: CSS custom properties, header, footer,
 * home sections, archive pages, sliders, responsive.
 */

/* ──── 1. DESIGN TOKENS ──────────────────────────────────── */
:root {
    /* Palette */
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-navy: #0d1b2a;
    --color-cyan: #00c9c8;
    --color-cyan-dark: #009e9d;
    --color-gold: #c9a84c;
    --color-offwhite: #f7f7f5;
    --color-light-gray: #e8e8e6;
    --color-mid-gray: #7a7a7a;
    --color-text: #1a1a1a;

    /* Typography */
    --font-serif: 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Plus Jakarta Sans', 'Plus Jakarta Sans', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
    --font-script: 'Mrs Saint Delafield', cursive;
    --font-roboto: 'Roboto', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Container */
    --container-width: 1200px;
    --container-pad: clamp(1rem, 4vw, 3rem);

    /* Transitions */
    --transition: 0.25s ease;
}

/* ──── 2. RESET & BASE ───────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    font-weight: 500;
    /* Modern sans looks better slightly bolder than 400 */
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ──── 3. CONTAINER ──────────────────────────────────────── */
.drfotuhi-container,
.ast-container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.home-wide-container {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 5%;
}

.container--narrow {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.massive-text {
    font-family: var(--font-jakarta, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(1.2rem, 2.2vw, 4rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.position-relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Global Background Image Utility */
.has-background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* ──── 4. TYPOGRAPHY ─────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-sans);
    line-height: 1.2;
    color: var(--color-black);
}

.premium-section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    position: relative;
    padding-bottom: 25px;
}

/* Global Section Titles */
.dr-section-title {
    font-family: var(--font-jakarta) !important;
    font-size: clamp(2.2rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    color: #1e293b;
    margin-bottom: 4rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    position: relative !important;
    padding-bottom: 0px !important;
    text-align: center;
    line-height: 1.2;
}



/* Align variations */
.dr-section-title.text-left {
    text-align: left;
}

.dr-section-title.text-left::after {
    left: 0;
    transform: none;
}

.dr-section-title.text-right {
    text-align: right;
}

.dr-section-title.text-right::after {
    left: auto;
    right: 0;
    transform: none;
}

/* Color variations */
.text-light .dr-section-title {
    color: var(--color-white) !important;
}



.premium-section-description {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 5rem;
    font-family: var(--font-sans) !important;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #64748b;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-mid-gray);
    margin-bottom: var(--space-md);
    max-width: 640px;
    margin-inline: auto;
}

/* ──── 5. BUTTONS ────────────────────────────────────────── */
.btn {
    display: inline-block !important;
    padding: 16px 45px !important;
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
}

.btn--primary {
    background: var(--color-cyan);
    color: var(--color-white);
    border: 2px solid var(--color-cyan);
}

.btn--primary:hover {
    background: var(--color-cyan-dark);
    border-color: var(--color-cyan-dark);
}

.btn--outline {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn--outline:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.header-cta-button {
    display: inline-block !important;
    padding: 16px 45px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    background: var(--color-cyan);
    color: var(--color-white);
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    text-align: center;
}

.header-cta-button:hover {
    background: var(--color-cyan-dark);
    transform: translateY(-2px);
}

.section-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
}

/* ──── 6. HEADER (Ported from Old Theme) ─────────────────── */
#masthead.custom-header {
    position: absolute;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    padding: 30px 0;
    /* Adjusted from 50px for slightly tighter feel */
    transition: all 0.4s ease;
    border-bottom: none !important;
    box-shadow: none !important;
}

.header-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    position: relative;
}

.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 15px;
    /* Offset from top edge */
}

@media (min-width: 922px) {
    .header-left {
        justify-content: flex-end;
        padding-right: 200px;
    }

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

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

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

.logo-text-top {
    font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(16px, 3vw, 24px) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.35em !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    transition: all 0.4s ease;
    display: block;
}

.header-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    width: 100%;
    justify-content: space-between;
}

.header-menu li a {
    text-decoration: none !important;
    color: #fff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 18px !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 {
    opacity: 0.8;
}

/* Dark mode header override */
.custom-header.dark-mode-header:not(.scrolled) .logo-text-top,
.custom-header.dark-mode-header:not(.scrolled) .logo-text-bottom,
.custom-header.dark-mode-header:not(.scrolled) .header-menu li a {
    color: #ffffff !important;
}

/* Mobile Toggles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #0f172a;
    z-index: 1001;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

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

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    margin-bottom: 30px;
}

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

.mobile-list li a {
    display: block;
    padding: 15px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ──── 7. MAIN CONTENT ───────────────────────────────────── */
.site-content {
    padding-top: 0;
}

/* Removed offset to allow hero to touch top */
.drfotuhi-main {
    min-height: 60vh;
}

/* ──── 8. HERO SECTION ───────────────────────────────────── */
.hero-rossi-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.hero-rossi-content {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-rossi-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-rossi-content {
        padding: var(--space-xl) var(--container-pad);
    }

    .hero-rossi-media {
        display: none;
    }
}

.hero-rossi-inner {
    width: 100%;
    max-width: 100% !important;
    padding: 0 2% !important;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-rossi-inner .massive-headline,
.hero-rossi-inner .massive-subheadline,
.hero-rossi-inner .script-heading {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-rossi-inner .massive-headline {
    white-space: normal !important;
    /* Allows wrapping for better mobile/centered layout */
}

@media (max-width: 767px) {
    .massive-headline {
        font-size: 2.5rem !important;
    }
}

.hero-rossi-desc {
    font-size: 1.1rem;
    color: var(--color-mid-gray);
    margin-bottom: var(--space-md);
    max-width: 480px;
}

.hero-rossi-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* ──── 9. LOGO CLOUD ─────────────────────────────────────── */
.logo-cloud-overlay-section {
    position: relative;
    z-index: 99;
    background: rgba(255, 255, 255, 0.85);
    margin-top: -150px;
    padding: 16px 0;
    backdrop-filter: blur(5px);
    width: 100%;
}

@media (max-width: 991px) {
    .logo-cloud-overlay-section {
        margin-top: -50px;
        background: rgba(255, 255, 255, 0.95);
    }
}

@media (max-width: 767px) {
    .logo-cloud-overlay-section {
        margin-top: 0;
        padding: 30px 0;
    }
}

.logo-cloud-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 4%;
    /* Responsive edge padding */
}

.logo-cloud-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Edge-to-edge distribution */
    align-items: center;
    gap: 30px;
}

.logo-cloud-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.logo-image {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ──── 10. INTRO SECTION ─────────────────────────────────── */
.home-intro-section {
    padding: 12rem 0;
    background-color: #000;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

@media (max-width: 991px) {
    .home-intro-section {
        padding: 8rem 0;
    }
}

.home-intro-section.has-background-image {
    background-attachment: fixed;
}

.intro-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Color Schemes (Force White for High Impact Mode) */
.home-intro-section.text-dark .intro-bg-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.home-intro-section.text-light .intro-bg-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.home-intro-section.text-light,
.home-intro-section.has-background-image {
    color: #ffffff !important;
}

.home-intro-section.has-background-image .premium-section-title {
    color: #ffffff !important;
}

.home-intro-section.has-background-image .bio-text {
    color: #ffffff !important;
}

.home-intro-section.has-background-image .bio-text ul li {
    color: #ffffff !important;
}

/* Enhanced Visibility for Background Images */
.home-intro-section.has-background-image .intro-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.home-intro-section.text-light.has-background-image .intro-content {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

.home-intro-section .home-wide-container {
    position: relative;
    z-index: 2;
}

.home-intro-section .premium-section-title {
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(3.5rem, 9vw, 7.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    margin-bottom: 5rem !important;
    max-width: 100% !important;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .home-intro-section .premium-section-title {
        font-size: 3.5rem !important;
        margin-bottom: 3rem !important;
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 8%;
    align-items: start;
}

@media (max-width: 991px) {
    .home-intro-section .intro-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

.intro-grid.no-portrait {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8%;
    max-width: 95vw;
    margin-inline: auto;
    align-items: start;
}

.intro-grid.no-portrait .intro-content {
    grid-column: 1;
    text-align: left;
}

.intro-grid.no-portrait .bio-text ul {
    display: block;
    text-align: left;
    margin-top: 5rem !important;
}

.intro-grid.no-portrait .intro-cta {
    text-align: left;
    margin-top: 4rem;
    padding-left: 85px;
    /* Perfect alignment with list items */
}

.intro-grid.no-portrait .intro-cta .btn {
    padding: 22px 55px !important;
    font-size: 1.6rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.no-portrait .intro-image-wrapper {
    display: none;
}

.home-intro-section .bio-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.6rem, 4vw, 3.2rem) !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .home-intro-section .bio-text {
        font-size: 1.4rem !important;
    }
}

.home-intro-section .bio-text p {
    margin-bottom: 2rem;
}

.home-intro-section .bio-text ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 4rem 0 !important;
}

.home-intro-section .bio-text ul li {
    position: relative;
    padding-left: 85px !important;
    padding-right: 0 !important;
    margin-bottom: 4rem !important;
    font-weight: 700 !important;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem) !important;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .home-intro-section .bio-text ul li {
        font-size: 1.2rem !important;
        padding-left: 50px !important;
        margin-bottom: 2rem !important;
    }

    .home-intro-section .bio-text ul li::before {
        width: 35px;
        height: 35px;
    }
}

.home-intro-section .bio-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    top: 5px;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300cfc1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.intro-cta {
    margin-top: 3rem;
    text-align: left;
}

.intro-cta .btn.btn--primary {
    padding: 12px 35px;
    font-size: 0.95rem;
    min-width: unset;
}

.portrait-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5.5;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 120px;
}

@media (max-width: 991px) {
    .portrait-photo {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ──── 11. HOME SECTIONS GENERAL ─────────────────────────── */
.home-podcasts-section,
.home-television-section {
    padding: clamp(80px, 8vw, 120px) 0;
    position: relative;
    transition: all 0.4s ease;
}

.home-podcasts-section.has-background-image,
.home-television-section.has-background-image {
    background-size: cover;
    background-position: center;
    background-color: #fff;
    /* Fallback for white backgrounds */
}

/* Light Text (Dark Backgrounds) */
.text-light.home-podcasts-section,
.text-light.home-television-section {
    background-color: var(--color-navy);
}

.text-light.home-podcasts-section .premium-section-title,
.text-light.home-television-section .premium-section-title {
    color: var(--color-white);
}

.text-light.home-podcasts-section .premium-section-description,
.text-light.home-television-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.text-light.home-podcasts-section .intro-bg-overlay,
.text-light.home-television-section .intro-bg-overlay {
    background: rgba(8, 15, 26, 0.45);
}

/* Dark Text (Light Backgrounds - Matching Massive Hero) */
.text-dark.home-podcasts-section,
.text-dark.home-television-section {
    background-color: #fff;
}

.text-dark.home-podcasts-section .premium-section-title,
.text-dark.home-television-section .premium-section-title {
    color: var(--color-black);
}

.text-dark.home-podcasts-section .intro-bg-overlay,
.text-dark.home-television-section .intro-bg-overlay {
    background: rgba(255, 255, 255, 0.05);
    /* Matching massive-hero-overlay */
}

.home-podcasts-section .home-wide-container,
.home-television-section .home-wide-container {
    position: relative;
    z-index: 2;
}

.home-testimonial-section {
    padding: var(--space-xl) 0;
    background: var(--color-navy);
    position: relative;
    transition: all 0.4s ease;
}

.home-testimonial-section.has-background-image {
    background-size: cover;
    background-position: center;
    background-color: transparent !important;
}

/* Light Text (Dark Backgrounds) */
.text-light.home-testimonial-section {
    background-color: var(--color-navy);
}

.text-light.home-testimonial-section.has-background-image {
    background-color: transparent !important;
}

/* Dark Text (Light Backgrounds) */
.text-dark.home-testimonial-section {
    background-color: #fff;
}

.text-dark.home-testimonial-section.has-background-image {
    background-color: transparent !important;
}

.home-testimonial-section.text-light .premium-section-title {
    color: var(--color-white);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 5rem;
}

.home-testimonial-section.text-dark .premium-section-title {
    color: var(--color-black);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 5rem;
}

.home-testimonial-section .intro-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-testimonial-section .home-wide-container {
    position: relative;
    z-index: 2;
}

/* ──── 12. PODCAST SLIDER ────────────────────────────────── */
.podcast-slider-wrapper {
    position: relative;
}

.podcast-appearance-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

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

.podcast-thumb-wrapper {
    overflow: hidden;
}

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

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

.podcast-card-content {
    padding: 1rem 1rem 0;
    flex: 1;
}

.podcast-card-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.podcast-appearance-card:hover .podcast-card-title {
    white-space: normal;
    overflow: visible;
}

.podcast-card-speaker {
    font-family: var(--font-roboto);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.podcast-card-desc {
    font-family: var(--font-roboto);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    color: #64748b;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.podcast-card-footer {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}

.podcast-play-btn {
    width: 36px;
    height: 36px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.podcast-play-btn svg {
    width: 16px;
    height: 16px;
}

.podcast-slider-more-wrap {
    margin-top: 4rem;
    text-align: center;
}

.podcast-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 45px;
    background-color: var(--color-cyan);
    color: #ffffff !important;
    font-family: var(--font-jakarta);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 172, 193, 0.4);
}

.podcast-more-link:hover {
    background-color: var(--color-navy);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

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

/* ──── 13. PODCAST GRID & PAGINATION ─────────────────────── */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .podcast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .podcast-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 0;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-black);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: var(--color-cyan);
}

.archive-pagination .page-numbers.current {
    background: var(--color-cyan);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 191, 209, 0.3);
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
    font-size: 1.2rem;
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬ 13. TELEVISION SLIDER Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬ */
.tv-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

/* --- Modular Massive Hero Extensions --- */
/* (Moved to section 16 for consolidation) */

.massive-hero-overlay {
    z-index: 2 !important;
}

.massive-hero-inner {
    position: relative;
    z-index: 10 !important;
}

.massive-speaker-highlights-section,
.massive-speaker-logos-section {
    position: relative;
    padding: clamp(40px, 5vw, 60px) 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.massive-speaker-highlights-section .massive-hero-highlights {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.massive-speaker-logos-section .massive-hero-logos {
    margin-top: 0 !important;
}

.massive-speaker-highlights-section.text-light li {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.massive-speaker-logos-section.text-light .logo-item img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

@media (max-width: 991px) {

    .massive-speaker-highlights-section,
    .massive-speaker-logos-section {
        padding: 50px 0;
    }
}

.tv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.tv-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tv-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.tv-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.tv-placeholder {
    background: var(--color-light-gray);
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition);
}

.tv-card:hover .tv-play-icon {
    opacity: 1;
}

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

.tv-card-content {
    padding: 1rem;
}

.tv-date {
    font-size: 0.75rem;
    color: var(--color-cyan);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tv-title {
    font-family: var(--font-jakarta);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    line-height: 1.35;
    /* Truncation */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.tv-desc {
    font-family: var(--font-roboto);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-mid-gray);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ──── 14. TESTIMONIAL SLIDER ────────────────────────────── */
.testimonial-slider-wrapper {
    max-width: 1400px;
    width: 90vw;
    margin-inline: auto;
    padding-inline: 2%;
}

.testimonial-card {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.text-light .testimonial-card {
    color: var(--color-white);
}

.text-dark .testimonial-card {
    color: var(--color-black);
}

.testimonial-quote-icon {
    color: var(--color-cyan);
    margin-bottom: var(--space-sm);
    display: flex;
    justify-content: center;
}

.testimonial-content {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cyan);
}

/* Swiper overrides for testimonials */
.testimonial-swiper-prev,
.testimonial-swiper-next,
.test-swiper-prev,
.test-swiper-next {
    color: var(--color-white) !important;
    top: auto !important;
    bottom: 20px !important;
    transform: none !important;
    margin-top: 0 !important;
}

.testimonial-swiper-prev,
.test-swiper-prev {
    left: 20% !important;
}

.testimonial-swiper-next,
.test-swiper-next {
    right: 20% !important;
}

@media (min-width: 768px) {

    .testimonial-swiper-prev,
    .testimonial-swiper-next,
    .test-swiper-prev,
    .test-swiper-next {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
    }

    .testimonial-swiper-prev,
    .test-swiper-prev {
        left: 20px !important;
    }

    .testimonial-swiper-next,
    .test-swiper-next {
        right: 20px !important;
    }
}

/* ──── 15. BOOKS SECTION ─────────────────────────────────── */
.home-books-section {
    padding: var(--space-xl) 0;
    background: var(--color-offwhite);
}

/* ──── 16. MASSIVE HERO ──────────────────────────────────── */
.massive-speaker-hero {
    position: relative;
    background-color: #fff !important;
    padding: 8rem 0;
    overflow: hidden;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.massive-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
}

.massive-hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 2%;
    /* Narrower padding for massive text */
}

.massive-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #000;
    width: 100%;
    overflow: visible;
    /* Ensure we see the fix */
}

.massive-headline {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.2rem, 4.2vw, 10rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    margin-bottom: 2rem !important;
    color: #000 !important;
    white-space: nowrap !important;
}

.massive-subheadline {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.4rem, 3.5vw, 3.2rem) !important;
    font-weight: 500 !important;
    font-style: normal !important;
    line-height: 1.3 !important;
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    margin-bottom: clamp(3rem, 10vw, 6rem) !important;
    opacity: 0.95;
}

.speaker-reel-wrapper {
    max-width: 760px;
    margin-inline: auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.video-placeholder {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.video-placeholder:hover img {
    filter: brightness(1);
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: var(--color-cyan-dark);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 5px;
}

/* ──── 17. Massive Hero Logos ────────────────────────────── */

.massive-hero-highlights {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0;
    padding-inline: 8% 4%;
}

/* Consolidated below */

.massive-hero-highlights ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.massive-hero-highlights li {
    font-family: var(--font-jakarta, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(24px, 4.5vw, 45px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 2.5rem;
    text-align: left;
    color: inherit;
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.massive-hero-highlights li:hover {
    transform: translateX(8px);
    color: var(--color-cyan);
}

.massive-hero-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 3px;
    background: var(--color-cyan);
    display: block;
}

@media (max-width: 768px) {
    .massive-hero-highlights ul {
        flex-direction: column;
        gap: 1.8rem;
    }
    
    .massive-hero-highlights li {
        font-size: 24px;
        padding-left: 2rem;
    }
}

/* Entrance Animation */
@keyframes fadeInUpMassive {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.massive-hero-highlights li {
    animation: fadeInUpMassive 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.massive-hero-highlights li:nth-child(1) { animation-delay: 0.1s; }
.massive-hero-highlights li:nth-child(2) { animation-delay: 0.2s; }
.massive-hero-highlights li:nth-child(3) { animation-delay: 0.3s; }
.massive-hero-highlights li:nth-child(4) { animation-delay: 0.4s; }
.massive-hero-highlights li:nth-child(5) { animation-delay: 0.5s; }

.text-light .massive-hero-highlights li {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-dark .massive-hero-highlights li {
    color: var(--color-navy, #0d1b2a);
}

.massive-hero-highlights li:hover {
    transform: translateY(-2px);
    opacity: 1;
}

@media (max-width: 991px) {
    .massive-hero-highlights {
        margin-top: 3rem;
    }

    .massive-hero-highlights ul {
        gap: 1.5rem;
    }

    .massive-hero-highlights li {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        padding-left: 2.2rem;
    }

    .massive-hero-highlights li::before {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (max-width: 767px) {
    .massive-hero-highlights ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .massive-hero-highlights li {
        padding-left: 1.5rem;
    }
}

.massive-hero-logos {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 50px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
}

.marquee-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(20px, 4vw, 50px) !important;
    width: 100% !important;
}

/* Marquee Specific Styles */
.marquee-enabled .marquee-track {
    width: max-content !important;
    justify-content: flex-start !important;
    animation: marquee-scroll 25s linear infinite !important;
}

.marquee-enabled:hover .marquee-track {
    animation-play-state: paused !important;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* With 4 iterations, -25% creates a perfect seamless loop */
        transform: translateX(-25%);
    }
}

.massive-hero-logos .logo-item {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.massive-hero-logos .logo-item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    opacity: 0.9 !important;
    transition: opacity 0.3s ease !important;
}

.massive-hero-logos .logo-item img:hover {
    opacity: 1 !important;
}

.massive-speaker-hero.text-dark .massive-hero-logos .logo-item img {
    filter: none !important;
}

/* Redundant hover override removed */

.video-label {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ──── 18. VIDEO SECTION ─────────────────────────────────── */
.home-video-section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.home-video-section.text-light h2,
.home-video-section.text-light .section-subtitle {
    color: var(--color-white);
}

.home-video-section.text-dark h2 {
    color: var(--color-navy);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
    width: 100%;
    margin-top: 5rem;
}

/* Single item adjustment */
.video-gallery-grid:has(> :last-child:nth-child(1)) {
    display: flex;
    justify-content: center;
}

.video-gallery-grid:has(> :last-child:nth-child(1)) .video-gallery-item {
    max-width: 1200px;
    width: 100%;
}

.video-gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: inherit;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-top: 2.2rem !important;
}

@media (max-width: 991px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Video Container handled globally at line 1466 */
.video-container:hover {
    transform: translateY(-5px);
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.video-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

/* Redundant speaker reel blocks removed to resolve conflicts */

/* ──── 19. MASSIVE TEXT ──────────────────────────────────── */
.massive-text-section {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--color-black);
    overflow: hidden;
}

.massive-text-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
}

.massive-text-content {
    position: relative;
    z-index: 2;
}

.massive-para-wrapper {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.massive-para-spacer {
    height: var(--space-lg);
}

.massive-para {
    font-family: var(--font-jakarta);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
}

.massive-text-section.text-light .massive-para {
    color: var(--color-white);
}

.massive-text-section.text-dark .massive-para {
    color: var(--color-black);
}

/* ──── 20. ARCHIVE HERO ──────────────────────────────────── */
.archive-hero {
    position: relative;
    min-height: 380px;
    background: var(--color-navy);
    display: flex;
    align-items: center;
}

.archive-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
}

.archive-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-block: var(--space-xl);
}

.archive-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.archive-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ──── 21. PRESS ARCHIVE ─────────────────────────────────── */
.press-archive-section {
    background: var(--color-offwhite);
    padding: var(--space-xl) 0;
}

.press-custom-container {
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.press-grid-header {
    border-bottom: 2px solid var(--color-black);
    margin-bottom: 0;
}

.press-grid-header .press-grid-col {
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 1rem;
}

.press-grid-row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.press-grid-col {
    padding: 1rem 1rem 1rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

.press-col-date {
    width: 160px;
    flex: 0 0 160px;
}

.press-col-outlet {
    width: 220px;
    flex: 0 0 220px;
}

.press-col-article {
    flex: 1 1 auto;
}

.press-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.press-item a {
    color: #0074ff;
}

.press-item a:hover {
    text-decoration: underline;
}

/* ──── 22. PUBLICATIONS ARCHIVE ──────────────────────────── */
.publication-archive-section {
    background: var(--color-offwhite);
    padding: var(--space-xl) 0;
}

.publication-grid-header {
    border-bottom: 2px solid var(--color-black);
    margin-bottom: 0;
}

.publication-grid-header .publication-grid-col {
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 1rem;
}

.publication-grid-row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.publication-grid-col {
    padding: 1rem 1rem 1rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

.publication-article-link {
    color: #0074ff;
}

.publication-article-link:hover {
    text-decoration: underline;
}

/* ──── 23. TV / LECTURE GRID ─────────────────────────────── */
.tv-list-section {
    padding: var(--space-xl) 0;
}

.tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.lecture-grid-section {
    padding: var(--space-xl) 0;
}

/* Duplicates removed - using unified Speaking Lectures Grid styles below */

/* ──── 24. BLOG GRID ─────────────────────────────────────── */
.blog-grid-section {
    padding: var(--space-xl) 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.post-card {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.post-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.post-card__thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card__body {
    padding: 1.25rem;
}

.post-card__date {
    font-size: 0.78rem;
    color: var(--color-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.post-card__title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.post-card__title a {
    color: var(--color-black);
    transition: color var(--transition);
}

.post-card__title a:hover {
    color: var(--color-cyan);
}

.post-card__excerpt {
    font-size: 0.88rem;
    color: var(--color-mid-gray);
    line-height: 1.6;
}

/* ──── 25. 404 PAGE ──────────────────────────────────────── */
.drfotuhi-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
}

.error-404-code {
    font-family: var(--font-jakarta);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: var(--color-light-gray);
    line-height: 1;
}

.error-404-title {
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.error-404-msg {
    color: var(--color-mid-gray);
    margin-bottom: 2rem;
}

/* ──── 26. Header Structure (Split-Menu Concept) ─────────── */
.custom-header {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 50px 0;
    /* Match legacy top margin */
}

.header-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 4%;
    /* Unified fluid padding */
}

.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 15px;
    /* Offset from top edge */
}

@media (min-width: 992px) {
    .header-left {
        justify-content: flex-start;
        /* Push to far left */
    }

    .header-right {
        justify-content: flex-end;
        /* Push to far right */
    }
}

.header-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    white-space: nowrap;
}

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

.logo-text-top {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(8px, 1.5vw, 12px) !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6em !important;
    margin-bottom: 4px !important;
    display: block;
}

.logo-text-bottom {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(16px, 3vw, 24px) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.35em !important;
    line-height: 1.2 !important;
    display: block;
}

.header-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    width: 100%;
    justify-content: space-between;
}

.header-menu li a {
    text-decoration: none !important;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap !important;
    padding: 10px 0;
}

/* Color Control via Dark Mode Toggle */
.dark-mode-header .logo-text-top,
.dark-mode-header .logo-text-bottom,
.dark-mode-header .header-menu li a {
    color: #ffffff !important;
}

.custom-header:not(.dark-mode-header) .logo-text-top,
.custom-header:not(.dark-mode-header) .logo-text-bottom,
.custom-header:not(.dark-mode-header) .header-menu li a {
    color: #000000 !important;
}

/* ──── 27. Hero section (Elena Rossi Inspired) ───────────── */
.media-hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.media-hero-section .intro-bg-overlay,
.hero-rossi-media .intro-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}

.media-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Redundant Hero Section removed to avoid overrides. Using primary styles from Section 8. */

.error-404-code {
    font-family: var(--font-jakarta);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: var(--color-light-gray);
    line-height: 1;
}

.error-404-title {
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.error-404-msg {
    color: var(--color-mid-gray);
    margin-bottom: 2rem;
}

/* ──── 28. FOOTER (Ported from Old Theme) ────────────────── */
.foti-footer {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    position: relative;
    z-index: 10;
}

.foti-footer-main {
    background: linear-gradient(180deg, #faf9f6 0%, #f1f5f9 100%);
    padding: 100px 0 50px;
    border-top: 1px solid rgba(0, 191, 209, 0.1);
}

.foti-footer .ast-container {
    max-width: 1250px !important;
}

.foti-bio-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.foti-media-cards {
    display: flex;
    gap: 20px;
    flex: 0 0 auto;
}

.foti-media-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 220px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.foti-media-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.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%);
}

.foti-bio-text {
    flex: 1;
    max-width: 650px;
}

.foti-bio-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #1e293b;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: left;
}

.foti-bio-desc {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #334155;
    font-weight: 400;
}

.foti-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #00BFD1, transparent);
    opacity: 0.4;
    margin: 20px 0;
}

.foti-footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.foti-connect-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.foti-connect-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-style: normal;
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
}

.foti-socials {
    display: flex;
    gap: 20px;
}

.foti-socials a {
    color: #64748b;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.foti-socials a:hover {
    transform: scale(1.2);
}

/* Brand Colors for Social Icons */
.foti-socials a[aria-label="Facebook"]:hover {
    color: #1877F2;
}

.foti-socials a[aria-label="Instagram"]:hover {
    color: #E4405F;
}

.foti-socials a[aria-label="X"]:hover {
    color: #000000;
}

.foti-socials a[aria-label="Tiktok"]:hover {
    color: #000000;
}

.foti-socials a[aria-label="Linkedin"]:hover {
    color: #0077b5;
}

.foti-socials a[aria-label="Youtube"]:hover {
    color: #ff0000;
}

.foti-links-area .foti-links-list {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.foti-links-area .foti-links-list a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.foti-footer-bottom {
    background: #000000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.foti-footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.foti-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.foti-copyright a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 700;
}

.foti-copyright a:hover {
    color: #00BFD1;
}

/* ──── 29. APPEARANCE SLIDERS ────────────────────────────── */
.podcast-slider-wrapper {
    position: relative;
    padding: 0 60px;
    /* Space for external navigation arrows */
}

@media (max-width: 1400px) {
    .podcast-slider-wrapper {
        padding: 0 15px;
        /* Internal arrows for smaller screens */
    }
}

.podcast-appearance-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.podcast-thumb-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.podcast-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-card-content {
    padding: 2rem;
}

.podcast-card-speaker {
    color: var(--brand-cyan);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.podcast-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    /* Truncation parity */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* ──── 30. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 992px) {
    .foti-bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .foti-footer-top-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .foti-links-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

.foti-links-area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

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

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

.foti-links-list a:hover {
    color: #00BFD1;
}

.foti-footer-bottom {
    background-color: #020617;
    padding: 25px 0;
    color: #94a3b8;
}

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

.foti-copyright a {
    color: #94a3b8;
}

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

/* ──── 31. SWIPER GLOBAL œ PREMIUM PILL STYLE ────────────── */
.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 3rem !important;
    padding-bottom: 1rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #e2e8f0 !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    /* Override default swiper margin */
}

.swiper-pagination-bullet-active {
    width: 32px !important;
    border-radius: 10px !important;
    background: var(--color-cyan) !important;
}

.swiper-button-next,
.swiper-button-prev {
    background: #ffffff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    color: #00abbc !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    top: 50% !important;
    margin-top: -24px !important;
    z-index: 10 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #00abbc !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Position buttons at edges of the podcast-slider-wrapper */
.podcast-slider-wrapper .swiper-button-next {
    right: -25px !important;
}

.podcast-slider-wrapper .swiper-button-prev {
    left: -25px !important;
}

@media (max-width: 1400px) {
    .podcast-slider-wrapper .swiper-button-next {
        right: 10px !important;
    }

    .podcast-slider-wrapper .swiper-button-prev {
        left: 10px !important;
    }
}

@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: flex !important;
        /* Force visibility even if Swiper defaults to hide */
        width: 36px !important;
        height: 36px !important;
        margin-top: -18px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 0.8rem !important;
    }

    .podcast-slider-wrapper .swiper-button-next {
        right: 5px !important;
    }

    .podcast-slider-wrapper .swiper-button-prev {
        left: 5px !important;
    }
}

/* ──── 32. FOOTER NEWSLETTER ─────────────────────────────── */
/* ──── 33. FOOTER NEWSLETTER œ INTEGRATED DESIGN ─────────── */
.foti-newsletter-row {
    padding: 10px 0;
    margin: 20px 0 10px;
    background: transparent;
    border: none;
    position: relative;
    overflow: hidden;
}

.foti-newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.foti-newsletter-title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--color-navy) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.foti-newsletter-form-wrapper {

    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Targeting generated .tnp-subscription structure */
.tnp-subscription form {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;
    width: 100%;
}

.tnp-subscription .tnp-field {
    flex: 1 1 300px;
    /* Significant flex basis to force elongation */
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 250px;
    /* Minimum width for the input areas */
}

.tnp-subscription .tnp-field label {
    display: none;
}

.tnp-subscription input[type="text"],
.tnp-subscription input[type="email"] {
    background: var(--color-white) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    color: var(--color-navy) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    height: 52px !important;
    margin: 0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
}

.tnp-subscription input:focus {
    border-color: var(--color-cyan) !important;
    box-shadow: 0 0 0 4px rgba(0, 201, 200, 0.1) !important;
    outline: none !important;
}

.tnp-subscription .tnp-field-button {
    flex: 0 0 auto !important;
}

.tnp-subscription .tnp-submit {
    background: var(--color-cyan) !important;
    /* Changed to theme color */
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0 45px !important;
    /* Slightly wider padding */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 52px !important;
    margin: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 201, 200, 0.2) !important;
}

.tnp-subscription .tnp-submit:hover {
    background: var(--color-navy) !important;
    /* Navy on hover now */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.3) !important;
}

/* ──── 34. RESPONSIVE NEWSLETTER ─────────────────────────── */
@media (max-width: 1100px) {
    .foti-newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .foti-newsletter-header {
        flex-direction: column;
        gap: 15px;
    }

    .foti-newsletter-form-wrapper {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .foti-newsletter-row {
        padding: 40px 0;
    }

    .tnp-subscription form {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .tnp-subscription .tnp-submit {
        width: 100% !important;
    }
}

/* ──── 35. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Redundant hero override removed */

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

    .portrait-photo {
        height: 400px;
    }

    .foti-bio-grid {
        grid-template-columns: 1fr;
    }

    .foti-media-cards {
        flex-direction: row;
    }

    .foti-media-card {
        flex: 1;
    }
}

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

    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        grid-template-columns: 1fr auto;
    }

    .header-logo-container {
        grid-column: 1;
    }

    .press-grid-header {
        display: none !important;
    }

    .press-grid-row {
        flex-direction: column;
        padding: 1rem 0;
    }

    .press-grid-col {
        width: 100% !important;
        flex: none !important;
        padding: 3px 0;
    }

    .press-col-date {
        font-weight: 700;
        color: var(--color-mid-gray);
    }

    .hero-rossi-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .foti-footer-top-inner {
        flex-direction: column;
    }

    .foti-media-cards {
        flex-direction: column;
    }
}

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

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

/* ──── 36. UTILITIES & PORTED CLASSES ────────────────────── */
.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;
}

.font-serif {
    font-family: var(--font-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;
}

@media (max-width: 922px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-logo-container {
        transform: translateX(-50%) scale(0.9);
    }
}

/* ──── 37. SPEAKING PAGE ─────────────────────────────────── */
.speaking-hero-section .massive-headline,
.media-hero-section .massive-headline {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
}



.speaking-hero-section .massive-subheadline {
    margin-top: 3rem;
    max-width: 1400px;
    margin-inline: auto;
    opacity: 0.9;
}

/* Color Scheme Overrides */
.speaking-hero-section.text-light .massive-headline,
.speaking-hero-section.text-light .massive-subheadline,
.media-hero-section.text-light .massive-headline,
.media-hero-section.text-light .massive-subheadline,
.massive-speaker-hero.text-light .massive-headline,
.massive-speaker-hero.text-light .massive-subheadline {
    color: var(--color-white) !important;
}

.speaking-hero-section.text-dark .massive-headline,
.speaking-hero-section.text-dark .massive-subheadline,
.media-hero-section.text-dark .massive-headline,
.media-hero-section.text-dark .massive-subheadline,
.massive-speaker-hero.text-dark .massive-headline,
.massive-speaker-hero.text-dark .massive-subheadline {
    color: var(--color-black) !important;
}

/* Specific size reduction for Massive Speaker Hero */
.massive-speaker-hero .massive-headline {
    font-size: clamp(1.5rem, 2.4vw, 8rem) !important;
}


.speaking-hero-section.has-background-image.text-dark .intro-bg-overlay,
.massive-speaker-hero.text-dark .massive-hero-overlay {
    background: rgba(255, 255, 255, 0.05);
}

.speaking-hero-section.has-background-image.text-light .intro-bg-overlay,
.massive-speaker-hero.text-light .massive-hero-overlay {
    background: rgba(8, 15, 26, 0.45);
}

/* ──── 38. SPEAKING CONTENT + VIDEO ──────────────────────── */
.speaking-section-copy {
    font-family: var(--font-jakarta) !important;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: var(--color-black) !important;
    margin-bottom: 2rem;
}

.cyan-pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cyan);
    color: var(--color-white) !important;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.cyan-pill-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 188, 212, 0.35);
    background: #00acc1;
    color: #fff !important;
}

@media (max-width: 991px) {
    .speaking-grid-container {
        gap: 3rem !important;
    }

    .speaking-section-copy {
        font-size: 1.5rem !important;
    }
}

/* Speaking Content-Video Color Schemes */
.speaking-content-video-section.text-light .speaking-section-copy {
    color: var(--color-white) !important;
}

.speaking-content-video-section.text-dark .speaking-section-copy {
    color: var(--color-black) !important;
}

.speaking-content-video-section.has-background-image.text-light .intro-bg-overlay {
    background: rgba(8, 15, 26, 0.45);
}

.speaking-content-video-section.has-background-image.text-dark .intro-bg-overlay {
    background: rgba(255, 255, 255, 0.1);
}

/* ──── 39. SPEAKING VIDEO GRID ───────────────────────────── */
.speaking-grid-main-title {
    font-family: var(--font-jakarta) !important;
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    font-weight: 800 !important;
    color: var(--color-black) !important;
    margin-bottom: 2rem !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.speaking-grid-description {
    font-family: var(--font-jakarta) !important;
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    color: var(--color-black) !important;
    opacity: 0.8 !important;
    max-width: 1400px !important;
    margin-inline: auto;
}

.speaking-video-item-title {
    font-family: var(--font-jakarta) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--color-black) !important;
    margin-bottom: 1.5rem !important;
    text-transform: none !important;
}

/* Color Scheme Overrides for Video Grid */
.speaking-video-grid-section.text-light .speaking-grid-main-title,
.speaking-video-grid-section.text-light .speaking-grid-description,
.speaking-video-grid-section.text-light .speaking-video-item-title {
    color: var(--color-white) !important;
}

.speaking-video-grid-section.has-background-image.text-light .intro-bg-overlay {
    background: rgba(8, 15, 26, 0.55);
}

.speaking-video-grid-section.has-background-image.text-dark .intro-bg-overlay {
    background: rgba(255, 255, 255, 0.15);
}

/* ──── 40. SPEAKING LECTURES GRID ────────────────────────── */
/* ──── 41. SPEAKING LECTURES GRID ────────────────────────── */
.lecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    width: 100%;
}

.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: var(--font-playfair);
}

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

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

.lecture-meta-pill {
    font-family: var(--font-roboto);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #718096;
    display: inline-block;
    background: #edf2f7;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
}

.lecture-card-title {
    font-family: var(--font-jakarta);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.5;
    margin: 0;
    transition: color 0.2s ease;
    padding: 0 10px;
}

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

.lecture-location {
    font-size: 0.95rem;
    color: #a0aec0;
    margin-top: 0.5rem;
    font-family: var(--font-roboto);
    font-weight: 400;
}

/* ──── 42. HOME BOOKS SECTION ────────────────────────────── */
.home-books-section.has-background-image {
    background-color: #fff;
}

.home-books-section.text-light .intro-bg-overlay {
    background: rgba(8, 15, 26, 0.45);
}

.home-books-section.text-dark .intro-bg-overlay {
    background: rgba(255, 255, 255, 0.05);
}

.home-books-section.text-light .premium-section-title {
    color: var(--color-white) !important;
}

.home-books-section.text-dark .premium-section-title {
    color: var(--color-navy);
}

.home-books-section .home-wide-container {
    margin: 0 auto;
}

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

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

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

.book-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.book-image-container {
    width: 100%;
    max-width: 180px;
    margin-bottom: 25px;
}

.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.25rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
}

.book-description {
    font-family: var(--font-roboto);
    font-size: 0.95rem;
    font-weight: 400;
    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: 0.75rem;
    background: var(--color-cyan);
    color: var(--color-white) !important;
    text-decoration: none;
    font-family: var(--font-jakarta);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 35px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

.buy-button:hover {
    background: var(--color-navy);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
}

.buy-button svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.buy-button:hover svg {
    transform: translate(2px, -2px);
}

/* ──── 43. MEDIA PAGE SPECIFIC ───────────────────────────── */
.speaking-hero-section,
.media-hero-section,
.about-hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px;
}

.speaking-hero-inner,
.media-hero-inner,
.about-hero-inner {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    text-align: center;
    width: 100%;
}

.media-hero-section.has-background-image .intro-bg-overlay {
    background: rgba(8, 15, 26, 0.45);
}

.media-content-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.media-content-section.has-background-image .intro-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
}

/* Light Text Support */
.media-content-section.text-light {
    background-color: var(--color-navy);
}

.media-content-section.text-light.has-background-image .intro-bg-overlay {
    background: rgba(8, 15, 26, 0.85);
}

.media-content-section.text-light .bio-text {
    color: #fff;
}

.media-content-section.text-dark .bio-text {
    color: var(--color-navy);
}

.media-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.media-content-grid.no-image {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
}

.media-text-content .bio-text {
    font-family: var(--font-roboto);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.5;
    font-weight: 400;
}

.media-text-content .bio-text p {
    margin-bottom: 1.5rem;
}

.media-text-content .bio-text p:last-child {
    margin-bottom: 0;
}

.media-section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.media-content-button {
    margin-top: 2.5rem;
}

.media-image-wrapper {
    position: relative;
}

.media-feature-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.media-feature-img:hover {
    transform: scale(1.02);
}

/* Press Appearance Card */
.press-appearance-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.press-thumb-wrapper {
    height: 180px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.press-thumb-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.listen-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.listen-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
    .media-content-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .media-content-grid.layout-image_left .media-image-wrapper {
        order: -1;
    }
}

/* ──── 44. REVEAL ANIMATIONS ─────────────────────────────── */
/* ──── 45. Press Slider Modernization ────────────────────── */
.press-appearance-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
    padding: 0 !important;
    color: inherit;
}

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

.press-thumb-wrapper {
    width: 100% !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
}

.press-thumb-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease;
    padding: 0 !important;
    margin: 0 !important;
}

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

.press-card-content {
    padding: 1.5rem 1.5rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-card-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888888;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.press-card-title {
    font-family: var(--font-roboto);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111111;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.press-appearance-card:hover .press-card-title {
    white-space: normal;
    overflow: visible;
}

.press-card-description {
    font-family: var(--font-roboto);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.press-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.press-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.press-card-anchor:hover .press-read-more {
    gap: 12px;
}

.press-read-more svg {
    width: 18px;
    height: 18px;
}

/* Premium Cyan Button (View Full Press Archive) */
.premium-press-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #00abbc;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 171, 188, 0.3);
}

.premium-press-button:hover {
    background: #008fa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 171, 188, 0.4);
    color: #ffffff;
}

.premium-press-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.premium-press-button:hover svg {
    transform: translateX(5px);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ──── 46. About Page Sections ───────────────────────────── */
.about-bio-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-portrait-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-content-wrapper {
    flex: 1;
    min-width: 300px;
}

.premium-portrait-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    line-height: 0;
}

.about-portrait {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.premium-bio-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.bio-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.about-interactive-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cyan-pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: #00B4C4;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(0, 180, 196, 0.2);
    text-align: center;
    min-width: 160px;
    text-decoration: none !important;
}

.cyan-pill-button:hover {
    background: #009aa8;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 180, 196, 0.3);
}

/* Education List */
.premium-education-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
}

.education-list-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.education-list {
    list-style: none;
    padding: 0;
}

.education-item {
    font-size: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #333;
    transition: color 0.3s ease;
}

.education-item:last-child {
    border-bottom: none;
}

.education-item:hover {
    color: #00B4C4;
}

@media (max-width: 991px) {
    .about-portrait-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .about-bio-grid {
        gap: 2rem;
    }

    .about-portrait-wrapper {
        order: -1 !important;
    }

    .about-interactive-buttons {
        justify-content: center;
    }

    .about-content-wrapper {
        text-align: center;
    }
}

/* ──── 47. About Bio & Education Text Light ──────────────── */
.about-bio-section.text-light .premium-bio-title {
    color: #fff;
}

.about-bio-section.text-light .bio-text {
    color: rgba(255, 255, 255, 0.9);
}

.about-bio-section.text-light.has-background-image .intro-bg-overlay {
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.about-education-section.text-light .premium-education-title {
    color: #fff;
}

.about-education-section.text-light .education-item {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.about-education-section.text-light.has-background-image .intro-bg-overlay {
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* ──── 48. PODCAST ARCHIVE ───────────────────────────────── */
.podcast-archive-hero {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.podcast-archive-hero .home-wide-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

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

.podcast-hero-label {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.podcast-hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
}

.podcast-hero-mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

.podcast-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

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

/* Dynamic Island */
.podcast-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;
}

/* ──── 49. Contact Form Section ──────────────────────────── */
.contact-form-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.contact-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-main-heading {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 300;
    color: var(--color-black);
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-email-link {
    color: var(--color-cyan);
    text-decoration: none;
    position: relative;
    font-weight: 400;
}

.contact-email-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-email-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-subheading {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #94a3b8;
    font-weight: 300;
}

/* Form Container Refinement */
.contact-form-container {
    max-width: 900px;
    background: #ffffff;
    padding: 80px;
    border-radius: 30px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    margin: 0 auto;
    /* Ensure centering */
}

/* CF7 Specific Resets & Overrides */
.contact-form-container .wpcf7 br {
    display: none !important;
}

.contact-form-container .wpcf7 p {
    margin-bottom: 30px !important;
    text-align: left;
    /* Keep inputs left-aligned internally for readability */
}

.contact-form-container .wpcf7 label {
    display: block !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #475569 !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    text-align: left !important;
}

/* Input & Textarea Refinement */
.contact-form-container .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100% !important;
    padding: 18px 24px !important;
    background: #f8fafc !important;
    border: 2px solid #f1f5f9 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    color: var(--color-black) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
}

.contact-form-container .wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none !important;
    background: #ffffff !important;
    border-color: var(--color-cyan) !important;
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.1) !important;
}

.contact-form-container textarea.wpcf7-textarea {
    min-height: 180px !important;
}

/* Submit Button Centering & Refinement */
.contact-form-container .wpcf7-submit {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: var(--color-cyan) !important;
    color: #fff !important;
    border: none !important;
    padding: 22px 70px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    border-radius: 60px !important;
    cursor: pointer !important;
    display: block !important;
    /* Block for centering */
    margin: 40px auto 0 !important;
    /* Center the button */
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.25) !important;
    text-transform: uppercase !important;
}

.contact-form-container .wpcf7-submit:hover {
    background: var(--color-black) !important;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}

/* reCAPTCHA Error styling fix */
.wpcf7-form-control-wrap.recaptcha {
    margin-top: 20px;
    display: block;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .contact-form-container {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .contact-form-container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .contact-main-heading {
        font-size: 2.2rem;
    }

    .contact-form-container .wpcf7-submit {
        width: 100% !important;
        padding-inline: 20px !important;
    }
}

/* ──── 50. Press Article List Section ────────────────────── */
.press-table-wrapper {
    border-top: 2px solid #000;
    margin-top: 40px;
}

.press-grid-row {
    display: grid;
    grid-template-columns: 180px 220px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.press-grid-header .press-grid-row {
    border-bottom: 2px solid #000;
    padding: 25px 0;
}

.press-grid-col {
    font-size: 1.1rem;
    color: #000;
}

.press-grid-header .press-grid-col {
    font-weight: 700;
    font-size: 1.2rem;
}

.press-article-link {
    color: var(--color-cyan) !important;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.press-article-link:hover {
    opacity: 0.7;
}

.press-item {
    transition: background 0.3s ease;
}

.press-item:hover {
    background: #fafafa;
}

@media (max-width: 991px) {
    .press-grid-row {
        grid-template-columns: 150px 180px 1fr;
    }
}

@media (max-width: 767px) {
    .press-grid-header {
        display: none;
    }

    .press-grid-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 30px 0;
    }

    .press-col-date {
        font-weight: 700;
        color: #64748b;
        font-size: 0.9rem;
    }

    .press-col-outlet {
        font-weight: 700;
        font-size: 1.2rem;
    }

    .press-col-article {
        font-size: 1.1rem;
        margin-top: 5px;
    }
}

/* ──── 51. ONLINE COURSE PAGE ────────────────────────────── */
.online-course-buttons-section {
    padding: var(--space-xl) 0;
    background: var(--color-offwhite);
    text-align: center;
}

.course-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.course-pill-button {
    display: block;
    width: 100%;
    max-width: 600px;
    padding: 22px 40px;
    background-color: #00A9C1;
    /* Cyan color from screenshot */
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 169, 193, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.course-pill-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 169, 193, 0.4);
    background-color: #0098ad;
}

.course-pill-button .button-label {
    display: block;
}

@media (max-width: 768px) {
    .course-pill-button {
        font-size: 0.9rem;
        padding: 18px 30px;
    }
}

/* ──── 52. Contact Form Section ──────────────────────────── */
.contact-form-section {
    position: relative;
    overflow: hidden;
}

.contact-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-main-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    /* Minimalist, premium look */
    color: var(--color-black);
    line-height: 1.2;
}

.contact-email-link {
    color: var(--color-cyan);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-email-link:hover {
    color: var(--color-black);
}

.contact-email-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-subheading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #64748b;
    font-weight: 300;
    margin-top: 15px;
}

/* Form Container */
.contact-form-container {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    /* Soft, premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.premium-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-contact-form .full-width {
    grid-column: span 2;
}

.premium-contact-form label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-black);
    opacity: 0.8;
}

.premium-contact-form input,
.premium-contact-form textarea {
    padding: 18px 20px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--color-black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-contact-form input:focus,
.premium-contact-form textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--color-cyan);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.1);
}

.premium-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button Customization */
.contact-submit-btn {
    background: var(--color-cyan);
    color: #000;
    /* Black text on cyan is very professional */
    border: none;
    padding: 20px 50px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 50px;
    /* Pill shape */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover {
    background: var(--color-black);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Tablet & Mobile Adjustments */
@media (max-width: 1024px) {
    .contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .premium-contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    .premium-contact-form .full-width {
        grid-column: span 1;
    }

    .contact-form-container {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .contact-header {
        margin-bottom: 40px;
    }
}

/* ──── 53. FINAL RESPONSIVE OVERRIDES (MOBILE & TABLET) ──── */

@media (max-width: 991px) {

    /* Prevent horizontal scroll globally */
    html,
    body {
        overflow-x: hidden !important;
        width: 100vw !important;
        position: relative;
    }

    /* Force all sections and containers to respect viewport width */
    section,
    div[data-purpose],
    .home-wide-container,
    .drfotuhi-container,
    .ast-container {
        max-width: 100vw !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Hero Section Stacking handled in primary media queries */

    /* Logo Cloud (As Seen On) - Force Wrapping and Prevent Overflow */
    .logo-cloud-overlay-section {
        margin-top: 0 !important;
        padding: 40px 4% !important;
        background: #fff !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .logo-cloud-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .logo-cloud-item {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: 120px !important;
        display: flex !important;
        justify-content: center !important;
        margin: 5px !important;
    }

    .logo-image {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Intro Section (The Washington Post) - Definitive Stack */
    .home-intro-section {
        padding: 3rem 0 !important;
        display: block !important;
        background-attachment: scroll !important;
        /* Critical for mobile UX */
        background-image: none !important;
        /* Remove bg to prevent overlap with portrait img */
        background-color: #000 !important;
    }

    .home-intro-section .home-wide-container {
        padding-inline: 5% !important;
    }

    .home-intro-section .intro-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
    }

    .home-intro-section .intro-content {
        order: 1 !important;
        width: 100% !important;
        position: relative !important;
        text-align: center !important;
    }

    .home-intro-section .intro-image-wrapper {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 20px !important;
    }

    .home-intro-section .portrait-photo {
        position: static !important;
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        border-radius: 12px !important;
        margin: 0 auto !important;
    }

    .home-intro-section .premium-section-title {
        text-align: center !important;
        font-size: 2.2rem !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
    }

    .home-intro-section .bio-text {
        font-size: 1.1rem !important;
        text-align: center !important;
    }

    .home-intro-section .bio-text ul li {
        font-size: 1.05rem !important;
        padding-left: 45px !important;
        text-align: left !important;
        margin-bottom: 1.5rem !important;
    }

    .home-intro-section .bio-text ul li::before {
        width: 30px !important;
        height: 30px !important;
        top: 0 !important;
    }

    .home-intro-section .intro-cta {
        margin-top: 2.5rem !important;
        text-align: center !important;
        width: 100% !important;
        padding-left: 0 !important;
        /* Reset desktop padding */
    }

    .home-intro-section .intro-cta .btn.btn--primary {
        padding: 10px 24px !important;
        font-size: 0.8rem !important;
        min-width: unset !important;
        display: inline-block !important;
    }

    /* Testimonials Slider Navigation */
    .test-swiper-prev,
    .test-swiper-next,
    .testimonial-swiper-prev,
    .testimonial-swiper-next {
        top: auto !important;
        bottom: 5px !important;
        transform: none !important;
        margin-top: 0 !important;
    }

    .test-swiper-prev,
    .testimonial-swiper-prev {
        left: 15px !important;
    }

    .test-swiper-next,
    .testimonial-swiper-next {
        right: 15px !important;
    }

    /* Global Typography Scaling */
    .massive-headline,
    .hero-rossi-title,
    .premium-section-title {
        font-size: 2rem !important;
        text-align: center !important;
        word-break: break-word !important;
    }
}

/* ──── 54. NEWSLETTER CONFIRMATION PAGE ──────────────────── */
.drfotuhi-newsletter-page .newsletter-confirmation-hero {
    padding: 120px 0;
    text-align: center;
    background: #f8fafc;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.drfotuhi-newsletter-page .newsletter-confirmation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 201, 200, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(13, 27, 42, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.confirmation-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.confirmation-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: #fff;
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 201, 200, 0.15);
    color: var(--color-cyan);
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.check-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 44px;
    height: 44px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    padding: 8px;
    border: 4px solid #f8fafc;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.confirmation-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 800 !important;
    color: var(--color-navy) !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
}

.confirmation-message {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin-bottom: 48px !important;
    font-weight: 500 !important;
}

.drfotuhi-newsletter-page .page-header {
    display: none !important;
}

.drfotuhi-newsletter-page article {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.confirmation-cta .btn {
    padding: 18px 45px !important;
    font-size: 1rem !important;
    letter-spacing: 0.1em !important;
    border-radius: 60px !important;
    box-shadow: 0 10px 25px rgba(0, 201, 200, 0.2) !important;
}

@media (max-width: 768px) {
    .drfotuhi-newsletter-page .newsletter-confirmation-hero {
        padding: 80px 0;
    }

    .confirmation-title {
        font-size: 2.8rem !important;
    }

    .confirmation-message {
        font-size: 1.2rem !important;
    }
}