
        /* ========================================== */
        /* RESET & BASE                              */
        /* ========================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', Arial, sans-serif;
            background: #FBF9F6;
            padding-top: 0;
        }

        /* ========================================== */
        /* CONTAINER (Everything sits inside this)   */
        /* ========================================== */
        .site-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        /* ========================================== */
        /* PRE-HEADER (FIXED HEIGHT 48px)             */
        /* ========================================== */
        .pre-header {
            background: #1A1A1A;
            border-bottom: 2px solid #C8102E;
            height: 48px;
            overflow: hidden;
            display: flex;
            align-items: center;
            font-family: 'Inter', Arial, sans-serif;
            flex-shrink: 0;
            width: 100%;
        }
        .pre-header-inner {
            display: flex;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            gap: 12px;
            height: 100%;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
            background: rgba(200, 16, 46, 0.15);
            padding: 2px 12px 2px 8px;
            border-radius: 30px;
            border: 1px solid rgba(200, 16, 46, 0.3);
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: #C8102E;
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.2;
                transform: scale(0.7);
            }
        }
        .live-label {
            font-size: 10px;
            font-weight: 800;
            color: #C8102E;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pre-header-divider {
            color: #444;
            font-size: 18px;
            font-weight: 100;
            flex-shrink: 0;
        }

        /* Ticker */
        .ticker-wrapper {
            flex: 1;
            overflow: hidden;
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
        }
        .ticker-wrapper::before,
        .ticker-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 40px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        .ticker-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #1A1A1A, transparent);
        }
        .ticker-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #1A1A1A, transparent);
        }
        .ticker-track {
            display: flex;
            align-items: center;
            gap: 24px;
            white-space: nowrap;
            animation: scroll-ticker 30s linear infinite;
            padding: 0 20px;
        }
        .ticker-track:hover {
            animation-play-state: paused;
        }
        .ticker-item {
            font-size: 14px;
            font-weight: 500;
            color: #DDD;
            flex-shrink: 0;
        }
        .ticker-item:first-child {
            font-weight: 700;
            color: #FFF;
        }
        @keyframes scroll-ticker {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .ticker-mobile-simple {
            display: none;
            flex: 1;
            overflow: hidden;
            height: 100%;
            align-items: center;
        }
        .ticker-mobile-text {
            font-size: 13px;
            font-weight: 500;
            color: #EEE;
            white-space: nowrap;
            animation: scroll-ticker 14s linear infinite;
        }

        /* ========================================== */
        /* MAIN NAV (FIXED HEIGHT 60px)              */
        /* ========================================== */
        .main-nav-bar {
            background: #FBF9F6;
            border-bottom: 1px solid #E5E0D8;
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            flex-shrink: 0;
            width: 100%;
        }
        .main-nav-bar .site-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            width: 100%;
        }

        .brand-area {
            display: flex;
            align-items: baseline;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo {
            font-family: 'Times New Roman', Georgia, serif;
            font-weight: 900;
            font-size: 24px;
            color: #1A1A1A;
            text-decoration: none;
            border-right: 2px solid #E5E0D8;
            padding-right: 14px;
            line-height: 1;
        }
        .logo-tagline {
            font-size: 11px;
            font-weight: 500;
            color: #8A8A8A;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        /* Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            height: 100%;
        }
        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 0;
            align-items: center;
            height: 100%;
        }
        .nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 16px;
            height: 100%;
            font-size: 14px;
            font-weight: 600;
            color: #1A1A1A;
            text-decoration: none;
            font-family: 'Inter', Arial, sans-serif;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
            cursor: pointer;
            background: transparent;
            border-top: none;
            border-left: none;
            border-right: none;
        }
        .nav-icon-svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .nav-news .nav-icon-svg {
            stroke: #C8102E;
        }
        .nav-news:hover {
            border-bottom-color: #C8102E;
        }

        .nav-science .nav-icon-svg {
            stroke: #006747;
        }
        .nav-science:hover {
            border-bottom-color: #006747;
        }
        .pubmed-header-badge {
            background: #006747;
            color: #FFF;
            font-size: 8px;
            font-weight: 700;
            padding: 1px 6px;
            border-radius: 3px;
            letter-spacing: 0.3px;
        }
        .caret {
            font-size: 8px;
            color: #8A8A8A;
        }
        .nav-utility {
            color: #8A8A8A;
            font-weight: 500;
            font-size: 13px;
        }
        .nav-utility:hover {
            border-bottom-color: #1A1A1A;
            color: #1A1A1A;
        }

        /* ========================================== */
        /* MEGA MENU (CENTERED RELATIVE TO PAGE)      */
        /* ========================================== */
        .mega-dropdown {
            position: static;
            /* Crucial: allows absolute positioning relative to page */;
        }

        /* The mega menu is positioned relative to the page container */
        .mega-menu {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: 108px;
            /* pre-header 48px + nav 60px = 108px */
            left: 0;
            right: 0;
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            background: rgba(251, 249, 246, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 2px solid #006747;
            border-bottom: 2px solid #D1CDC4;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            padding: 30px 40px;
            z-index: 3000;
            border-radius: 0 0 12px 12px;
            box-sizing: border-box;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            pointer-events: none;
            transform: translateY(-5px);
        }

        .mega-menu.active {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* Background Image Overlay */
        .mega-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80');
            background-size: cover;
            background-position: center;
            filter: blur(10px) brightness(0.5);
            z-index: 0;
            opacity: 0.3;
            border-radius: 0 0 12px 12px;
        }

        .mega-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .mega-col {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-radius: 12px;
            padding: 20px 24px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .mega-col:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .mega-title {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #006747;
            margin: 0 0 12px 0;
            border-bottom: 2px solid #006747;
            padding-bottom: 8px;
        }
        .mega-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .mega-list li {
            margin-bottom: 4px;
        }
        .mega-list li a {
            font-size: 14px;
            font-weight: 400;
            color: #3A3A3A;
            text-decoration: none;
            padding: 4px 0;
            display: inline-block;
            transition: color 0.2s;
            position: relative;
        }
        .mega-list li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: #006747;
            transition: width 0.25s ease;
        }
        .mega-list li a:hover {
            color: #006747;
        }
        .mega-list li a:hover::after {
            width: 100%;
        }

        .mega-footer {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid #E5E0D8;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .pubmed-footer-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 103, 71, 0.08);
            padding: 6px 12px;
            border-radius: 6px;
            border-left: 3px solid #006747;
        }
        .pubmed-footer-badge img {
            filter: brightness(0) saturate(1) invert(0.2);
        }
        .pubmed-footer-badge span {
            font-size: 11px;
            color: #8A8A8A;
        }
        .view-all {
            font-size: 13px;
            font-weight: 700;
            color: #006747;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }
        .view-all:hover {
            gap: 10px;
            text-decoration: underline;
        }

        /* ========================================== */
        /* HAMBURGER                                  */
        /* ========================================== */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 8px;
        }
        .hamburger .bar {
            width: 25px;
            height: 2.5px;
            background: #1A1A1A;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* ========================================== */
        /* RESPONSIVE                                 */
        /* ========================================== */
        @media (max-width: 991px) {
            .hamburger {
                display: flex;
            }

            .pre-header {
                height: 40px;
            }
            .ticker-wrapper {
                display: none;
            }
            .ticker-mobile-simple {
                display: flex;
            }
            .pre-header-divider {
                display: none;
            }
            .live-indicator {
                padding: 2px 8px;
            }
            .live-label {
                font-size: 8px;
            }

            .main-nav {
                display: none;
                width: 100%;
                background: #FBF9F6;
                position: absolute;
                top: 60px;
                left: 0;
                padding: 16px 20px;
                border-top: 1px solid #E5E0D8;
                max-height: 80vh;
                overflow-y: auto;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
                height: auto;
                flex-direction: column;
                align-items: stretch;
                z-index: 999;
            }
            .main-nav.open {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                height: auto;
                gap: 0;
            }
            .nav-item {
                height: auto;
                display: block;
            }
            .nav-link {
                height: auto;
                padding: 12px 0;
                border-bottom: 1px solid #E5E0D8;
                justify-content: flex-start;
            }
            .logo-tagline {
                display: none;
            }

            /* Mobile Mega Menu */
            .mega-menu {
                position: static;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                display: none;
                background: rgba(251, 249, 246, 0.98);
                backdrop-filter: blur(6px);
                border: none;
                box-shadow: none;
                padding: 12px 0 12px 16px;
                width: 100%;
                margin-top: 4px;
                border-radius: 0;
                transition: none;
                top: auto;
                left: auto;
                right: auto;
                max-width: 100%;
            }
            .mega-menu.active {
                display: block;
            }
            .mega-bg-overlay {
                display: none;
            }
            .mega-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .mega-col {
                background: rgba(255, 255, 255, 0.9);
                padding: 14px 16px;
                border-radius: 8px;
                backdrop-filter: none;
                transform: none !important;
            }
            .mega-list li a {
                font-size: 13px;
            }
            .pubmed-header-badge {
                display: none;
            }
            .pubmed-footer-badge {
                padding: 4px 10px;
            }
            .pubmed-footer-badge span {
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            .pre-header {
                height: 36px;
            }
            .ticker-mobile-text {
                font-size: 11px;
            }
            .logo {
                font-size: 18px;
                padding-right: 10px;
            }
            .mega-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .mega-col {
                padding: 12px 14px;
            }
            .mega-title {
                font-size: 10px;
            }
            .mega-list li a {
                font-size: 12px;
            }
            .nav-link {
                font-size: 13px;
                padding: 10px 0;
            }
            .site-container {
                padding: 0 12px;
            }
        }

/* ================================================================ */
/* SECTION 2: LONG-TERM GYM SCIENCE (EVERGREEN CONTENT)             */
/* ================================================================ */

.section-gym-longterm {
    background: #FBF9F6;
    font-family: 'Inter', Arial, sans-serif;
}

/* ========================================== */
/* 2A: MASTHEAD (Premium & Eye-Catching)      */
/* ========================================== */

.gym-masthead {
    position: relative;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 60px 20px 70px;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 0;
}

/* Floating Icons (Subtle Animation) */
.gym-masthead-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    color: #FFFFFF;
    animation: float-animation 8s ease-in-out infinite;
}

.float-icon svg {
    width: 100px;
    height: 100px;
    stroke: #FFFFFF;
    opacity: 0.4;
}

.float-icon-1 {
    top: 10%;
    right: 8%;
    animation-delay: 0s;
}

.float-icon-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 3s;
    transform: scale(0.8);
}

@keyframes float-animation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(4deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Masthead Content */
.masthead-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 18px 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #A3D8C9;
    letter-spacing: 0.5px;
}

.trust-badge svg {
    flex-shrink: 0;
}

/* Title & Subtitle */
.masthead-title {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.masthead-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #F59E0B;
    border-radius: 4px;
    margin: 16px auto 0;
}

.masthead-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 16px auto 28px;
    line-height: 1.6;
}

