/**
 * FMD WORKERS - Premium Million-Dollar Design System
 * Professional NGO-style marketplace with luxury aesthetics
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Premium Color Palette */
    --primary-blue: #0f2557;
    --primary-blue-light: #1e3a8a;
    --primary-blue-dark: #0a1835;
    --royal-blue: #1e40af;
    --sky-blue: #3b82f6;

    --gold-accent: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;

    --pure-white: #ffffff;
    --off-white: #f8fafc;
    --light-grey: #f1f5f9;
    --grey-medium: #94a3b8;
    --grey-dark: #475569;
    --charcoal: #1e293b;

    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0f2557 0%, #1e40af 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #0a1835 0%, #1e3a8a 50%, #3b82f6 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(15, 37, 87, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Shadows - Professional & Deep */
    --shadow-sm: 0 2px 8px rgba(15, 37, 87, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 37, 87, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 37, 87, 0.16);
    --shadow-xl: 0 12px 48px rgba(15, 37, 87, 0.24);
    --shadow-2xl: 0 24px 64px rgba(15, 37, 87, 0.32);
    --shadow-gold: 0 8px 32px rgba(245, 158, 11, 0.3);

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: linear-gradient(to bottom, var(--pure-white) 0%, var(--off-white) 100%);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue-dark);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--grey-dark);
}

a {
    color: var(--royal-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-accent);
    transform: translateY(-1px);
}

/* ==================== CONTAINER & LAYOUT ==================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.row {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.col {
    flex: 1;
    min-width: 250px;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1400px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold-accent);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-brand {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.75rem;
    color: var(--gold-accent);
}

/* Mobile Toggle (Hamburger) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover span {
    background: var(--gold-accent);
}

/* Navigation Menu */
.navbar-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
}

.navbar-nav>li {
    position: relative;
}

.nav-link {
    color: var(--primary-blue-dark);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.nav-link:hover {
    background: var(--light-grey);
    color: var(--gold-accent);
}

/* Dropdown Menus */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i.bi-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i.bi-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2xl);
    min-width: 240px;
    padding: var(--spacing-xs) 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(15, 37, 87, 0.1);
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a i {
    font-size: 1.1rem;
    color: var(--royal-blue);
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--light-grey) 0%, var(--pure-white) 100%);
    color: var(--gold-accent);
    padding-left: 1.5rem;
}

.dropdown-menu a:hover i {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--light-grey);
    margin: var(--spacing-xs) 0;
}

/* CTA Buttons in Navbar */
.navbar-nav .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 320px;
        max-width: 90%;
        background: var(--pure-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-2xl);
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .navbar-nav.active {
        right: 0;
    }

    .navbar-nav>li {
        width: 100%;
        border-bottom: 1px solid var(--light-grey);
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 0;
        padding-left: var(--spacing-md);
        background: var(--off-white);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        padding-top: 0;
        padding-bottom: 0;
        border: none;
    }

    /* Show dropdown when parent has active class */
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding-top: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        border-top: 2px solid var(--gold-accent);
        margin-top: var(--spacing-xs);
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        padding-left: 1.25rem;
        background: rgba(15, 37, 87, 0.05);
    }

    .navbar-nav .btn {
        width: 100%;
        margin-left: 0;
        margin-top: var(--spacing-sm);
        justify-content: center;
    }
}


/* ==================== HERO SECTION ==================== */
.hero {
    background: var(--gradient-hero);
    color: var(--pure-white);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--pure-white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== CARDS ==================== */
.card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 37, 87, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold-accent);
}

.card-header {
    background: var(--gradient-primary);
    color: var(--pure-white);
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 600;
    border-bottom: 3px solid var(--gold-accent);
}

.card-body {
    padding: var(--spacing-lg);
}

/* Premium Worker Cards */
.worker-card {
    position: relative;
    overflow: hidden;
    background: var(--pure-white);
}

.worker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.worker-card:hover::before {
    transform: scaleX(1);
}

.worker-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.worker-card:hover img {
    transform: scale(1.05);
}

.worker-card-body {
    padding: var(--spacing-md);
}

.worker-card h5 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-blue-dark);
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin: var(--spacing-sm) 0;
}

.location {
    color: var(--grey-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--pure-white);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--pure-white);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--pure-white);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ==================== BADGES ==================== */
.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.badge-verified {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--pure-white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.badge-featured {
    background: var(--gradient-gold);
    color: var(--pure-white);
    box-shadow: var(--shadow-gold);
}

.badge-skill {
    background: var(--light-grey);
    color: var(--primary-blue);
    border: 1px solid var(--grey-medium);
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-md);
    background: var(--pure-white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==================== ALERTS ==================== */
.alert {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid;
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left-color: var(--success);
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left-color: var(--error);
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-left-color: var(--warning);
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e3a8a;
    border-left-color: var(--royal-blue);
}

/* ==================== TRUST ELEMENTS ==================== */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    color: var(--primary-blue-dark);
    border: 2px solid var(--gold-accent);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--gold-accent);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gradient-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    margin-top: var(--spacing-2xl);
    box-shadow: 0 -4px 24px rgba(15, 37, 87, 0.2);
}

.footer h5 {
    color: var(--pure-white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--gold-light);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: var(--grey-medium);
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-danger {
    color: var(--error);
}

.text-gold {
    color: var(--gold-accent);
}

.mb-2 {
    margin-bottom: var(--spacing-xs);
}

.mb-3 {
    margin-bottom: var(--spacing-sm);
}

.mb-4 {
    margin-bottom: var(--spacing-md);
}

.mb-5 {
    margin-bottom: var(--spacing-lg);
}

.mt-2 {
    margin-top: var(--spacing-xs);
}

.mt-3 {
    margin-top: var(--spacing-sm);
}

.mt-4 {
    margin-top: var(--spacing-md);
}

.mt-5 {
    margin-top: var(--spacing-lg);
}

.mr-2 {
    margin-right: var(--spacing-xs);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-size: 1000px 100%;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .btn-lg {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ==================== PREMIUM EFFECTS ==================== */
.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glow {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* ============================================================
   SERVICE CARDS - Professional Services Section
   ============================================================ */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--light-grey);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
    margin: 0.75rem 0 0.5rem;
    color: var(--primary-blue-dark);
    font-size: 1.125rem;
    font-weight: 600;
}

.service-card p {
    margin: 0;
    color: var(--grey-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Grid for 5 columns */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .grid-5 {
        grid-template-columns: 1fr;
    }
}