/* ==========================================================================
   SALES PAGE STYLES - TopVelocity Homepage
   High-Converting Sales Page Design v2.1
   ========================================================================== */

/* ==========================================================================
   HERO SECTION - NO GAP AT TOP
   ========================================================================== */
.tv-sales-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 50%, #c41e3a 100%);
    overflow: hidden;
    padding: 20px 0 80px; /* Reduced top padding - NO GAP */
    margin-top: -1px; /* Ensure no gap from header */
}

.tv-sales-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.tv-sales-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(196, 30, 58, 0.8) 100%);
}

.tv-sales-hero .tv-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Layout - Side by Side */
.tv-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tv-sales-hero-content {
    text-align: left;
}

/* Trust Badge */
.tv-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 25px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.tv-trust-badge-icon {
    font-size: 18px;
}

/* Headlines */
.tv-sales-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tv-sales-subheadline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Dual CTA Buttons */
.tv-dual-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.tv-btn-xl {
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.tv-btn-cta-primary {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
}

.tv-btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.5);
    color: white;
}

.tv-btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tv-btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.tv-btn-icon {
    font-size: 20px;
}

.tv-btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tv-btn:hover .tv-btn-arrow {
    transform: translateX(5px);
}

/* Mini Stats in Hero */
.tv-hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.tv-mini-stat {
    display: flex;
    flex-direction: column;
    color: white;
}

.tv-mini-stat strong {
    font-size: 1.4rem;
    font-weight: 700;
}

.tv-mini-stat span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.tv-mini-stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Video */
.tv-hero-video {
    position: relative;
}

.tv-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.tv-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Scroll Indicator */
.tv-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================================================
   SOCIAL PROOF BAR
   ========================================================================== */
.tv-social-proof-bar {
    background: var(--tv-secondary);
    padding: 25px 0;
    border-bottom: 3px solid var(--tv-primary);
}

.tv-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tv-proof-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.tv-partner-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tv-logo-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 10px 20px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.tv-section-eyebrow {
    display: inline-block;
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tv-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tv-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--tv-text);
}

.tv-section-subtitle {
    font-size: 1.125rem;
    color: var(--tv-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */
.tv-problem-section {
    background: var(--tv-bg);
}

.tv-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tv-problem-card {
    background: white;
    border-radius: var(--tv-radius);
    padding: 35px;
    border-left: 4px solid #ef4444;
    box-shadow: var(--tv-shadow);
    transition: var(--tv-transition);
}

.tv-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tv-shadow-lg);
}

.tv-problem-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.tv-problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--tv-text);
}

.tv-problem-card p {
    color: var(--tv-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   SOLUTION SECTION
   ========================================================================== */
.tv-solution-section {
    background: white;
}

.tv-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tv-solution-card {
    position: relative;
    background: var(--tv-bg);
    border-radius: var(--tv-radius);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--tv-transition);
}

.tv-solution-card:hover {
    border-color: var(--tv-primary);
    transform: translateY(-5px);
    box-shadow: var(--tv-shadow-lg);
}

.tv-solution-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--tv-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.tv-solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tv-solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tv-solution-card p {
    color: var(--tv-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tv-solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tv-solution-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--tv-text);
    font-size: 15px;
}

.tv-solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tv-success);
    font-weight: bold;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.tv-video-section {
    background: var(--tv-bg);
}

.tv-featured-video {
    max-width: 900px;
    margin: 0 auto;
}

.tv-video-large {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   CHOOSE YOUR PATH SECTION
   ========================================================================== */
.tv-path-section {
    background: linear-gradient(180deg, white 0%, var(--tv-bg) 100%);
}

.tv-path-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.tv-path-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--tv-transition);
    overflow: hidden;
}

.tv-path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Player Card Styling */
.tv-path-player {
    border: 3px solid var(--tv-primary);
}

.tv-path-player .tv-path-badge {
    background: var(--tv-primary);
    color: white;
}

