/* ==========================================================================
   OIKOITE GESTIÓN DE TORNEOS - SYSTEM DESIGN & PREMIUM STYLE SHEET
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
    --bg-primary: #080B11;
    --bg-secondary: #0F1524;
    --bg-tertiary: #172036;
    --text-primary: #FFFFFF;
    --text-secondary: #8E9BB5;
    --text-tertiary: #52607D;
    
    /* Neon Athletic Palette */
    --neon-green: #39FF14;
    --neon-green-hsl: 110, 100%, 54%;
    --neon-cyan: #00F0FF;
    --neon-cyan-hsl: 184, 100%, 50%;
    --accent-red: #FF3B30;
    
    /* Font Families */
    --font-headline: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Border Radius */
    --shadow-neon: 0 0 20px rgba(57, 255, 20, 0.25);
    --shadow-neon-cyan: 0 0 20px rgba(0, 240, 255, 0.25);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Base Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-headline);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Layout Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.text-neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* --- Button System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-headline);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-green) 0%, #15D200 100%);
    color: #000;
    box-shadow: 0 8px 30px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(57, 255, 20, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #00B2FF 100%);
    color: #000;
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.5);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* --- Main Navigation Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(8, 11, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-b: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(57, 255, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--neon-green);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-only-btn {
    display: none;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(57, 255, 20, 0.04) 50%, transparent 100%);
    z-index: -1;
    filter: blur(100px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-actions-group {
    display: flex;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* --- Smartphone Mockup Wrapper --- */
.phone-frame-container {
    width: 320px;
    max-width: 100%;
    height: 650px;
    border-radius: 40px;
    background-color: #1c1d24;
    border: 12px solid #2d313c;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

@media (max-width: 400px) {
    .phone-frame-container {
        width: 100%;
        height: auto;
        aspect-ratio: 320 / 650;
        border-width: 8px;
        border-radius: 30px;
    }
}

.phone-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10;
}

.phone-inner {
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    overflow: hidden;
    position: relative;
    border-radius: 28px;
}

@media (max-width: 400px) {
    .phone-inner {
        border-radius: 20px;
    }
}

/* --- Hero Slider Styles --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.8s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}
.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }
.slider-nav:hover { background: rgba(0,0,0,0.6); }

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

/* --- Sports Section (Universal Design) --- */
.sports-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.sport-card {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.sport-card:hover, .sport-card.active {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.15);
    background-color: rgba(23, 32, 54, 0.8);
    box-shadow: var(--shadow-neon-cyan);
}

.sport-card:hover::before, .sport-card.active::before {
    transform: scaleX(1);
}

.sport-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--neon-cyan);
    margin-bottom: 24px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: var(--transition-smooth);
}

.sport-card:hover .sport-icon, .sport-card.active .sport-icon {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: var(--shadow-neon-cyan);
}

.sport-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.sport-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Interactive Features Showcase --- */
.features-showcase {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.showcase-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.screenshot-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- Interactive Tabs --- */
.showcase-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-tab {
    border: 1px solid rgba(255, 255, 255, 0.04);
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tab-number {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-tertiary);
    transition: var(--transition-smooth);
}

.feature-tab h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.tab-content {
    max-height: 0;
    opacity: 0;
    transition: var(--transition-smooth);
    margin-top: 0;
}

.tab-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tab-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.tab-features-list li i {
    color: var(--neon-green);
}

/* Active State Accordion */
.feature-tab.active {
    background-color: var(--bg-tertiary);
    border-color: rgba(57, 255, 20, 0.15);
    box-shadow: var(--shadow-neon);
}

.feature-tab.active h3 {
    color: var(--text-primary);
}

.feature-tab.active .tab-number {
    color: var(--neon-green);
}

.feature-tab.active .tab-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

/* --- Modules & Cards --- */
.modules-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.module-card {
    background: rgba(15, 21, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.module-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.08);
    background-color: rgba(23, 32, 54, 0.4);
}

.module-icon {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.module-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.module-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Call To Action & Contact Form --- */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 70%);
    z-index: -1;
    filter: blur(100px);
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Contact Form Styling */
.cta-form-container {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.cta-form h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.cta-form p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.form-group input, .form-group select {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.15);
}

.form-success-msg {
    display: none;
    background-color: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    color: var(--neon-green);
    font-weight: 600;
    text-align: center;
    margin-top: 24px;
    animation: fadeIn 0.4s ease;
}

/* --- Main Footer --- */
.main-footer {
    background-color: #05070B;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
    max-width: 360px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: #000;
    background-color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--neon-green);
    padding-left: 4px;
}

.footer-links-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links-info li i {
    color: var(--neon-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* --- Animations & Keyframes --- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* --- Responsive Adaptability --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .showcase-visual {
        order: 2;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
        word-break: break-word;
    }
    
    .hero-actions-group {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-actions-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: var(--transition-smooth);
        padding: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-only-btn {
        display: inline-flex;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-form-container {
        padding: 24px;
    }
}

/* --- Featured Card in Modules Grid --- */
.module-card.featured-card {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-media-wrapper {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: radial-gradient(circle, rgba(16, 24, 48, 0.6) 0%, rgba(5, 7, 12, 0.9) 100%);
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-media-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-card.featured-card:hover .card-media-img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .module-card.featured-card {
        grid-column: span 1;
    }
    .card-media-wrapper {
        padding: 12px;
    }
}

