.tst-spotlight {
    --tst-navy: #1e3a8a;
    --tst-red: #ef4444;
    outline: none;
}

.tst-spotlight__stage {
    padding: 2.75rem 4rem 2.25rem;
    min-height: 320px;
}
.tst-spotlight__grid {
    display: none; /* pattern handled via stage background-image above */
}
.tst-spotlight__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}
.tst-spotlight__blob--navy {
    width: 260px;
    height: 260px;
    background-color: var(--tst-navy);
    top: -90px;
    right: -70px;
}
.tst-spotlight__blob--red {
    width: 200px;
    height: 200px;
    background-color: var(--tst-red);
    bottom: -80px;
    left: -60px;
}

.tst-spotlight__count {
    position: absolute;
    top: 1.75rem;
    right: 2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #94a3b8;
    z-index: 2;
}
.tst-count-current {
    color: var(--tst-navy);
}

/* Arrows */
.tst-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: var(--tst-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}
.tst-arrow:hover {
    background-color: var(--tst-navy);
    color: #ffffff;
    transform: translateY(-50%) scale(1.06);
}
.tst-arrow--prev { left: -22px; }
.tst-arrow--next { right: -22px; }
@media (max-width: 767.98px) {
    .tst-arrow { width: 38px; height: 38px; }
    .tst-arrow--prev { left: 8px; }
    .tst-arrow--next { right: 8px; }
    .tst-spotlight__stage { padding: 2.5rem 3rem 2rem; }
}

/* Panels */
.tst-panel {
    display: none;
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.tst-panel.is-active {
    display: grid;
    animation: tst-fade-in 0.45s ease both;
}
@keyframes tst-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tst-panel__mono {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-image: linear-gradient(155deg, var(--tst-navy), #0f1f4d);
    color: #ffffff;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tst-panel__body { position: relative; }
.tst-panel__mark {
    color: #fee2e2;
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0.5rem;
}
.tst-panel__text {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.12rem;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 1.4rem;
}
.tst-panel__meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.tst-panel__name {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--tst-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tst-panel__stars {
    color: #f59e0b;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Progress bar */
.tst-spotlight__progress {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    height: 3px;
    border-radius: 2px;
    background-color: #c7c7c7;
    overflow: hidden;
    width:70px;
}
.tst-spotlight__progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background-color: var(--tst-red);
}

@media (max-width: 575.98px) {
    .tst-spotlight__stage { padding: 2.25rem 1.5rem 1.75rem; border-radius: 16px; }
    .tst-panel { grid-template-columns: 1fr; }
    .tst-panel__mono { width: 48px; height: 48px; font-size: 0.95rem; border-radius: 10px; }
    .tst-panel__text { font-size: 1rem; }
    .tst-spotlight__count { top: 1.1rem; right: 1.25rem; }
}