/**
 * Conexlog 4.0 — Portal de aprendizado (camada compartilhada)
 * Identidade: mesmas cores, tipografia e linguagem visual das páginas originais.
 */
:root {
    --cx-blue: #00233F;
    --cx-yellow: #FFE800;
    --cx-orange: #F9A50B;
    --cx-charcoal: #121212;
    --cx-glass: rgba(255, 255, 255, 0.05);
    --cx-border: rgba(255, 255, 255, 0.1);
    --cx-header-h: 90px;
    --cx-toc-w: 260px;
}

/* ——— Hub (index) ——— */
.portal-hub-hero {
    padding: 88px 5% 56px;
    text-align: center;
    background: radial-gradient(circle at top, #00335c 0%, var(--cx-blue) 100%);
}
.portal-hub-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}
.portal-hub-hero h1 span {
    color: var(--cx-yellow);
}
.portal-hub-hero .message-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cx-glass);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--cx-border);
    line-height: 1.8;
}
.portal-hub-hero p {
    font-size: 1.2rem;
    color: #d1d1d1;
    margin-bottom: 20px;
}
.portal-hub-hero strong {
    color: var(--cx-yellow);
}
.portal-hub-hero p:last-child {
    margin-bottom: 0;
}

.portal-section {
    padding: 56px 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.portal-section-title {
    margin-bottom: 32px;
    font-size: 1.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 6px solid var(--cx-orange);
    padding-left: 20px;
    font-weight: 800;
}

.portal-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}
.portal-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--cx-border);
    color: #ccc;
}
.portal-pill em {
    font-style: normal;
    color: var(--cx-yellow);
}

.portal-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.portal-hl-card {
    background: var(--cx-glass);
    border: 1px solid var(--cx-border);
    border-radius: 24px;
    padding: 28px;
    transition: 0.35s ease;
}
.portal-hl-card:hover {
    border-color: rgba(249, 165, 11, 0.45);
    background: rgba(255, 255, 255, 0.06);
}
.portal-hl-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.portal-hl-card p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.portal-journey {
    position: relative;
    padding-left: 28px;
    border-left: 3px solid rgba(255, 232, 0, 0.35);
    margin-left: 8px;
}
.portal-step {
    position: relative;
    padding-bottom: 36px;
}
.portal-step:last-child {
    padding-bottom: 0;
}
.portal-step::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cx-blue);
    border: 3px solid var(--cx-yellow);
    box-shadow: 0 0 0 4px rgba(255, 232, 0, 0.15);
}
.portal-step.orange::before {
    border-color: var(--cx-orange);
    box-shadow: 0 0 0 4px rgba(249, 165, 11, 0.15);
}
.portal-step h4 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cx-yellow);
    margin-bottom: 8px;
}
.portal-step.orange h4 {
    color: var(--cx-orange);
}
.portal-step p {
    color: #c8c8c8;
    margin: 0 0 10px;
    line-height: 1.6;
    max-width: 640px;
}
.portal-step .portal-step-meta {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
}

.modules-grid-portal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.module-card-portal {
    background: var(--cx-glass);
    border: 1px solid var(--cx-border);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.module-card-portal:hover {
    border-color: var(--cx-orange);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}
.module-card-portal.done {
    border-color: rgba(255, 232, 0, 0.35);
}
.module-card-portal .status-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: var(--cx-yellow);
    color: var(--cx-blue);
    align-self: flex-start;
}
.module-card-portal .status-badge.orange {
    background: var(--cx-orange);
    color: var(--cx-blue);
}
.module-card-portal h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.2;
}
.module-card-portal .card-lead {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 1.05rem;
    flex-grow: 1;
    line-height: 1.65;
}
.module-card-portal .card-outcomes {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.module-card-portal .card-outcomes li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.45;
}
.module-card-portal .card-outcomes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cx-orange);
    font-weight: 800;
}
.module-card-portal .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 22px;
    font-size: 0.88rem;
    font-weight: 700;
}
.module-card-portal .card-meta span.date-t1 {
    color: var(--cx-yellow);
}
.module-card-portal .card-meta span.date-t2 {
    color: var(--cx-orange);
}
.module-card-portal .card-done-tag {
    display: none;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cx-blue);
    background: var(--cx-yellow);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}
