.homepage-spotlight__pagination {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    color: var(--cke-ink-soft);
}

.homepage-spotlight__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--cke-brand-strong);
}

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

.homepage-spotlight__arrow--next img {
    transform: rotate(180deg);
}

.homepage-spotlight__arrow:hover,
.homepage-spotlight__arrow:focus-visible {
    background: transparent;
    color: var(--cke-brand-strong);
    box-shadow: none;
}

.homepage-spotlight__arrow svg {
    display: block;
    width: 24px;
    height: 24px;
}

.homepage-spotlight__dots {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.homepage-spotlight__dots--carousel {
    display: inline-block;
    width: 42px;
    overflow: hidden;
}

.homepage-spotlight__dots-track {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.homepage-spotlight__dots--carousel .homepage-spotlight__dots-track {
    transform: translateX(-17px);
    transition: transform 300ms ease;
}

.homepage-spotlight__dots-track.is-moving-next {
    transform: translateX(-34px);
}

.homepage-spotlight__dots-track.is-moving-previous {
    transform: translateX(0);
}

.homepage-spotlight__dot {
    width: 8px;
    height: 8px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--Brown-gray-200, #c5bcb7);
    border-radius: 19px;
    background: var(--Brown-gray-200, #c5bcb7);
}

.homepage-spotlight__dot.is-active {
    background: #004488;
    border-color: #004488;
}