/* Actions (Button + Meta) */
.masthead-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.btn-masthead-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F59E0B;
    color: #0F2027;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Inter', Arial, sans-serif;
}

.btn-masthead-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    background: #FBBF24;
}

.masthead-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Wave Divider (Smooth transition to white) */
.masthead-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1;
    pointer-events: none;
}
.masthead-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ========================================== */
/* 2B: POSTS GRID                            */
/* ========================================== */

.gym-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Mini Section Header (above grid) */
.section-header-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E0D8;
}

.mini-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #1A1A1A;
}

.mini-divider {
    flex: 1;
    height: 1px;
    background: #E5E0D8;
}

.mini-count {
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
}

/* Posts Grid (3 Columns) */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* --- Individual Post Card (Same as before, kept clean) --- */
.post-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.post-card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #E5E0D8;
}
.post-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.post-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-card-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
}
.post-card-title a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s;
}
.post-card-title a:hover {
    color: #006747;
}
.post-card-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #4B5563;
    margin: 0 0 16px 0;
    flex: 1;
}
.post-card-footer {
    border-top: 1px solid #F3F4F6;
    padding-top: 14px;
    margin-top: auto;
}
.post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.pubmed-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #006747;
    background: rgba(0, 103, 71, 0.08);
    padding: 2px 10px 2px 6px;
    border-radius: 20px;
    border-left: 2px solid #006747;
}
.post-date {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 400;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .masthead-title {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .gym-masthead {
        padding: 40px 16px 50px;
    }
    .masthead-title {
        font-size: 28px;
    }
    .masthead-title::after {
        width: 50px;
    }
    .masthead-subtitle {
        font-size: 16px;
        padding: 0 8px;
    }
    .btn-masthead-primary {
        font-size: 15px;
        padding: 12px 28px;
    }
    .float-icon {
        display: none;
    }
    .trust-badge {
        font-size: 11px;
        padding: 4px 14px 4px 10px;
    }
    .masthead-meta {
        font-size: 12px;
    }

    .gym-grid-container {
        padding: 30px 16px 40px;
    }
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .post-card-image {
        height: 200px;
    }
    .post-card-title {
        font-size: 16px;
    }
    .mini-label {
        font-size: 12px;
    }
}

/* ================================================================ */
/* SECTION 3: LATEST NEWS (Light, Fast, Scannable)                 */
/* ================================================================ */

.section-latest-news {
    background: #F8FAFC;
    font-family: 'Inter', Arial, sans-serif;
    padding: 40px 20px 50px;
    border-bottom: 1px solid #E2E8F0;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- 3A: Header ---------- */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.news-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.live-dot-small {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #DC2626;
    border-radius: 50%;
    animation: pulse-dot-fast 1.2s ease-in-out infinite;
}

@keyframes pulse-dot-fast {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(0.6); }
}

