/* =====================================================
   Two Marketing Moms - VideoBox Inspired Theme
   ===================================================== */

/* Custom Fonts */
@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: local('Helvetica Neue LT Std'), local('HelveticaNeueLTStd-Roman');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: local('Helvetica Neue LT Std 77 Bold Condensed'), local('HelveticaNeueLTStd-BdCn');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Jubilat';
    src: local('Jubilat Medium'), local('Jubilat-Medium');
    font-weight: 500;
    font-style: normal;
}

/* CSS Variables */
:root {
    /* Brand Colors */
    --color-purple: #32327b;
    --color-teal: #6cbcc6;
    --color-magenta: #ae256c;
    --color-orange: #fbad26;
    --color-light-teal: #a7d7dd;

    /* Semantic Colors */
    --color-primary: #6cbcc6;
    --color-primary-dark: #32327b;
    --color-accent: #ae256c;
    --color-highlight: #fbad26;
    --color-dark: #32327b;
    --color-dark-light: #4a4a9a;
    --color-gray: #6b7280;
    --color-gray-light: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #a7d7dd;
    --color-text: #32327b;
    --color-text-light: #6b7280;

    /* Fonts */
    --font-family: 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Jubilat', Georgia, serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    --transition: all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.btn-outline:hover {
    background-color: var(--color-dark);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* =====================================================
   Header
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 180px;
    width: auto;
    border-radius: 50%;
}

.footer-logo {
    height: 200px;
}

.footer-guide-img {
    max-width: 550px;
    height: auto;
    margin-top: -10rem;
}

