/* Media stage + thumbnails */
.media .stage{
    width: 100%;
    height: 420px;
    border-radius: 1rem;
    overflow: hidden;
    background: #f2f4f7;
    display: grid;
    place-items: center;
}
.media .stage img,
.media .stage iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.thumbs{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: .6rem;
    margin-top: .75rem;
}
.thumbs .thumb{
    position: relative;
    border: 1px solid var(--bs-border-color, #e5e7eb);
    background: #fff;
    border-radius: .75rem;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    display: block;
}
.thumbs .thumb.active{
    box-shadow: 0 0 0 2px rgba(13,110,253,.55) inset;
}
.thumbs .thumb img{
    width: 100%;
    height: 80px;
    display: block;
    object-fit: cover;
}
.thumbs .thumb .thumb-video{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.15));
}
.thumbs .thumb .thumb-video i{
    font-size: 1.2rem;
    margin-right: .25rem;
}