.news-count {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    background: #E2E8F0;
    padding: 2px 12px;
    border-radius: 30px;
}

.news-header-right {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 400;
}

/* ---------- Filters (Desktop) ---------- */
.news-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    background: #FFFFFF;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-pill {
    padding: 6px 16px;
    border-radius: 30px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: 'Inter', Arial, sans-serif;
    white-space: nowrap;
}

.filter-pill:hover {
    background: #F1F5F9;
    color: #0F172A;
}

.filter-pill.active {
    background: #0F172A;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    padding: 4px 14px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}

.filter-search:focus-within {
    border-color: #94A3B8;
    background: #FFFFFF;
}

.filter-search input {
    border: none;
    background: transparent;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 400;
    color: #0F172A;
    outline: none;
    width: 140px;
    font-family: 'Inter', Arial, sans-serif;
}

.filter-search input::placeholder {
    color: #94A3B8;
}

.filter-search svg {
    stroke: #94A3B8;
    flex-shrink: 0;
}

/* ---------- Filters (Mobile Accordion) ---------- */
.news-filters-mobile {
    display: none;
    margin-bottom: 20px;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
    font-family: 'Inter', Arial, sans-serif;
    transition: background 0.2s;
}

.filter-toggle-btn:hover {
    background: #F8FAFC;
}

.toggle-caret {
    margin-left: auto;
    font-size: 12px;
    color: #94A3B8;
    transition: transform 0.3s ease;
}

.filter-drawer {
    display: none;
    padding: 16px 0 4px 0;
    flex-direction: column;
    gap: 14px;
}

.filter-drawer.open {
    display: flex;
}

.drawer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.drawer-pills .filter-pill {
    font-size: 14px;
    padding: 8px 18px;
    background: #F1F5F9;
    color: #475569;
}

.drawer-pills .filter-pill.active {
    background: #0F172A;
    color: #FFFFFF;
}

.drawer-search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    outline: none;
    background: #FFFFFF;
    transition: border-color 0.2s;
}