.module-card-portal.done .card-done-tag {
    display: inline-block;
}
.btn-enter-portal {
    display: inline-block;
    padding: 15px 35px;
    background: var(--cx-orange);
    color: var(--cx-blue);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    text-align: center;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}
.btn-enter-portal:hover {
    background: var(--cx-yellow);
    box-shadow: 0 0 20px rgba(255, 232, 0, 0.2);
}

.portal-lab-cta {
    margin-top: 64px;
    text-align: center;
    border: 1px dashed var(--cx-yellow);
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 232, 0, 0.03);
}
.portal-lab-cta h3 {
    color: var(--cx-yellow);
    margin-bottom: 10px;
    font-size: 1.35rem;
}
.portal-lab-cta > p {
    margin-bottom: 22px;
    opacity: 0.88;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.portal-lab-cta a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid var(--cx-orange);
}

.portal-footer {
    margin-top: 48px;
    padding: 48px 5%;
    text-align: center;
    background: #05101a;
}
.portal-footer p {
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ——— Módulos: layout + TOC ——— */
.learn-layout {
    display: grid;
    grid-template-columns: var(--cx-toc-w) minmax(0, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4% 48px;
    gap: 32px;
    align-items: start;
}
.learn-main {
    min-width: 0;
    padding: var(--cx-header-h) 5% 48px;
}
.toc-sidebar {
    position: sticky;
    top: calc(var(--cx-header-h) + 16px);
    padding: 24px 0 0;
    align-self: start;
    max-height: calc(100vh - var(--cx-header-h) - 32px);
    overflow-y: auto;
}
.toc-sidebar-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cx-orange);
    margin-bottom: 16px;
}
.toc-sidebar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.toc-sidebar nav a {
    display: block;
    padding: 10px 14px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: #c5c5c5;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: 0.2s;
}
.toc-sidebar nav a:hover {
    background: var(--cx-glass);
    color: #fff;
}
.toc-sidebar nav a.active {
    background: rgba(255, 232, 0, 0.08);
    border-color: rgba(255, 232, 0, 0.25);
    color: var(--cx-yellow);
}
.toc-track-tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 12px;
}
.toc-complete-box {
    margin-top: 24px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--cx-border);
    background: rgba(0, 0, 0, 0.25);
}
.toc-complete-box p {
    font-size: 0.82rem;
    color: #999;
    margin: 0 0 12px;
    line-height: 1.5;
}
.btn-toc-complete {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--cx-yellow);
    background: transparent;
    color: var(--cx-yellow);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
}
.btn-toc-complete:hover {
    background: var(--cx-yellow);
    color: var(--cx-blue);
}
.btn-toc-complete.done {
    border-color: rgba(255, 232, 0, 0.35);
    color: #888;
    pointer-events: none;
}
.btn-toc-complete.done::after {
    content: ' ✓';
    color: var(--cx-yellow);
}

.learn-pager {
    max-width: 1400px;
    margin: 0 auto 0;
    padding: 28px 4% 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--cx-border);
}
.learn-pager a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.25s;
}
.learn-pager a.pager-back {
    border: 1px solid #fff;
    color: #fff;
}
.learn-pager a.pager-back:hover {
    background: #fff;
    color: var(--cx-blue);
}
.learn-pager a.pager-next {
    background: var(--cx-orange);
    color: var(--cx-blue);
}
.learn-pager a.pager-next:hover {
    background: var(--cx-yellow);
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--cx-yellow);
    color: var(--cx-blue);
    font-weight: 800;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
}