.footer-brand {
    padding-top: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.nav-list a:hover {
    color: var(--color-magenta);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.dropdown a:hover {
    background: var(--color-light-teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    padding: 12rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(108, 188, 198, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 100%, rgba(174, 37, 108, 0.15) 0%, transparent 50%),
                linear-gradient(180deg, #f8fbfc 0%, var(--color-light-teal) 100%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -2rem;
    gap: 0;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: -5rem;
    width: 100%;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-purple);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--color-magenta);
    transform: scale(1.1);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(174, 37, 108, 0.1);
    color: var(--color-magenta);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-start;
    margin: 0 0 1.5rem;
    max-width: 100%;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--color-magenta);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.category-btn:hover {
    background: var(--color-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.category-btn-img {
    display: inline-block;
    transition: var(--transition);
    flex: 0 0 calc(33.333% - 0.27rem);
    max-width: calc(33.333% - 0.27rem);
}

.category-btn-img img {
    height: auto;
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.category-btn-img:hover {
    transform: translateY(-3px);
}

.category-btn-img:hover img {
    box-shadow: var(--shadow-lg);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.listen-label {
    font-weight: 700;
    color: var(--color-purple);
    font-size: 1.1rem;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-purple);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.platform-link:hover {
    background: var(--color-magenta);
    transform: scale(1.1);
}

.platform-link svg {
    width: 26px;
    height: 26px;
}

.hero-platforms {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    color: var(--color-gray);
    font-size: 0.875rem;
}

.platform-icons {
    display: flex;
    gap: 0.75rem;
}

.platform {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--color-gray);
}

.platform:hover {
    color: var(--color-magenta);
    transform: translateY(-2px);
}

.platform svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   Episodes Section
   ===================================================== */
.episodes {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.episode-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.episode-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.episode-card.featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.episode-thumbnail {
    position: relative;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-magenta) 100%);
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.episode-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.episode-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.episode-thumbnail:hover img {
    transform: scale(1.05);
}

.featured .episode-thumbnail {
    aspect-ratio: auto;
    min-height: 300px;
}

.episode-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.episode-play svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    color: var(--color-magenta);
}

.episode-card:hover .episode-play {
    transform: scale(1.1);
    background: white;
}

.episode-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.episode-content {
    padding: 1.5rem;
}

.featured .episode-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.episode-number {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.episode-card h3 {
    margin-bottom: 0.75rem;
}

.episode-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured .episode-card p {
    -webkit-line-clamp: 3;
}

.episode-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--color-bg-alt);
}

.episode-date {
    font-size: 0.8125rem;
    color: var(--color-gray);
}

.episode-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-magenta);
}

.episode-link:hover {
    color: var(--color-purple);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* =====================================================
   About Section
   ===================================================== */
.about {
    padding: 6rem 0;
    background-color: var(--color-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-weight: 500;
}

.about-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-magenta) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* =====================================================
   Hosts Section
   ===================================================== */
.hosts {
    padding: 6rem 0;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.host-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.host-image {
    margin-bottom: 1.5rem;
}

.host-image .image-placeholder {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 3rem;
}

.host-card h3 {
    margin-bottom: 0.25rem;
}

.host-title {
    color: var(--color-magenta);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.host-bio {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.host-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.host-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius);
    color: var(--color-gray);
}

.host-social a:hover {
    background-color: var(--color-magenta);
    color: white;
}

.host-social svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   Subscribe Section
   ===================================================== */
.subscribe {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-magenta) 100%);
    color: white;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe h2 {
    color: white;
    margin-bottom: 1rem;
}

.subscribe p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.subscribe-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-platforms p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.platform-btn svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact {
    padding: 6rem 0;
    background-color: var(--color-bg-alt);
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    font-weight: 500;
}

.contact-method:hover {
    color: var(--color-magenta);
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--color-magenta);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: var(--color-gray);
}

.social-link:hover {
    background-color: var(--color-magenta);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(108, 188, 198, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    padding: 2rem 0 2rem;
    background-color: var(--color-purple);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.9375rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    opacity: 0.7;
    font-size: 0.9375rem;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--color-orange);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.875rem;
}

/* =====================================================
   Episode Single Page
   ===================================================== */
.episode-single {
    padding: 12rem 0 4rem;
}

.back-link {
    display: inline-block;
    color: var(--color-magenta);
    font-weight: 600;
    margin-bottom: 2rem;
}

.back-link:hover {
    color: var(--color-purple);
}

.episode-header {
    margin-bottom: 2rem;
}

.episode-header .episode-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.episode-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.episode-meta-info {
    display: flex;
    gap: 1.5rem;
    color: var(--color-text-light);
}

.episode-guest {
    font-weight: 600;
    color: var(--color-magenta);
}

.episode-video {
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

.episode-audio {
    background: var(--color-light-teal);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.episode-audio h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-purple);
}

.episode-descriptor {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.episode-description {
    margin-bottom: 2rem;
}

.episode-description h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.episode-description p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.episode-description ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.episode-description li {
    margin-bottom: 0.5rem;
}

.episode-blog-recap {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.episode-blog-recap h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-purple);
}

.episode-blog-recap p {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.episode-blog-recap p:last-child {
    margin-bottom: 0;
}

.episode-blog-recap strong {
    color: var(--color-purple);
}

.episode-blog-recap h4 {
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.episode-blog-recap ul,
.episode-blog-recap ol {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.episode-blog-recap ul {
    list-style-type: disc;
}

.episode-blog-recap ol {
    list-style-type: decimal;
}

.episode-blog-recap li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.episode-contact {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--color-light-teal);
    border-radius: var(--radius-xl);
}

.episode-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-purple);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-links li {
    list-style: none;
}

.contact-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-purple);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-links a:hover {
    background: var(--color-magenta);
}

.episode-transcript {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.episode-transcript h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-purple);
}

.episode-transcript p {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.episode-transcript p strong {
    color: var(--color-purple);
    font-weight: 600;
}

.episode-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-magenta);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.episode-share h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-purple);
    color: white !important;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none !important;
    cursor: pointer;
}

.share-btn:hover {
    background: var(--color-magenta);
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .episode-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-categories {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-platforms {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 350px;
    }

    .nav {
        display: none;
    }

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

    .header-actions .btn {
        display: none;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-platforms {
        flex-direction: column;
    }

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

    .episode-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .featured .episode-thumbnail {
        aspect-ratio: 16 / 9;
        min-height: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

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

    .subscribe-form {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .platform-buttons {
        flex-direction: column;
    }

    .platform-btn {
        width: 100%;
        justify-content: center;
    }
}
