.video-box {
    position: relative;
    width: 75%;
    aspect-ratio: 9 / 16; /* вертикальное видео */
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: #000;
}

/* ВАЖНО: без масштабирования >100% */
.video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6c757d;
    background: #f1f3f5;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 4px;
}
.video-box {
    position: relative;
    aspect-ratio: 9 / 16;   /* форма телефона */
    overflow: hidden;
    background: #000;
}

/* В обычном режиме — БЕЗ чёрных полос */
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}