.drawer-search input:focus {
    border-color: #0F172A;
}

/* ---------- 3B: News Grid ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

/* --- Individual News Card --- */
.news-card {
    display: flex;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #F1F5F9;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.news-card-border {
    width: 5px;
    flex-shrink: 0;
    min-height: 100%;
}

.news-card-body {
    padding: 16px 18px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
    font-size: 12px;
}

.news-category {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.news-source {
    color: #64748B;
    font-weight: 500;
}

.news-time {
    color: #94A3B8;
    font-weight: 400;
}

.news-headline {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.news-headline a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s;
}

.news-headline a:hover {
    color: #2563EB;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #F1F5F9;
}

.news-country {
    font-size: 13px;
    font-weight: 400;
    color: #64748B;
}

.news-readmore {
    font-size: 13px;
    font-weight: 600;
    color: #2563EB;
    text-decoration: none;
    transition: color 0.2s;
}

.news-readmore:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

/* ---------- Load More ---------- */
.news-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
}

.btn-load-more {
    padding: 12px 48px;
    border-radius: 60px;
    border: 2px solid #E2E8F0;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-family: 'Inter', Arial, sans-serif;
}

.btn-load-more:hover {
    background: #F1F5F9;
    border-color: #94A3B8;
}

.news-total-count {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 400;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

/* Tablets */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .filter-search input {
        width: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-latest-news {
        padding: 24px 16px 40px;
    }

    .news-filters {
        display: none; /* Hide desktop filters */
    }

    .news-filters-mobile {
        display: block;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-header-left .live-badge {
        font-size: 16px;
    }
    .news-count {
        font-size: 12px;
        padding: 1px 10px;
    }
    .news-header-right {
        font-size: 12px;
    }

    .news-headline {
        font-size: 15px;
    }
    .news-card-body {
        padding: 14px 16px;
    }
    .btn-load-more {
        padding: 12px 32px;
        font-size: 14px;
        width: 100%;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .news-headline {
        font-size: 14px;
    }
    .news-meta {
        font-size: 11px;
        gap: 6px;
    }
    .filter-toggle-btn {
        font-size: 14px;
        padding: 10px 14px;
    }
    .drawer-pills .filter-pill {
        font-size: 13px;
        padding: 6px 14px;
    }
}
 

/* ================================================================ */
/* SECTION 4: SUBSCRIPTION OPTIONS (Warm, Human, Global)           */
/* ================================================================ */

.section-subscriptions {
    padding: 60px 20px 80px;
    background: #befff5; /* Warm limestone/cream – NOT the default AI gray */
    font-family: 'Inter', Arial, sans-serif;
    border-top: 1px solid #E6DFD6;
}

.sub-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Section Intro ---------- */
.sub-intro {
    text-align: center;
    margin-bottom: 50px;
}

.sub-badge {
    display: inline-block;
    background: #E6DFD6;
    padding: 4px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #5A4E42;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sub-title {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 36px;
    font-weight: 900;
    color: #2A241E;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.sub-desc {
    font-size: 18px;
    color: #6B5F53;
    margin: 0;
    font-weight: 400;
}

/* ---------- Grid ---------- */
.sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* ---------- Individual Cards ---------- */
.sub-card {
    border-radius: 20px;
    padding: 32px 30px 30px;
    background: #FFFFFF;
    box-shadow: 0 4px 24px rgba(42, 36, 30, 0.06);
    border: 1px solid rgba(42, 36, 30, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.sub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(42, 36, 30, 0.08);
}

/* --- Card 1: WhatsApp (Green Theme) --- */
.sub-card-whatsapp {
    background: linear-gradient(145deg, #075E54 0%, #128C7E 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.15);
}

.sub-card-whatsapp .sub-card-desc {
    color: rgba(255, 255, 255, 0.8);
}
.sub-card-whatsapp .sub-footnote {
    color: rgba(255, 255, 255, 0.5);
}
.sub-card-whatsapp .sub-card-title {
    color: #FFFFFF;
}

/* WhatsApp Icon */
.wa-icon {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}
.wa-icon svg {
    width: 24px;
    height: 24px;
}

/* Badges */
.sub-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sub-card-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 30px;
}

.wa-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.email-badge {
    background: #E6DFD6;
    color: #5A4E42;
}

.premium-badge {
    background: #D4A373;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.premium-badge svg {
    stroke: #FFFFFF;
}

/* Card Titles */
.sub-card-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2A241E;
    margin: 0 0 6px 0;
}

.sub-card-desc {
    font-size: 15px;
    color: #6B5F53;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

/* ---------- Forms ---------- */
.sub-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.2s, background 0.2s;
    overflow: hidden;
}

.sub-card-whatsapp .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}
.sub-card-whatsapp .input-group:focus-within {
    border-color: #25D366;
    background: rgba(255, 255, 255, 0.15);
}

.input-prefix {
    padding: 0 0 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.sub-card-email .input-prefix {
    color: #8A7A6A;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    color: #FFFFFF;
    outline: none;
    width: 100%;
}

.sub-card-email .input-group {
    background: #F5F0EB;
    border: 1px solid #E6DFD6;
}
.sub-card-email .input-group:focus-within {
    border-color: #B8A99A;
    background: #FFFFFF;
}
.sub-card-email .input-group input {
    color: #2A241E;
}
.sub-card-email .input-group input::placeholder {
    color: #A89888;
}

.sub-card-whatsapp .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Buttons ---------- */
.btn-wa {
    background: #25D366;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: 'Inter', Arial, sans-serif;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background: #20B858;
    transform: scale(1.01);
}

.btn-email {
    background: #2A241E;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Inter', Arial, sans-serif;
    margin-top: 8px;
}

.btn-email:hover {
    background: #4A3F37;
}

/* ---------- Email Filter Checkboxes ---------- */
.filter-group {
    background: #F5F0EB;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #E6DFD6;
}

.filter-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #6B5F53;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-counter {
    background: #E6DFD6;
    padding: 1px 10px;
    border-radius: 30px;
    font-size: 12px;
    color: #2A241E;
}

.filter-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2A241E;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #B8A99A;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-option.premium-locked {
    color: #A89888;
    cursor: not-allowed;
    opacity: 0.7;
}
.filter-option.premium-locked input {
    cursor: not-allowed;
}

.lock-icon {
    font-size: 11px;
    margin-left: 2px;
}

/* ---------- Payment / Upgrade Area ---------- */
.payment-upgrade {
    background: #F5F0EB;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px dashed #D4C8BC;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.upgrade-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.upgrade-text {
    font-size: 13px;
    font-weight: 500;
    color: #6B5F53;
}

.coming-soon-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background: #C0392B;
    padding: 2px 10px;
    border-radius: 30px;
}

