/**
 * Front Page Styles - TestPermis.fr
 * Palette basée sur le logo: Turquoise (#2DD4BF), Gris (#374151)
 * Theme: Cobra - Refonte 2026
 */

/* ==============================
   Variables CSS
============================== */
:root {
    --primary-color: #2DD4BF;
    --primary-dark: #14B8A6;
    --primary-light: #5EEAD4;
    --secondary-color: #374151;
    --secondary-dark: #1F2937;
    --secondary-light: #6B7280;
    --accent-color: #0D9488;
    --background-light: #F0FDFA;
    --background-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #9CA3AF;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ==============================
   Header Styles
============================== */


.the-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.the-header #logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.the-header #logo .site-logo {
    height: 45px;
    width: auto;
}

.the-header #logo .site-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.the-header .navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.the-header .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.the-header .auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.the-header .login-button {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.the-header .login-button:hover {
    color: var(--primary-color);
    background: var(--background-light);
}

.the-header .register-button {
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.the-header .register-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==============================
   Hero Section
============================== */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, #CCFBF1 50%, var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white !important;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(45, 212, 191, 0.4);
}

.btn-primary-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.5);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--secondary-color) !important;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-secondary-hero:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Hero Cards Grid */
.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, #CCFBF1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.hero-card:hover .hero-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-card-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-card:hover .hero-card-icon i {
    color: white;
}

.hero-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}

.hero-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.hero-card-btn {
    display: inline-block;
    background: var(--secondary-dark);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.hero-card:hover .hero-card-btn {
    background: var(--primary-color);
}

/* ==============================
   How It Works Section
============================== */
.how-it-works-section {
    padding: 100px 0;
    background: var(--background-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--background-light);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-dark));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 120px;
    height: 120px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.step-number span {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.step-number i {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ==============================
   Statistics Section
============================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232DD4BF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(45, 212, 191, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-number span {
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==============================
   Testimonials Section
============================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    color: var(--primary-light);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FBBF24;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--background-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    margin-top: 8px;
}

.testimonial-badge i {
    color: var(--success-color);
}

/* ==============================
   Blog Section
============================== */
.blog-section {
    padding: 100px 0;
    background: var(--background-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-card-meta i {
    color: var(--primary-color);
    margin-right: 6px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
}

.blog-cta {
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

/* ==============================
   Footer
============================== */
.the-footer {
    background: var(--secondary-dark);
    color: white;
    padding: 80px 0 30px !important;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .site-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand .site-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column ul li a i {
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover i {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ==============================
   Responsive Styles
============================== */
@media (max-width: 1024px) {
    .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .the-header {
        padding: 10px 0 !important;
    }
    
    .the-header .container {
        flex-wrap: wrap;
        padding: 0 15px;
    }
    
    .the-header #logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .the-header #logo .site-logo {
        height: 35px;
    }
    
    .the-header #logo .site-name {
        font-size: 16px;
    }
    
    .the-header .navbar {
        order: 3;
        width: 100%;
        padding: 0;
    }
    
    .the-header .navbar-toggler {
        order: 2;
        border: 2px solid var(--primary-color);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }
    
    .the-header .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .the-header .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        background: var(--background-light);
        border-radius: var(--radius-md);
    }
    
    .the-header .navbar-nav {
        gap: 5px;
    }
    
    .the-header .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: var(--radius-sm);
    }
    
    .the-header .navbar-nav .nav-link:hover {
        background: white;
    }
    
    .the-header .auth-buttons {
        order: 2;
        gap: 8px;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .the-header .login-button {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .the-header .login-button span {
        display: inline !important;
    }
    
    .the-header .register-button {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .the-header .register-button span {
        display: inline !important;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-cards-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 16px;
        padding: 0 15px;
    }
    
    .hero-card {
        padding: 24px 16px;
    }
    
    .hero-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-card-icon i {
        font-size: 28px;
    }
    
    /* How it works Mobile */
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .step-number {
        width: 100px;
        height: 100px;
    }
    
    .step-number span {
        font-size: 40px;
    }
    
    /* Stats Mobile */
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    /* Blog Mobile */
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    /* Footer Mobile */
    .the-footer {
        padding: 50px 0 20px !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-brand .site-name {
        font-size: 20px;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .the-header #logo .site-name {
        display: none;
    }
    
    .the-header .auth-buttons {
        gap: 6px;
    }
    
    .the-header .login-button {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .the-header .register-button {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
