/* Pijlenbalk onder de drie nieuwsberichten op de homepage. */
[data-news-carousel-card][hidden] {
    display: none !important;
}

.news-carousel__controls {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: clamp(28px, 4vw, 46px) auto 0;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #090909;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.news-carousel__button {
    display: grid;
    width: 50px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--color-primary-bright, #e31b2d);
    border-radius: 2px;
    place-items: center;
    background: var(--color-primary-bright, #e31b2d);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.news-carousel__button:hover:not(:disabled),
.news-carousel__button:focus-visible:not(:disabled) {
    border-color: #fff;
    background: #fff;
    color: #050505;
    transform: translateY(-2px);
}

.news-carousel__button:disabled {
    border-color: #272727;
    background: #151515;
    color: #555;
    cursor: not-allowed;
}

.news-carousel__status {
    display: inline-flex;
    min-width: 74px;
    height: 46px;
    padding: 0 14px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #111;
    color: #aaa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.news-carousel__status strong {
    color: #fff;
}

@media (max-width: 480px) {
    .news-carousel__button {
        width: 46px;
        height: 44px;
    }

    .news-carousel__status {
        height: 44px;
    }
}
