.homepage-spotlight {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    padding: 0;
    background: transparent;
}

.homepage-spotlight__viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.homepage-spotlight__track {
    display: flex;
    width: 100%;
    transition: transform 420ms ease;
    will-change: transform;
}

.homepage-spotlight.is-jump-resetting .homepage-spotlight__track {
    transition: none;
}

.homepage-spotlight__card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 0 0 100%;
    padding: 24px;
    border: 1px solid var(--cke-border);
    border-radius: 12px;
    background: var(--cke-surface-strong);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 1px 1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7px);
}

.homepage-spotlight__decoration {
    position: absolute;
    left: 79.551px;
    top: 0;
    width: 174px;
    height: 66px;
    display: block;
    pointer-events: none;
    z-index: 0;
}

.homepage-spotlight__decoration--secondary {
    left: auto;
    top: auto;
    right: -30px;
    bottom: -20px;
    width: 148.779px;
    height: 176.668px;
    transform-origin: center;
}

.homepage-spotlight--regional .homepage-spotlight__card {
    gap: 10px;
    --spotlight-decoration-primary-left: 111.91px;
    --spotlight-decoration-primary-top: -93.79px;
    --spotlight-decoration-primary-width: 138.908px;
    --spotlight-decoration-primary-height: 175.659px;
    --spotlight-decoration-primary-rotate: 105deg;
    --spotlight-decoration-secondary-top: -9.91px;
    --spotlight-decoration-secondary-right: -37.14px;
    --spotlight-decoration-secondary-width: 148.779px;
    --spotlight-decoration-secondary-height: 176.668px;
    --spotlight-decoration-secondary-rotate: -90deg;
}

.homepage-spotlight--regional .homepage-spotlight__card--b {
    --spotlight-decoration-primary-left: 313.35px;
    --spotlight-decoration-primary-top: -57.18px;
    --spotlight-decoration-primary-width: 138.908px;
    --spotlight-decoration-primary-height: 175.659px;
    --spotlight-decoration-primary-rotate: 67.63deg;
    --spotlight-decoration-secondary-top: 30.09px;
    --spotlight-decoration-secondary-right: 162.85px;
    --spotlight-decoration-secondary-width: 148.779px;
    --spotlight-decoration-secondary-height: 176.668px;
    --spotlight-decoration-secondary-rotate: -45deg;
}

.homepage-spotlight--regional .homepage-spotlight__card--c {
    --spotlight-decoration-primary-left: 231.92px;
    --spotlight-decoration-primary-top: -103.8px;
    --spotlight-decoration-primary-width: 138.908px;
    --spotlight-decoration-primary-height: 175.659px;
    --spotlight-decoration-primary-rotate: -120deg;
    --spotlight-decoration-secondary-top: -9.92px;
    --spotlight-decoration-secondary-right: 62.86px;
    --spotlight-decoration-secondary-width: 148.779px;
    --spotlight-decoration-secondary-height: 176.668px;
    --spotlight-decoration-secondary-rotate: -176.55deg;
}

.homepage-spotlight--regional .homepage-spotlight__decoration {
    left: var(--spotlight-decoration-primary-left);
    top: var(--spotlight-decoration-primary-top);
    width: var(--spotlight-decoration-primary-width);
    height: var(--spotlight-decoration-primary-height);
    transform: rotate(var(--spotlight-decoration-primary-rotate));
}

.homepage-spotlight--regional .homepage-spotlight__decoration--secondary {
    left: auto;
    top: var(--spotlight-decoration-secondary-top);
    right: var(--spotlight-decoration-secondary-right);
    bottom: auto;
    width: var(--spotlight-decoration-secondary-width);
    height: var(--spotlight-decoration-secondary-height);
    transform: rotate(var(--spotlight-decoration-secondary-rotate));
}

.homepage-spotlight__copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.homepage-spotlight__copy h2 {
    margin: 0;
    color: var(--cke-ink);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
}

.homepage-spotlight__copy p {
    margin: 0;
    color: var(--cke-ink);
    font-size: 16px;
    line-height: 1.5;
}

.homepage-spotlight__button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    padding: 0 24px;
    border: 0;
    border-radius: 32px;
    background: var(--cke-brand);
    color: #fbfbfb;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.homepage-spotlight__button:hover,
.homepage-spotlight__button:focus-visible {
    text-decoration: none;
}

.homepage-spotlight__button img {
    width: 24px;
    height: 24px;
}

@media (prefers-reduced-motion: reduce) {
    .homepage-spotlight__dots--carousel .homepage-spotlight__dots-track {
        transition: none;
    }
}

@media (max-width: 900px) {
    .homepage-spotlight__card {
        align-items: flex-start;
        flex-direction: column;
    }

    .homepage-spotlight__button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .homepage-spotlight__copy h2 {
        font-size: 24px;
    }
}
