.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.video-grid-single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.video-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(24,24,27,.05);
}

.tiktok-profile-preview {
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, #17191f, #2c223d);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #17191f;
}

.video-frame iframe,
.video-frame img,
.video-frame > a {
    width: 100%;
    height: 100%;
}

.video-frame iframe {
    display: block;
    border: 0;
}

.video-frame img {
    display: block;
    object-fit: cover;
}

.video-frame > a {
    display: block;
}

.video-placeholder {
    display: grid !important;
    place-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #17191f, #2c223d);
}

.video-card-body {
    padding: 28px;
}

.video-card-body h2 {
    margin: 12px 0 8px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -.03em;
}

.video-card-body > p:not(.byline) {
    color: var(--muted);
}

@media (max-width: 760px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card-body {
        padding: 24px;
    }
}