.payment-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-tag {
    font-size: 18px;
    font-weight: 800;
    color: #2A241E;
}
.price-tag small {
    font-size: 13px;
    font-weight: 400;
    color: #8A7A6A;
}

.btn-payment {
    background: #E6DFD6;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #A89888;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', Arial, sans-serif;
    opacity: 0.7;
}

.pay-badge {
    font-size: 10px;
    font-weight: 700;
    color: #FFFFFF;
    background: #635BFF;
    padding: 2px 8px;
    border-radius: 6px;
}

/* ---------- Footnotes ---------- */
.sub-footnote {
    font-size: 12px;
    color: #A89888;
    margin: 12px 0 0 0;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media (max-width: 1024px) {
    .sub-grid {
        gap: 24px;
    }
    .filter-checkboxes {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-subscriptions {
        padding: 40px 16px 60px;
    }
    .sub-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sub-title {
        font-size: 28px;
    }
    .sub-desc {
        font-size: 16px;
    }

    .sub-card {
        padding: 24px 20px;
    }

    .filter-checkboxes {
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
    }

    .payment-upgrade {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .payment-mock {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .filter-checkboxes {
        grid-template-columns: 1fr;
    }
    .sub-card-title {
        font-size: 20px;
    }
    .btn-wa, .btn-email {
        font-size: 15px;
        padding: 12px 20px;
    }
    .input-group input {
        font-size: 14px;
        padding: 12px 14px;
    }
}

/* ================================================================ */
/* FOOTER: Warm, Human, Newspaper-Inspired                         */
/* ================================================================ */

.site-footer {
    background: #F7F4F0; /* Matches the warm paper tone from subscriptions */
    border-top: 2px solid #E6DFD6;
    padding: 50px 20px 28px;
    font-family: 'Inter', Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Footer Grid (4 Columns) ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E6DFD6;
}

/* ---------- Column 1: Brand ---------- */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.footer-logo-text {
    font-family: 'Times New Roman', Georgia, serif;
    font-weight: 900;
    font-size: 24px;
    color: #2A241E;
    letter-spacing: 0.5px;
}

.footer-logo-tagline {
    font-size: 12px;
    font-weight: 500;
    color: #8A7A6A;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    color: #6B5F53;
    margin: 0;
    max-width: 300px;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 400;
    color: #6B5F53;
    margin: 0;
}

.footer-emphasis {
    font-weight: 700;
    color: #2A241E;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #D4A373;
}

/* ---------- Columns 2 & 3: Links ---------- */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #2A241E;
    margin: 0 0 14px 0;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 6px;
}

.footer-list li a {
    font-size: 14px;
    font-weight: 400;
    color: #6B5F53;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-list li a:hover {
    color: #2A241E;
    padding-left: 4px;
}

/* ---------- Column 4: Profile + Ad ---------- */
.footer-profile-ad {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Profile Card */
.profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #E6DFD6;
    box-shadow: 0 2px 8px rgba(42, 36, 30, 0.04);
}

.profile-image {
    border-radius: 50%;
    border: 2px solid #D4A373;
    flex-shrink: 0;
    object-fit: cover;
    background: #E6DFD6;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.profile-name {
    font-size: 14px;
    font-weight: 700;
    color: #2A241E;
}

.profile-role {
    font-size: 12px;
    font-weight: 400;
    color: #8A7A6A;
}

/* Ad Space */
.footer-ad {
    background: #FFFFFF;
    border: 1px dashed #D4C8BC;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: border-color 0.2s, background 0.2s;
}

.footer-ad:hover {
    border-color: #B8A99A;
    background: #FCF9F6;
}

.ad-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A89888;
}

.ad-text {
    font-size: 16px;
    font-weight: 700;
    color: #2A241E;
}

.ad-subtext {
    font-size: 12px;
    font-weight: 400;
    color: #8A7A6A;
}

/* ---------- Bottom Row ---------- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.footer-copyright p {
    font-size: 13px;
    font-weight: 400;
    color: #8A7A6A;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #8A7A6A;
    background: #FFFFFF;
    border: 1px solid #E6DFD6;
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.social-link:hover {
    color: #2A241E;
    border-color: #B8A99A;
    transform: translateY(-2px);
}

.social-link svg {
    display: block;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 32px 16px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    .footer-brand {
        grid-column: 1;
    }
    .footer-logo-text {
        font-size: 20px;
    }
    .footer-about {
        font-size: 13px;
    }
    .footer-profile-ad {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .profile-card {
        flex: 1;
        min-width: 160px;
    }
    .footer-ad {
        flex: 1;
        min-width: 140px;
        padding: 12px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .footer-social {
        gap: 10px;
    }
    .social-link {
        width: 30px;
        height: 30px;
    }
    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .footer-profile-ad {
        flex-direction: column;
    }
    .profile-card {
        min-width: unset;
    }
    .footer-ad {
        min-width: unset;
    }
}