.reviews-scroll-hint {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 32%);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 16px;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(111, 32, 255, .55) rgba(111, 32, 255, .1);
    scrollbar-width: thin;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(111, 32, 255, .1);
}

.reviews-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, #6f20ff, #a04cff);
}

.review-card {
    min-width: 0;
    scroll-snap-align: start;
}

.review-card-video {
    width: calc(100% + 44px);
    height: 280px;
    margin: -22px -22px 18px;
    overflow: hidden;
    border-bottom: 1px solid rgba(111, 32, 255, .12);
    background: #17121f;
}

.review-card-video video,
.content-modal-video video,
.admin-content-video-preview video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #17121f;
}

.content-modal-video {
    max-height: 70vh;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 20px;
    background: #17121f;
}

.content-modal-video video {
    max-height: 70vh;
}

.admin-content-video-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    align-items: start;
}

.admin-content-video-preview {
    height: 210px;
    overflow: hidden;
    border: 1px solid rgba(111, 32, 255, .14);
    border-radius: 18px;
    background: #17121f;
}

.admin-content-video-preview.is-empty {
    display: grid;
    place-items: center;
    padding: 16px;
    border-style: dashed;
    background: #f5f0ff;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

@media (max-width: 990px) {
    .reviews-grid {
        grid-auto-columns: minmax(290px, 48%);
    }
}

@media (max-width: 680px) {
    .public-content-heading {
        gap: 8px;
    }

    .reviews-grid {
        grid-auto-columns: minmax(270px, 86%);
    }

    .admin-content-video-field {
        grid-template-columns: 1fr;
    }

    .admin-content-video-preview {
        height: 300px;
    }
}