@media (max-width: 1024px) {
    .learn-layout {
        grid-template-columns: 1fr;
    }
    .toc-sidebar {
        position: relative;
        top: auto;
        max-height: none;
        padding-top: 12px;
        border-bottom: 1px solid var(--cx-border);
        margin-bottom: 8px;
    }
    .toc-sidebar nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .toc-sidebar nav a {
        margin-bottom: 0;
    }
    .toc-complete-box {
        margin-top: 16px;
    }
}

/* Conteúdo dos módulos: listas e seções */
.learn-main section {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--cx-border);
}
.learn-main section:last-of-type {
    border-bottom: none;
}
.learn-main .content-box ul {
    padding-left: 1.25rem;
    margin: 0 0 16px;
}
.learn-main .content-box li {
    font-size: 1.15rem;
    color: #d1d1d1;
    margin-bottom: 12px;
}

/* Prompt Lab — extensões */
.lab-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.lab-help-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--cx-border);
    border-radius: 16px;
    padding: 16px 18px;
}
.lab-help-card h3 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cx-orange);
    margin: 0 0 8px;
}
.lab-help-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.45;
}

/* Área de downloads (módulos) */
.download-zone {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--cx-border);
    border-radius: 28px;
    padding: 40px 44px;
    border-left: 5px solid var(--cx-orange);
}
.download-zone-head {
    margin-bottom: 24px;
}
.download-zone-head .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cx-yellow);
    margin-bottom: 10px;
}
.download-zone-lead {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.65;
    margin: 0 0 8px;
    max-width: 720px;
}
.download-zone-note {
    font-size: 0.82rem;
    color: #666;
    margin: 0 0 22px;
    max-width: 720px;
    line-height: 1.5;
}
.download-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.download-list a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--cx-border);
    transition: 0.25s ease;
}
.download-list a:hover {
    border-color: rgba(255, 232, 0, 0.35);
    background: rgba(255, 232, 0, 0.06);
}
.download-list a::before {
    content: '↓';
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cx-blue);
    background: var(--cx-yellow);
}
.download-list .dl-body {
    flex: 1;
    min-width: 0;
}
.download-list .dl-title {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 4px;
    line-height: 1.35;
}
.download-list .dl-meta {
    display: block;
    font-size: 0.82rem;
    color: #888;
    font-weight: 600;
}
@media (max-width: 600px) {
    .download-zone {
        padding: 28px 22px;
    }
    .download-list a {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Barra de usuário (sessão Sisconnect) */
.portal-user-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ccc;
}
.portal-user-strip .portal-user-name {
    color: var(--cx-yellow);
    font-weight: 800;
}
.portal-user-strip a.logout {
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.2s;
}
.portal-user-strip a.logout:hover {
    background: #fff;
    color: var(--cx-blue);
    border-color: #fff;
}

/* Catálogo estilo streaming (mesma identidade Conexlog) */
.cx-catalog-page {
    background: var(--cx-blue);
    min-height: 100vh;
    padding-bottom: 64px;
}
.cx-catalog-nav {
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-bottom: 2px solid var(--cx-yellow);
    background: rgba(0, 35, 63, 0.97);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.cx-catalog-nav .nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cx-catalog-nav .logo-10-anos {
    height: 52px;
    width: auto;
}
.cx-catalog-nav a.nav-pill {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 16px;
    border-radius: 999px;
    transition: 0.25s;
}
.cx-catalog-nav a.nav-pill:hover {
    border-color: var(--cx-yellow);
    color: var(--cx-yellow);
}
.cx-catalog-nav a.nav-pill--fill {
    background: var(--cx-orange);
    color: var(--cx-blue);
    border-color: var(--cx-orange);
}
.cx-catalog-nav a.nav-pill--fill:hover {
    background: var(--cx-yellow);
    border-color: var(--cx-yellow);
}

.cx-catalog-hero {
    margin: 0 5% 48px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 56px 8%;
    border-radius: 0 0 32px 32px;
    background: linear-gradient(135deg, #001a2e 0%, #00335c 45%, #001f38 100%);
    border: 1px solid rgba(255, 232, 0, 0.15);
    border-top: none;
    position: relative;
    overflow: hidden;
}
.cx-catalog-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 90% 20%, rgba(249, 165, 11, 0.12), transparent 55%);
    pointer-events: none;
}
.cx-catalog-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.cx-catalog-hero .eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cx-orange);
    margin-bottom: 12px;
}
.cx-catalog-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.cx-catalog-hero h1 span {
    color: var(--cx-yellow);
}
.cx-catalog-hero p {
    font-size: 1.08rem;
    color: #c8c8c8;
    line-height: 1.65;
    margin-bottom: 28px;
}
.cx-catalog-hero p.cx-hero-sub {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 52rem;
}
.cx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cx-hero-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.25s;
}
.cx-hero-actions a.primary {
    background: var(--cx-yellow);
    color: var(--cx-blue);
}
.cx-hero-actions a.primary:hover {
    box-shadow: 0 0 24px rgba(255, 232, 0, 0.25);
}
.cx-hero-actions a.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.cx-hero-actions a.secondary:hover {
    border-color: var(--cx-orange);
    color: var(--cx-orange);
}

