/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a6cf7;
    --accent-color: #ff6b6b;
    --dark-bg: #171c28;
    --light-bg: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #f8f9fa;
    --header-height: 60px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* App-specific colors */
    --mastermind-color: #3498db;
    --plants-color: #2ecc71;
    --sellsmart-color: #e74c3c;
    --cluttersnap-color: #667eea;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /* Place the navigation toggle on the left and logo on the right for better UX */
}

/* Reorder header elements for better side navigation layout */
.nav-toggle {
    order: 1;
}

.logo {
    order: 2;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.tagline {
    font-size: 12px;
    color: #777;
}

/* Side Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-toggle:hover {
    background-color: rgba(74, 108, 247, 0.1);
}

.nav-toggle-bar {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animated hamburger to X transformation */
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1100;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
}

/* Hide toggle button on desktop since nav is always visible */
.nav-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-toggle-bar {
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile floating menu toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    border: none;
    background: rgba(0,0,0,0.9);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    min-width: 50px;
    min-height: 50px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    background: rgba(0,0,0,1);
    transform: scale(1.05);
}

.mobile-menu-toggle .nav-toggle-bar {
    width: 22px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hamburger to X animation for mobile toggle */
.mobile-menu-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Side Navigation Header */
.side-nav-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    position: relative;
}

.side-nav-logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.side-nav-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-align: left;
    margin-top: 5px;
}

.side-nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.side-nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.side-nav-text {
    flex: 1;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav-links li:not(.nav-section-divider) {
    margin-bottom: 2px;
}

/* Main navigation links */
.nav-links > li > a {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 16px;
    padding: 16px 25px;
    transition: var(--transition);
    border-left: 4px solid transparent;
    text-decoration: none;
}

.nav-links > li > a i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.nav-links > li > a:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: rgba(255,255,255,0.5);
    padding-left: 30px;
}

/* Active app section - moved to top and expanded */
.nav-links .active-app {
    order: -1;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    margin: 0 15px 20px 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-links .active-app > a {
    background: rgba(255,255,255,0.2);
    border-left: 4px solid white;
    color: white;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

/* Article submenu */
.article-submenu {
    background: rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.article-submenu li {
    margin: 0;
}

.article-submenu a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 400;
    padding: 12px 20px 12px 45px;
    transition: var(--transition);
    text-decoration: none;
    border-left: none;
}

.article-submenu a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    padding-left: 50px;
}

.article-submenu a.active {
    background: rgba(255,255,255,0.15);
    color: white;
    font-weight: 500;
}

/* Regular navigation items */
.nav-links > li:not(.active-app) > a.active {
    background: rgba(255,255,255,0.15);
    border-left-color: white;
    color: white;
    font-weight: 600;
}

/* Sidebar section dividers */
.nav-links .nav-section-divider {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 20px 20px 10px 20px;
    padding: 8px 0 8px 15px;
    border-left: 3px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    border-radius: 0;
    position: relative;
    pointer-events: none;
    cursor: default;
    list-style: none;
}

.nav-links .nav-section-divider:first-child {
    margin-top: 10px;
}

/* App-specific sidebar colors */
.side-nav.plants-theme {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.side-nav.mastermind-theme {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.side-nav.sellsmart-theme {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.side-nav.cluttersnap-theme {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.side-nav.summerbee-theme {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.side-nav.minigames-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.side-nav.default-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Side Navigation Footer */
.side-nav-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.1);
}

.side-nav-contact {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-align: center;
}

.side-nav-contact i {
    margin-right: 8px;
}

/* Navigation Overlay - only visible on mobile */
.nav-overlay {
    display: none;
}

/* Adjust main content to account for always-visible sidebar */
body {
    margin-left: 280px;
}

/* Adjust header to account for sidebar */
.site-header {
    left: 280px;
    width: calc(100% - 280px);
}

/* Hide old navigation elements */
nav {
    display: none;
}

.hamburger-menu {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #845ef7);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Main Content */
main {
    flex: 1;
    padding: 10px 0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* App Grid */
.apps-section {
    padding: 30px 0;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.app-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.app-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.app-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.app-card:hover .app-card-image img {
    transform: scale(1.05);
}

.app-card-content {
    padding: 25px;
}

.app-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.app-card-content p {
    color: #666;
    margin-bottom: 20px;
}

.app-card-buttons {
    display: flex;
    gap: 10px;
}

.app-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    flex: 1;
}

.app-card-btn i {
    margin-right: 5px;
}

.btn-details {
    background-color: #f1f5f9;
    color: var(--text-dark);
}

.btn-details:hover {
    background-color: #e2e8f0;
}

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

.btn-store:hover {
    background-color: #3a5bdf;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6366f1, #4a6cf7);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}


.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-contact i {
    margin-right: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Official Sites Styles */
.official-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.site-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #e5e5e5;
    text-decoration: none;
    display: block;
    color: inherit;
}

.site-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.site-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    line-height: 1.3;
}

.site-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.8rem;
}


.authenticity-notice {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.notice-content i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.notice-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.notice-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.notice-content a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.notice-content a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-dark);
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* App-specific styles */
.mastermind-theme {
    --app-color: var(--mastermind-color);
}

.plants-theme {
    --app-color: var(--plants-color);
}

.sellsmart-theme {
    --app-color: var(--sellsmart-color);
}

.cluttersnap-theme {
    --app-color: var(--cluttersnap-color);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Reset body margin on mobile */
    body {
        margin-left: 0;
    }
    
    /* Reset header position on mobile */
    .site-header {
        left: 0;
        width: 100%;
    }
    
    /* Show mobile floating menu toggle on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        position: fixed !important;
        top: 15px !important;
        left: 15px !important;
    }
    
    /* Show navigation toggle on mobile */
    .nav-toggle {
        display: flex;
    }
    
    /* Mobile sidebar behavior */
    .side-nav {
        left: -100%;
        width: 100%;
    }

    .side-nav.active {
        left: 0;
    }
    
    /* Show overlay on mobile when nav is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .hero {
        padding: 70px 0 35px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

/* For individual app pages */
.app-details {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 1000px;
    margin: 30px auto 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.app-header h1 {
    font-size: 2rem;
    margin: 0;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.app-store-btn:hover {
    background-color: #3a5bdf;
    transform: translateY(-3px);
}

.app-screenshots {
    margin-bottom: 30px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-screenshots img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.app-screenshots img:hover {
    transform: scale(1.03);
}

.app-description {
    margin-bottom: 40px;
}

.app-description h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.app-description h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.app-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.app-description li {
    margin-bottom: 8px;
}

.related-articles h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.article-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.article-card {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 25px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.article-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.article-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.article-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.article-close:hover {
    color: var(--text-dark);
}

/* Article content styles */
#article-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

#article-content a:hover {
    color: var(--accent-color);
}

#article-content h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

#article-content h3 {
    color: var(--text-dark);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

#article-content h4 {
    color: var(--text-dark);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

#article-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

#article-content ul, 
#article-content ol {
    margin: 15px 0 15px 20px;
}

#article-content li {
    margin-bottom: 8px;
}

#article-content strong {
    font-weight: 600;
}

/* App-specific background colors for individual pages */
body.mastermind-page {
    background-color: #ebf3fd;
}

body.plants-page {
    background-color: #ebfaf0;
}

body.sellsmart-page {
    background-color: #fdf0ed;
}

@media screen and (max-width: 768px) {
    .app-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .article-cards {
        grid-template-columns: 1fr;
    }
}