/*
Theme Name: GeneratePress Child - Atari 2600
Theme URI: https://2600games.com
Description: Custom child theme for Atari 2600 game database
Author: Alex Reeves
Template: generatepress
Version: 1.4.0
*/

/* ============================================
   GOOGLE FONTS - UPDATED TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Space+Mono:wght@400;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* ============================================
   BASE TYPOGRAPHY
   ============================================ */
body {
    font-family: 'IBM Plex Sans', sans-serif;
}

/* ============================================
   SITE TITLE - CHAKRA PETCH FONT
   ============================================ */

.site-title,
.main-title,
.site-logo .site-title,
header .site-title {
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 700;
}

/* Optional: If you want to style it more like your game titles */
.site-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #e74c3c;
}

/* ============================================
   ATARI GAME SINGLE PAGE STYLES
   ============================================ */

/* Game Header - Version 3, Variation 8 (Screenshot with Title Overlay) */
.atari-game-header {
    margin-bottom: 0;
}

/* Screenshot Header Variant */
.atari-header-screenshot {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    margin-bottom: 0;
    overflow: hidden;
}

/* Screenshot Background */
.header-screenshot-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-screenshot-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient overlay - only lower 1/3 for title readability */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0) 60%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 2;
}

/* Title on screenshot - bottom left */
.atari-header-screenshot .atari-game-title {
    position: relative;
    z-index: 3;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    text-align: left;
}

/* Meta section below screenshot */
.atari-game-meta-section {
    padding: 30px 0;
    border-bottom: 3px solid #e74c3c;
    margin-bottom: 40px;
}

/* Meta Badges - back to original position below header */
.atari-meta-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background: #3498db;
    transition: transform 0.2s ease;
}

.meta-badge:hover {
    transform: translateY(-2px);
}

.badge-year {
    background: #e74c3c;
}

.badge-developer {
    background: #3498db;
}

.badge-genre {
    background: #9b59b6;
}

/* Game Excerpt - back below header */
.atari-game-excerpt {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-top: 0;
}

/* Content Grid Layout */
.atari-game-content-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    margin-top: 40px;
}

/* Main Content */
.atari-main-content {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.atari-main-content p {
    margin-bottom: 20px;
}

.atari-main-content p:first-of-type::first-letter {
    font-size: 3.5em;
    line-height: 0.8;
    float: left;
    margin: 5px 10px 0 0;
    font-weight: bold;
    color: #e74c3c;
}

/* Sidebar */
.atari-game-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

/* Info Box - Contains box art, title, cart code, and data */
.game-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* Box art inside info box */
.game-info-box .box-art-container {
    margin-bottom: 20px;
}

.game-info-box .box-art-container img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sidebar header (title + cart code) inside info box */
.game-info-box .sidebar-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3498db;
}

