/* ============================================
   STORM — Aggressive Electric Dark Template
   Unique: Tabbed Slots + Fade Carousel Providers
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Title (Angular left-bar accent) --- */
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    position: relative;
    padding-left: 18px;
    color: var(--text-heading);
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: var(--accent);
    border-radius: 0;
}

/* --- Buttons (Angular, sharp) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border-radius: var(--radius);
    white-space: nowrap;
    gap: 8px;
}

.btn--primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--primary:hover {
    background: var(--accent-light);
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--accent-light);
    border: 2px solid rgba(0, 102, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(0, 102, 255, 0.08);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn--lg {
    padding: 14px 38px;
    font-size: 15px;
}

.btn--pulse {
    animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 16px var(--accent-glow); }
    50% { box-shadow: 0 4px 32px rgba(0, 102, 255, 0.45), 0 0 48px rgba(51, 136, 255, 0.15); }
}

/* ========================================
   HEADER — Full Nav Bar (Logo + Nav Left, Actions Right)
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--bg-header);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-dim);
    transition: all var(--transition);
}

.header--scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__logo img {
    height: 36px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 4px;
}

.header__nav-link {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.header__nav-link:hover {
    color: var(--text-heading);
}

.header__nav-link:hover::after {
    width: 70%;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   MOBILE MENU (Outside header)
   ======================================== */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-menu__link {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    color: var(--text-heading);
    background: rgba(0, 102, 255, 0.06);
    border-left-color: var(--accent);
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__actions .btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
}

.mobile-menu__lang {
    margin-top: auto;
    padding: 16px 0;
}

/* ========================================
   HERO — Split Layout with Lightning
   ======================================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 48px) 0 64px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 70%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

/* Diagonal cut at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-primary);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

.hero__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero__content {
    flex: 1;
}

.hero__title {
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero__title span,
.hero__title em {
    color: var(--accent);
    font-style: normal;
}

.hero__desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__visual {
    display: none;
}

/* ========================================
   TABS — Underline-style Active Indicator
   ======================================== */
.slots-section {
    padding: 72px 0 64px;
}

.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border-dim);
    position: relative;
}

.tab {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: all var(--transition);
}

.tab:hover {
    color: var(--text-primary);
}

.tab.active {
    color: var(--accent);
}

.tab.active::after {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* --- Tab Content (fade transition) --- */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* ========================================
   SLOT CARDS — Angular, Minimal
   ======================================== */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.slot-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 102, 255, 0.15);
}

.slot-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #070f1e;
}

.slot-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slot-card:hover .slot-card__img img {
    transform: scale(1.06);
}

.slot-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .slot-card__overlay {
    opacity: 1;
}

.slot-card__play-btn {
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: var(--radius);
}

.slot-card__info {
    padding: 10px 12px;
}

.slot-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

/* ========================================
   PROVIDERS — Fade Carousel with Auto-scroll
   ======================================== */
.providers-section {
    padding: 48px 0 64px;
}

.providers-carousel-wrap {
    position: relative;
}

.providers-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    min-height: 56px;
    position: relative;
}

.provider-slide {
    flex: 0 0 calc(16.666% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.92);
}

.provider-slide.visible {
    opacity: 1;
    transform: scale(1);
}

.provider-slide.hidden {
    display: none;
}

.provider-slide img {
    height: 26px;
    width: auto;
    opacity: 0.7;
    filter: brightness(1.1) grayscale(0.2);
    transition: all var(--transition);
}

.provider-slide:hover img {
    opacity: 1;
    filter: brightness(1.3) grayscale(0);
}

.provider-slide:hover {
    border-color: rgba(0, 102, 255, 0.15);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: var(--radius);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 5;
}

.carousel-arrow:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-arrow--prev {
    left: -48px;
}

.carousel-arrow--next {
    right: -48px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background: rgba(0, 102, 255, 0.3);
}

/* ========================================
   CONTENT SECTIONS (BCR)
   ======================================== */
.content-sections {
    padding: 64px 0;
}

.bcr-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-dim);
}

.bcr-nav a {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(0, 102, 255, 0.04);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.bcr-nav a:hover,
.bcr-nav a.active {
    color: #ffffff;
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.2);
}

/* Content blocks */
.content-block {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-body h2,
.content-body h3,
.content-block h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-heading);
}

.content-body p,
.content-block p {
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.7;
}

.content-body a,
.content-block a {
    color: var(--accent-light);
}

.content-body a:hover,
.content-block a:hover {
    color: #ffffff;
}

.content-body table,
.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content-body table th,
.content-block table th {
    background: rgba(0, 102, 255, 0.06);
    color: var(--text-heading);
    font-weight: 700;
    text-align: left;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--border-dim);
    white-space: nowrap;
}

.content-body table td,
.content-block table td {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-primary);
    border: 1px solid var(--border-dim);
}

.content-body ol,
.content-body ul,
.content-block ol,
.content-block ul {
    padding-left: 24px;
    margin: 12px 0;
}