.tv-btn-player {
    background: var(--tv-primary);
    color: white;
    border: none;
    text-decoration: none;
    text-align: center;
}

.tv-btn-player:hover {
    background: var(--tv-primary-dark);
    color: white;
}

/* Org Card Styling */
.tv-path-org {
    border: 3px solid var(--tv-secondary);
}

.tv-path-badge-org {
    background: var(--tv-secondary) !important;
}

.tv-btn-org {
    background: var(--tv-secondary);
    color: white;
    border: none;
    text-decoration: none;
    text-align: center;
}

.tv-btn-org:hover {
    background: var(--tv-secondary-dark);
    color: white;
}

.tv-path-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--tv-primary);
    color: white;
    padding: 8px 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.tv-path-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.tv-path-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.tv-path-description {
    color: var(--tv-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tv-path-plan-name {
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.tv-path-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.tv-path-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid var(--tv-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tv-path-benefits li:last-child {
    border-bottom: none;
}

.tv-check {
    color: var(--tv-success);
    font-weight: bold;
    font-size: 18px;
}

.tv-path-pricing {
    text-align: center;
    margin-bottom: 10px;
}

.tv-price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--tv-text);
}

.tv-price-amount sup {
    font-size: 1.5rem;
    position: relative;
    top: -15px;
}

.tv-price-period {
    color: var(--tv-text-light);
    font-size: 18px;
}

.tv-path-pricing-note {
    text-align: center;
    color: var(--tv-text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.tv-path-guarantee {
    text-align: center;
    color: var(--tv-text-lighter);
    font-size: 13px;
    margin-top: 15px;
}

/* Organization Tiers */
.tv-org-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.tv-org-tier {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 15px;
    background: var(--tv-bg);
    border-radius: 10px;
    position: relative;
}

.tv-org-tier-popular {
    background: var(--tv-primary);
    color: white;
}

.tv-tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.tv-tier-name {
    font-weight: 600;
}

.tv-tier-price {
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
}

.tv-tier-price small {
    font-size: 0.75rem;
    font-weight: 400;
}

.tv-tier-players {
    font-size: 0.85rem;
    text-align: right;
    opacity: 0.8;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.tv-features-section {
    background: var(--tv-bg);
}

.tv-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tv-feature-item {
    background: white;
    border-radius: var(--tv-radius);
    padding: 35px;
    text-align: center;
    transition: var(--tv-transition);
}

.tv-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--tv-shadow-lg);
}

.tv-feature-item .tv-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tv-feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.tv-feature-item p {
    color: var(--tv-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.tv-testimonials-section {
    background: white;
}

/* Testimonial Grid */
.tv-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.tv-testimonial-card {
    background: var(--tv-bg);
    border-radius: var(--tv-radius);
    padding: 35px;
    position: relative;
}

.tv-testimonial-velocity {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--tv-success);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.tv-testimonial-card p {
    font-style: italic;
    color: var(--tv-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tv-testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--tv-text);
}

.tv-testimonial-author span {
    color: var(--tv-text-light);
    font-size: 14px;
}

/* Organization Testimonials */
.tv-org-testimonials {
    background: var(--tv-secondary);
    border-radius: 20px;
    padding: 50px;
}

.tv-org-testimonials h3 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.tv-org-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tv-org-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--tv-radius);
    padding: 30px;
}

.tv-org-testimonial p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tv-org-testimonial .tv-testimonial-author strong {
    color: white;
}

.tv-org-testimonial .tv-testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.tv-comparison-section {
    background: var(--tv-bg);
}

.tv-comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--tv-radius);
    overflow: hidden;
    box-shadow: var(--tv-shadow-lg);
}

.tv-comparison-header,
.tv-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
}

.tv-comparison-header {
    background: var(--tv-secondary);
    color: white;
    font-weight: 700;
}

.tv-comparison-header > div {
    padding: 20px;
    text-align: center;
}