.game-info-box .sidebar-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.game-info-box .sidebar-cart-code {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Definition List Styling */
.game-details {
    margin: 0;
}

.game-details dt {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.game-details dt:first-child {
    margin-top: 0;
}

.game-details dd {
    font-family: 'IBM Plex Sans', sans-serif;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
}

.game-details dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Game Images (outside info box) */
.game-images {
    margin-top: 30px;
}

.game-image-item {
    margin-bottom: 25px;
}

.game-image-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-image-item img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.game-image-item figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE DESIGN - SINGLE GAME PAGE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .atari-game-content-grid {
        grid-template-columns: 65% 35%;
        gap: 30px;
    }

    .atari-header-screenshot .atari-game-title {
        font-size: 40px;
    }

    .atari-header-screenshot {
        height: 350px;
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .atari-game-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .atari-game-sidebar {
        position: static;
    }

    .atari-header-screenshot .atari-game-title {
        font-size: 32px;
    }

    .atari-game-excerpt {
        font-size: 18px;
    }

    .atari-main-content {
        font-size: 16px;
    }

    .game-info-box {
        padding: 20px;
    }

    .atari-header-screenshot {
        height: 300px;
        padding: 25px;
    }

    .atari-game-meta-section {
        padding: 25px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .atari-header-screenshot .atari-game-title {
        font-size: 28px;
    }

    .meta-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .game-info-box .sidebar-title {
        font-size: 20px;
    }

    .atari-header-screenshot {
        height: 250px;
        padding: 20px;
    }

    .atari-game-excerpt {
        font-size: 16px;
    }

    .atari-game-meta-section {
        padding: 20px 0;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .atari-meta-badges,
    .game-images {
        display: none;
    }

    .atari-game-content-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ATARI GAMES ARCHIVE PAGE STYLES
   ============================================ */

/* Archive Header */
.atari-archive-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.atari-archive-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #e74c3c;
}

.archive-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.archive-description {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Games Grid */
.atari-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Game Card */
.atari-game-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atari-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.game-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card Image */
.game-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 133%; /* 3:4 aspect ratio for box art */
    background: #ecf0f1;
    overflow: hidden;
}

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

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

/* Placeholder for games without images */
.game-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-text {
    font-size: 64px;
    opacity: 0.3;
}

/* Year Badge */
.game-card-year {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Card Content */
.game-card-content {
    padding: 20px;
}

.game-card-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.atari-game-card:hover .game-card-title {
    color: #e74c3c;
}

/* Card Meta */
.game-card-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.game-card-developer,
.game-card-genre {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 600;
}

.game-card-developer {
    background: #3498db;
    color: white;
}

.game-card-genre {
    background: #9b59b6;
    color: white;
}

/* Programmer */
.game-card-programmer {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.game-card-programmer strong {
    color: #2c3e50;
}

/* Excerpt */
.game-card-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Pagination */
.atari-archive-pagination {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
}

.atari-archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.atari-archive-pagination a,
.atari-archive-pagination .current {
    display: inline-block;
    padding: 10px 18px;
    background: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.atari-archive-pagination a:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.atari-archive-pagination .current {
    background: #e74c3c;
    color: white;
}

/* No Games Found */
.no-games-found {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-games-found h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* ============================================
   RESPONSIVE DESIGN - ARCHIVE
   ============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    .atari-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .atari-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .archive-title {
        font-size: 40px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .atari-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .archive-title {
        font-size: 32px;
    }

    .archive-description {
        font-size: 18px;
    }

    .game-card-content {
        padding: 15px;
    }

    .game-card-title {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .atari-games-grid {
        grid-template-columns: 1fr;
    }

    .archive-title {
        font-size: 28px;
    }

    .atari-archive-wrapper {
        padding: 20px 15px;
    }
}

/* ============================================
   HOMEPAGE STYLES
   ============================================ */

.atari-homepage {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
    z-index: 1;
}

.hero-icon {
    font-size: 300px;
    display: block;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Games Section */
.featured-games-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.featured-game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.featured-game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-game-image {
    position: relative;
    width: 100%;
    padding-bottom: 133%;
    background: #ecf0f1;
    overflow: hidden;
}

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

.featured-game-card:hover .featured-game-image img {
    transform: scale(1.08);
}

.featured-game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 80px;
    opacity: 0.5;
}

.featured-game-year {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.featured-game-content {
    padding: 25px;
}

.featured-game-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-game-programmer {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.featured-game-programmer strong {
    color: #2c3e50;
}

.featured-game-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.featured-game-readmore {
    color: #e74c3c;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.featured-game-card:hover .featured-game-readmore {
    color: #c0392b;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

.browse-all-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.browse-all-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Unique Value Section */
.unique-value-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.unique-value-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.value-prop {
    text-align: center;
    padding: 30px;
}

.value-prop-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.value-prop-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-prop-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Browse Categories Section */
.browse-categories-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.browse-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.category-description {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 600;
}

.stats-footnote {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

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

.final-cta-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.final-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ============================================
   RESPONSIVE - HOMEPAGE
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        font-size: 18px;
        padding: 15px 35px;
    }

    .section-title {
        font-size: 32px;
    }

    .featured-games-section,
    .unique-value-section,
    .browse-categories-section,
    .stats-section {
        padding: 50px 20px;
    }

    .featured-games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .browse-categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .stat-number {
        font-size: 48px;
    }

    .final-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .browse-categories-grid {
        grid-template-columns: 1fr;
    }
}
