:root {
    --primary-color: #e91e8c;
    --secondary-color: #ffd1e3;
    --dark-color: #2d2d2d;
    --light-bg: #fff5f9;
    --text-color: #444;
    --accent-purple: #8b5cf6;
    --gradient-1: linear-gradient(135deg, #e91e8c 0%, #ff6b9d 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Top Banner */
.top-banner {
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: slideDown 0.5s ease-out;
}

.top-banner a {
    color: white;
    transition: all 0.3s ease;
}

.top-banner a:hover {
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .logo {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.navbar .logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 8px 20px !important;
    margin: 0 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-membership {
    background: var(--gradient-1);
    color: white !important;
    border-radius: 25px;
    padding: 10px 25px !important;
}

.btn-membership::after {
    display: none;
}

.btn-membership:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 140, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hero-subtitle-small {
    font-size: 0.95rem;
    color: var(--accent-purple);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 30px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    animation: fadeIn 1s ease-out;
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Podcast Section */
.podcast-section {
    padding: 80px 0;
    background: white;
}

.podcast-image {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.podcast-image:hover {
    transform: translateY(-10px);
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-purple);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.podcast-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-podcast {
    background: var(--gradient-2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-podcast:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    color: white;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.products-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    line-height: 1.4;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-title {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-color);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-greeting {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content strong {
    color: var(--primary-color);
}

.about-content a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: var(--primary-color);
}

.about-image {
    border-radius: 20px;
    animation: fadeIn 1s ease-out;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .products-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .podcast-links {
        margin-top: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
}




/* Shop Page Styles */

/* Featured Membership Section */
.featured-membership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f9 0%, #f0e6ff 100%);
    position: relative;
    overflow: hidden;
}

.featured-membership-section::before {
    content: '';
    position:




/* About Page Styles */

/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f9 0%, #ffeef5 100%);
}

.about-hero-greeting {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease-out;
}

.about-hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-content {
    font-size: 1.15rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
}

.about-hero-content strong {
    color: var(--primary-color);
}

.about-hero-content a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hero-content a:hover {
    color: var(--primary-color);
}

.about-hero-image {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
    animation: fadeIn 1.2s ease-out;
}

.about-hero-image:hover {
    transform: scale(1.03) rotate(-2deg);
}

/* About Podcast Section */
.about-podcast-section {
    padding: 80px 0;
    background: white;
}

.podcast-cover {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.podcast-cover:hover {
    transform: translateY(-10px) rotate(2deg);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Favorite Things Section */
.favorite-things-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    margin: 20px auto 0;
    border-radius: 2px;
}

.favorite-things-image {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.favorite-things-image:hover {
    transform: scale(1.02);
}

/* About OMGrowth Section */
.about-omgrowth-section {
    padding: 80px 0;
    background: white;
}

.about-omgrowth-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.lead-text em {
    color: var(--primary-color);
    font-style: italic;
}

.about-omgrowth-content p {
    margin-bottom: 20px;
}

.about-omgrowth-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-omgrowth-content a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-omgrowth-content a:hover {
    color: var(--primary-color);
}

.conclusion-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-top: 30px;
}

/* OMGrowth Moments Section */
.omgrowth-moments-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0e6ff 0%, #fff5f9 100%);
}

.moments-card {
    background: white;
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.moments-card:hover {
    transform: translateY(-5px);
}

.moments-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.moments-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    font-style: italic;
}

.moment-item {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.moment-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.15);
    transform: translateY(-5px);
}

.moment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.moment-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

.moments-cta {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 50px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Tools Section */
.about-tools-section {
    padding: 80px 0;
    background: white;
}

.featured-tool-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.featured-tool-card:hover {
    transform: translateY(-10px);
}

.featured-tool-card img {
    width: 100%;
    transition: transform 0.5s ease;
}

.featured-tool-card:hover img {
    transform: scale(1.05);
}

.featured-tool-content {
    padding: 40px;
    text-align: center;
}

.btn-primary-large {
    background: var(--gradient-1);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.3);
    color: white;
}

.tool-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tool-card a {
    text-decoration: none;
    color: var(--dark-color);
    display: block;
}

.tool-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tool-card:hover img {
    transform: scale(1.1);
}

.tool-card h4 {
    padding: 25px 20px 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.tool-link {
    display: block;
    padding: 0 20px 25px;
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.tool-card:hover .tool-link {
    color: var(--primary-color);
}

/* Shop Page Styles - Complete Previous Section */
.featured-membership-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 15s infinite ease-in-out;
}

.membership-image-link {
    display: block;
    transition: transform 0.3s ease;
}

.membership-image-link:hover {
    transform: scale(1.03);
}

.membership-featured-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.membership-content {
    padding: 40px;
}

.membership-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.membership-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.membership-subtitle {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 40px;
    font-weight: 600;
}

.link-more-info {
    display: block;
    margin-top: 20px;
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-more-info:hover {
    color: var(--primary-color);
}

/* Shop Resources Section */
.shop-resources-section {
    padding: 80px 0;
    background: white;
}

.resources-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
}

.resources-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    margin: 20px auto 0;
    border-radius: 2px;
}

.shop-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.shop-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-link {
    text-decoration: none;
    color: var(--dark-color);
    display: block;
    height: 100%;
}

.shop-product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.shop-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 140, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-product-card:hover .shop-product-image-wrapper img {
    transform: scale(1.1);
}

.shop-product-content {
    padding: 25px;
}

.shop-product-title {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 80px;
}

.shop-product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Responsive Adjustments for About Page */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .membership-title {
        font-size: 2.2rem;
    }
    
    .moments-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-image {
        margin-top: 30px;
    }
    
    .podcast-cover {
        margin-bottom: 30px;
    }
    
    .moments-card {
        padding: 40px 20px;
    }
    
    .membership-title {
        font-size: 1.8rem;
    }
    
    .membership-subtitle {
        font-size: 1.5rem;
    }
}


/* Episodes Page Styles */

/* Episodes Header */
.episodes-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0e6ff 0%, #fff5f9 100%);
    text-align: center;
}

.episodes-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.episodes-subtitle {
    font-size: 1.5rem;
    color: var(--accent-purple);
    font-weight: 600;
}

/* Episodes List Section */
.episodes-list-section {
    padding: 60px 0;
    background: white;
}

/* Episode Card */
.episode-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.episode-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.episode-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.episode-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.episode-card:hover .episode-image {
    transform: scale(1.05) rotate(2deg);
}

.episode-header-content {
    flex: 1;
}

.episode-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.episode-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.episode-number {
    background: var(--gradient-2);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.episode-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.episode-content p {
    margin-bottom: 20px;
}

.episode-content p:last-child {
    margin-bottom: 0;
}

.episode-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Sidebar */
.episodes-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
    text-align: center;
}

/* Search Widget */
.search-box input {
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(233, 30, 140, 0.2);
    outline: none;
}

/* Subscribe Widget */
.subscribe-widget {
    background: linear-gradient(135deg, #fff5f9 0%, #f0e6ff 100%);
}

.podcast-promo-image {
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.subscribe-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-link {
    background: var(--gradient-2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.subscribe-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
    color: white;
}

/* Tools Widget */
.tools-widget {
    background: var(--light-bg);
}

.tool-sidebar-item {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.tool-sidebar-item:last-child {
    margin-bottom: 0;
}

.tool-sidebar-item:hover {
    transform: scale(1.03);
}

.tool-sidebar-item a {
    text-decoration: none;
    color: var(--dark-color);
    display: block;
}

.tool-sidebar-item img {
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tool-sidebar-item:hover img {
    transform: scale(1.05);
}

.tool-sidebar-title {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.tool-sidebar-title strong {
    color: var(--primary-color);
}

/* Responsive Episodes Page */
@media (max-width: 992px) {
    .episodes-title {
        font-size: 2.5rem;
    }
    
    .episode-header {
        flex-direction: column;
    }
    
    .episode-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }
    
    .episodes-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .episodes-title {
        font-size: 2rem;
    }
    
    .episode-card {
        padding: 25px;
    }
    
    .episode-title {
        font-size: 1.4rem;
    }
    
    .episode-content {
        font-size: 1rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}
