/* ==========================================
   Rada Konfido LP – Styles
   Matches Konfido main site visual identity
   ========================================== */

/* === CSS Variables === */
:root {
    /* Zelené odstíny */
    --green-900: #022309;
    --green-800: #043E12;
    --green-700: #065d1b;
    --green-600: #087d24;
    --green-500: #0a9d2d;
    --green-400: #2db856;
    --green-300: #5cd37f;
    --green-200: #a8e8ba;
    --green-100: #d4f4dd;
    --green-50: #f0faf3;

    /* Zlatá pro akcenty */
    --gold-600: #b88635;
    --gold-500: #D39E40;
    --gold-400: #ddb05f;
    --gold-300: #e7c280;
    --gold-200: #f0d4a0;
    --gold-50: #fdf8ec;

    /* Neutrální barvy */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typografie */
    --font-primary: 'Tinos', Georgia, 'Times New Roman', Times, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    z-index: 1000;
    padding: var(--space-md) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo-fallback {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.header-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
}

.header-link:hover {
    color: var(--gold-400);
}

/* === Hero === */
.hero {
    margin-top: 76px;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    color: var(--white);
    padding: calc(var(--space-3xl) * 1.3) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(211, 158, 64, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 20%, rgba(4, 62, 18, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(211, 158, 64, 0.12);
    border: 1px solid rgba(211, 158, 64, 0.3);
    color: var(--gold-300);
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-400);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    gap: 0 var(--space-lg);
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    max-width: 680px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.01em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* === Buttons === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    border-bottom: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 158, 64, 0.35);
    background: linear-gradient(135deg, var(--gold-600) 0%, #a77429 100%);
    border-bottom: none;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
    display: flex;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* === Sections === */
.section-light {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.section-light:nth-of-type(even) {
    background: var(--green-50);
}

.section-green {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green-800);
    text-align: center;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1875rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.65;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.88);
}

/* === Two-col grid (Proc sekce) === */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 960px;
    margin: 0 auto;
}

/* === Feature Cards === */
.feature-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--green-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-800), var(--gold-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--gold-400);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-800), var(--green-900));
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 12px rgba(4, 62, 18, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* === Benefits Grid === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-500), var(--gold-300));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(211, 158, 64, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(211, 158, 64, 0.15);
    border: 1px solid rgba(211, 158, 64, 0.25);
    color: var(--gold-400);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.benefit-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

/* === Pricing === */
.pricing-wrapper {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
    max-width: 1060px;
    margin: 0 auto;
}

.pricing-left {
    flex: 1;
    padding-top: var(--space-md);
}

.pricing-left h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: var(--space-sm);
}

.pricing-left p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pricing-list li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 2px;
}

.pricing-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.pricing-list li strong {
    color: var(--gray-800);
    display: block;
    font-size: 1rem;
}

.pricing-list li span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Pricing Card */
.pricing-card {
    flex: 0 0 420px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--green-100);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-800), var(--gold-500));
}

.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.pricing-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--green-800);
}

.pricing-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    background: rgba(211, 158, 64, 0.12);
    color: var(--gold-600);
    border: 1px solid rgba(211, 158, 64, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    padding: 4px;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.billing-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.billing-btn.active {
    background: linear-gradient(135deg, var(--green-800), var(--green-900));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.discount-badge {
    background: rgba(10, 157, 45, 0.15);
    color: var(--green-600);
    font-size: 0.75rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    font-weight: 700;
}

.billing-btn.active .discount-badge {
    background: rgba(212, 244, 221, 0.2);
    color: var(--green-200);
}

/* Price Display */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: var(--space-xs);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--green-800);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-meta {
    display: flex;
    flex-direction: column;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-700);
}

.price-period {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.price-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

/* Pricing Includes */
.pricing-includes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: var(--green-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-100);
}

.pricing-include-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.pricing-include-item svg {
    color: var(--green-600);
    flex-shrink: 0;
}

.pricing-include-item strong {
    color: var(--green-800);
}

.pricing-footer-note {
    font-size: 0.8125rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: var(--space-sm);
}

/* === Hall of Fame === */
.hof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.hof-grid-single {
    grid-template-columns: 360px;
    justify-content: center;
}

.hof-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition);
}

.hof-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(211, 158, 64, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.hof-card-cta {
    border: 1px dashed rgba(211, 158, 64, 0.4);
    background: rgba(211, 158, 64, 0.04);
}

.hof-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
    margin: 0 auto var(--space-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hof-avatar-empty {
    background: rgba(211, 158, 64, 0.15);
    border: 2px dashed rgba(211, 158, 64, 0.4);
    color: var(--gold-400);
    box-shadow: none;
}

.hof-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.hof-date {
    font-size: 0.8125rem;
    color: var(--gold-400);
    letter-spacing: 0.03em;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    font-weight: 600;
}

.hof-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

/* === CTA Section === */
.section-cta {
    padding: var(--space-3xl) 0;
    background: var(--green-50);
}

.cta-box {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    border-radius: var(--radius-2xl);
    padding: calc(var(--space-3xl) * 0.9) var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(2, 35, 9, 0.25);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 158, 64, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: var(--space-xl);
    line-height: 1.65;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.cta-footer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
}

/* === Footer === */
.footer {
    background: var(--green-900);
    padding: var(--space-xl) 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-text a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: underline;
}

.footer-text a:hover {
    color: var(--gold-400);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-wrapper {
        flex-direction: column;
    }

    .pricing-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 3.5rem;
    }

    /* Header */
    .header-inner {
        padding: 0 var(--space-sm);
    }

    /* Two-col grid */
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    /* Hero – hero actions stack vertically */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Hero stats – swap to simple 3-col flex, hide dividers */
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
        padding: var(--space-md) var(--space-sm);
        max-width: 100%;
    }

    .hero-stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* HoF */
    .hof-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-card {
        max-width: 100%;
        padding: var(--space-lg);
    }

    .pricing-left {
        padding-top: 0;
    }

    /* CTA buttons */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-ghost {
        width: 100%;
        max-width: 340px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-lg) var(--space-md);
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hof-grid {
        grid-template-columns: 1fr;
    }
}