.content-body li,
.content-block li {
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* BCR block (spoiler-style, for compatibility) */
.bcr-block {
    padding-top: 24px;
    border-top: 1px solid var(--border-dim);
}

.bcr-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.bcr-block p {
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.7;
}

.bcr-block a {
    color: var(--accent-light);
}

.bcr-block a:hover {
    color: #ffffff;
}

.bcr-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bcr-block table th {
    background: rgba(0, 102, 255, 0.06);
    color: var(--text-heading);
    font-weight: 700;
    text-align: left;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--border-dim);
    white-space: nowrap;
}

.bcr-block table td {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-primary);
    border: 1px solid var(--border-dim);
}

.bcr-block ol,
.bcr-block ul {
    padding-left: 24px;
    margin: 12px 0;
}

.bcr-block li {
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========================================
   FAQ — Angular Accordion
   ======================================== */
.faq-section {
    padding: 64px 0;
}

.faq-item {
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    margin-bottom: 6px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 102, 255, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    gap: 16px;
    background: var(--bg-card);
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(15, 30, 53, 0.9);
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    margin: 0;
}

.faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.faq-open .faq-arrow {
    color: var(--accent);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.faq-item.faq-open .faq-answer {
    padding: 0 20px 16px;
    max-height: 600px;
}

.faq-answer p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 14px;
}

.faq-answer a {
    color: var(--accent-light);
}

.faq-answer h2,
.faq-answer h3,
.faq-answer h4 {
    color: var(--text-heading);
}

.faq-answer li {
    color: var(--text-primary);
}

.faq-answer table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}

.faq-answer table th {
    color: var(--text-heading);
    background: rgba(0, 102, 255, 0.04);
    border: 1px solid var(--border-dim);
    padding: 8px 12px;
    font-size: 13px;
}

.faq-answer table td {
    color: var(--text-primary);
    border: 1px solid var(--border-dim);
    padding: 8px 12px;
    font-size: 13px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 0;
    background: var(--bg-footer);
    border-top: 1px solid var(--border-dim);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.footer__logo img {
    height: 30px;
    width: auto;
    opacity: 0.6;
}

.footer__copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__lang {
    display: flex;
    align-items: center;
}

/* --- Lang Switcher overrides --- */
[data-lang-switcher] {
    display: flex;
    align-items: center;
    --ls-accent: #0066ff;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Wide screens: 5-col slots */
@media (min-width: 1400px) {
    .slots-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__visual {
        flex: 0 0 280px;
        height: 280px;
    }

    .header__nav-link {
        padding: 8px 10px;
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .carousel-arrow--prev {
        left: -8px;
    }

    .carousel-arrow--next {
        right: -8px;
    }
}

/* Small Tablet / Large Phone */
@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    .header__inner {
        gap: 8px;
    }

    .header__logo {
        margin-right: auto;
    }

    .header__nav {
        display: none;
    }

    .header__right .btn {
        display: none;
    }

    .header__right [data-lang-switcher] {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 32px) 0 52px;
    }

    .hero__inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        flex: 0 0 220px;
        height: 220px;
    }

    .hero::after {
        height: 40px;
    }

    .slots-section {
        padding: 48px 0;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        padding: 10px 18px;
        font-size: 12px;
    }

    .provider-slide {
        flex: 0 0 calc(25% - 9px);
    }

    .carousel-arrow {
        display: none;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__brand {
        flex-direction: column;
    }

    .bcr-nav {
        gap: 4px;
    }

    .bcr-nav a {
        padding: 6px 14px;
        font-size: 12px;
    }

    .content-block {
        padding: 18px;
    }

    .container {
        padding: 0 16px;
    }
}

/* Phone */
@media (max-width: 480px) {
    .hero__title {
        font-size: 26px;
    }

    .hero__desc {
        font-size: 14px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero__visual {
        flex: 0 0 180px;
        height: 180px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .slot-card__info {
        padding: 8px 10px;
    }

    .slot-card__name {
        font-size: 12px;
    }

    .slot-card__overlay {
        display: none;
    }

    .section-title {
        font-size: 20px;
    }

    .btn--lg {
        padding: 12px 28px;
        font-size: 14px;
    }

    .tab {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .provider-slide {
        flex: 0 0 calc(33.333% - 8px);
        padding: 10px 8px;
    }

    .provider-slide img {
        height: 22px;
    }

    .footer__copy {
        font-size: 12px;
    }

    .content-block {
        padding: 14px;
    }
}

/* Slot image type: vertical */
[data-slot-type="vertical"] .slot-card__img { aspect-ratio: 3/4; }
[data-slot-type="vertical"] .slot-card__img img { object-fit: cover; }

/* Slot image type: horizontal */
[data-slot-type="horizontal"] .slot-card__img { aspect-ratio: 16/9; }
[data-slot-type="horizontal"] .slot-card__img img { object-fit: cover; }