.tv-comparison-header .tv-comparison-feature {
    text-align: left;
}

.tv-comparison-header .tv-comparison-tv {
    background: var(--tv-primary);
}

.tv-comparison-row > div {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--tv-border);
}

.tv-comparison-row .tv-comparison-feature {
    text-align: left;
    font-weight: 500;
}

.tv-comparison-row .tv-comparison-tv {
    background: var(--tv-primary-light);
}

.tv-yes {
    color: var(--tv-success);
    font-size: 20px;
    font-weight: bold;
}

.tv-no {
    color: var(--tv-error);
    font-size: 20px;
}

.tv-partial {
    color: var(--tv-warning);
    font-size: 20px;
}

.tv-comparison-price .tv-comparison-tv {
    font-weight: 700;
    color: var(--tv-primary-dark);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.tv-faq-section {
    background: white;
}

.tv-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tv-faq-item {
    border-bottom: 1px solid var(--tv-border);
}

.tv-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--tv-text);
    transition: var(--tv-transition);
}

.tv-faq-question:hover {
    color: var(--tv-primary);
}

.tv-faq-icon {
    font-size: 24px;
    color: var(--tv-primary);
    transition: transform 0.3s ease;
}

.tv-faq-item.active .tv-faq-icon {
    transform: rotate(45deg);
}

.tv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tv-faq-item.active .tv-faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.tv-faq-answer p {
    color: var(--tv-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.tv-final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    padding: 100px 0;
}

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

.tv-final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.tv-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.tv-btn-white {
    background: white;
    color: var(--tv-primary);
    border: none;
}

.tv-btn-white:hover {
    background: var(--tv-bg);
    color: var(--tv-primary-dark);
}

.tv-btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.tv-btn-outline-white:hover {
    background: white;
    color: var(--tv-primary);
}

.tv-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.tv-guarantee-icon {
    font-size: 24px;
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.tv-blog-section {
    background: var(--tv-bg);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .tv-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tv-sales-hero-content {
        text-align: center;
    }
    
    .tv-dual-cta {
        justify-content: center;
    }
    
    .tv-hero-mini-stats {
        justify-content: center;
    }
    
    .tv-sales-headline {
        font-size: 2.75rem;
    }
    
    .tv-solution-grid,
    .tv-path-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .tv-features-grid,
    .tv-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tv-comparison-table {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .tv-sales-hero {
        min-height: auto;
        padding: 30px 0 60px;
    }
    
    .tv-sales-headline {
        font-size: 2rem;
    }
    
    .tv-sales-subheadline {
        font-size: 1rem;
    }
    
    .tv-dual-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .tv-btn-xl {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .tv-hero-mini-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .tv-mini-stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .tv-section-header h2 {
        font-size: 1.75rem;
    }
    
    .tv-problem-grid,
    .tv-features-grid,
    .tv-testimonials-grid,
    .tv-org-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tv-path-card {
        padding: 40px 25px;
    }
    
    .tv-path-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .tv-org-tier {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5px;
    }
    
    .tv-tier-players {
        text-align: center;
    }
    
    .tv-comparison-header,
    .tv-comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 12px;
    }
    
    .tv-comparison-header > div,
    .tv-comparison-row > div {
        padding: 12px 8px;
    }
    
    .tv-final-cta h2 {
        font-size: 2rem;
    }
    
    .tv-org-testimonials {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .tv-trust-badge {
        font-size: 11px;
        padding: 8px 14px;
    }
    
    .tv-trust-badge span:last-child {
        display: none;
    }
    
    .tv-sales-headline {
        font-size: 1.6rem;
    }
    
    .tv-price-amount {
        font-size: 2.5rem;
    }
    
    .tv-comparison-table {
        font-size: 11px;
    }
    
    .tv-comparison-header .tv-comparison-other:last-child,
    .tv-comparison-row .tv-comparison-other:last-child {
        display: none;
    }
    
    .tv-comparison-header,
    .tv-comparison-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
