@media (max-width: 768px) {
    /* Credits Text */
    .mobile-credits {
        display: block;
        background: #000;
        color: #fff;
        text-align: center;
        padding: 8px;
        font-size: 0.8rem;
        font-family: 'Host Grotesk', sans-serif;
    }

    /* Header */
    header {
        padding: 12px 20px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        position: relative;
        min-height: 48px;
    }

    .logo {
        font-size: 1.5rem;
        line-height: 1;
        margin-left: 8px;
        display: flex;
        align-items: center;
    }

    header nav ul {
        display: none;
        gap: 20px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .mobile-nav > ul > li {
        padding: 10px;
        margin: 0;
        border-bottom: 1px solid #333;
        color: rgb(220, 220, 220);
    }

    .mobile-nav ul li a {
        color: rgb(200, 200, 200);
    }

    .mobile-nav-logo {
        margin-top: 50px;
    }

    .mpnsb_parent {
        display: none;
    }

    /* Latest Articles Section */
    .latest-articles {
        padding: 40px 20px;
    }

    .latest-articles h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

    .article-card {
        width: 100%;
        margin-bottom: 5px;
        border: 1px solid #eee;
        border-radius: 0px;
        overflow: hidden;
        background: #fff;
    }

    .article-card-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        position: relative;
    }

    .article-card-category {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(0,0,0,0.8);
        color: #fff;
        padding: 6px 12px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .article-card-content {
        padding: 20px;
    }

    .article-card-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        margin-bottom: 10px;
        line-height: 1.3;
        color: #333;
    }

    .article-card-date {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 12px;
    }

    .article-card-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #444;
        margin-bottom: 15px;
    }

    .article-tags {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 40px 20px;
        text-align: center;
        background: linear-gradient(135deg, #262626 0%, #000000 100%);
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    /* Main Content */
    .main_page_content {
        padding: 0;
    }

    .featured-articles {
        width: 100%;
        margin: 0;
    }

    .articles-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
        margin: 0 0 20px 0;
        width: 100%;
    }

    /* Article Header */
    .article-header-content {
        min-height: 500px;
    }

    /* Truncate long descriptions on mobile */
    .article-content > .article-description {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    
    .article-content > .article-description::after {
        content: '...';
    }

    .article-header-content::before {
        width: 100%;
        background: linear-gradient(to bottom,
            rgba(38, 38, 38, 0.9) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    }

    .article-header-content .category {
        top: 80px;
        left: 20px;
        font-size: 1rem;
    }

    .article-header-content .article-title {
        font-size: 2.2rem;
        max-width: 90%;
        margin: 0 20px;
        padding-top: 40px;
    }

    .article-header-content .date {
        bottom: 80px;
        left: 20px;
        font-size: 0.85rem;
    }

    /* Article Header Image Credits */
    .article-header-content .image-credits {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.85);
        color: rgba(255, 255, 255, 0.9);
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: right;
        font-family: 'Host Grotesk', sans-serif;
        margin: 0;
        width: 100%;
        backdrop-filter: blur(4px);
        z-index: 999;
    }

    /* Article Content */
    .article-container {
        max-width: 100%;
        padding: 20px;
    }

    .article-container h2 {
        font-size: 1.8rem;
        margin: 30px 0 15px;
    }

    .article-container p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

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

    .footer-bottom {
        margin-top: 30px;
        text-align: center;
    }

    .recommended-articles-inarticle {
        padding: 15px 0 15px 0;
        margin-top: 0px;
    }
    .recommended-articles-inarticle h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
        padding-left: 4vw;
    }
    .article-inarticle-recommendations-container {
        gap: 14px;
        padding: 0 4vw;
    }
    .article-inarticle-recommendations-item {
        min-width: 170px;
        max-width: 180px;
    }
    .article-inarticle-recommendations-item img {
        height: 90px;
    }
    .article-inarticle-recommendations-title {
        font-size: 0.95rem;
        padding: 10px 8px 12px 8px;
    }
}

/* Hamburger menu button */
.hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    left: 0;
    background: none;
    border: none;
    color: #bbb;
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    z-index: 1201;
    cursor: pointer;
    margin-right: 4px;
    padding: 0;
}
.hamburger-menu i {
    font-weight: 400;
    color: #bbb;
    font-size: 1.4rem;
    line-height: 1;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    background: #181818;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 2px 0 16px rgba(0,0,0,0.2);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 100002;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    opacity: 1;
}
.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.close-mobile-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 18px;
    left: 18px;
    cursor: pointer;
    z-index: 100001;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    z-index: 100002;
}
.mobile-nav ul li a {
    font-size: 1.0rem;
    text-decoration: none;
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 500;
    transition: color 0.2s;
}
.mobile-nav ul li a:hover {
    color: #DAA520;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    header nav ul {
        display: none !important;
    }
    .mpnsb_parent {
        display: none !important;
    }
    header {
        position: relative;
    }
}