.cx-rail-block {
    margin-bottom: 40px;
    padding: 0 5%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.cx-rail-block h2 {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 5px solid var(--cx-orange);
}
.cx-rail {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.cx-rail::-webkit-scrollbar {
    height: 6px;
}
.cx-rail::-webkit-scrollbar-thumb {
    background: rgba(255, 232, 0, 0.25);
    border-radius: 4px;
}

a.cx-tile {
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1), border-color 0.25s;
}
a.cx-tile:hover {
    transform: scale(1.04);
    border-color: rgba(249, 165, 11, 0.5);
    z-index: 2;
}
/* Um único curso no catálogo: mesmo tamanho dos cards “Em breve”, alinhado à esquerda */
.cx-rail.cx-rail--single {
    justify-content: flex-start;
}
a.cx-tile.cx-tile--featured {
    flex: 0 0 min(280px, 78vw);
    max-width: min(280px, 78vw);
}
.cx-catalog-hero h1.cx-hero-course-title {
    color: #fff;
    font-weight: 800;
}
.cx-catalog-hero h1.cx-hero-course-title .accent {
    color: var(--cx-yellow);
}
.cx-tile-thumb {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    position: relative;
}
/* Imagem de capa no card (ex.: curso de IA) */
.cx-tile-thumb--cover {
    padding: 0;
    align-items: stretch;
    overflow: hidden;
    background: #001a2e;
}
.cx-tile-thumb--cover .cx-tile-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cx-tile-thumb--cover .cx-tile-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
}
.cx-tile-thumb--t1 {
    background: linear-gradient(145deg, #001a31 0%, #004d7a 50%, rgba(255, 232, 0, 0.15) 100%);
}
.cx-tile-thumb--t2 {
    background: linear-gradient(145deg, #1a1400 0%, #5c3d00 50%, rgba(249, 165, 11, 0.35) 100%);
}
.cx-tile-thumb--lab {
    background: linear-gradient(145deg, #0d1f2e 0%, #1a3a52 50%, rgba(255, 232, 0, 0.12) 100%);
}
.cx-tile-thumb--soon {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 60%, #252525 100%);
    filter: grayscale(0.35);
}
.cx-tile-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--cx-yellow);
    color: var(--cx-blue);
}
.cx-tile-badge--orange {
    background: var(--cx-orange);
    color: var(--cx-blue);
}
.cx-tile-body {
    padding: 16px 18px 20px;
}
.cx-tile-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.25;
    color: #fff;
}
.cx-tile-body p {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.45;
}

div.cx-tile.cx-tile--soon {
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    cursor: default;
    position: relative;
    display: flex;
    flex-direction: column;
}
div.cx-tile.cx-tile--soon .cx-tile-soon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 35, 63, 0.65);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cx-yellow);
    z-index: 2;
}
div.cx-tile.cx-tile--soon .cx-tile-body {
    opacity: 0.65;
}

.cx-catalog-footer {
    text-align: center;
    padding: 40px 5%;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
