.tcm-video-embed {
    aspect-ratio: 16 / 9;
    background: #050505;
    border: 1px solid rgba(212, 182, 144, 0.2);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    overflow: hidden;
    width: 100%;
}

.tcm-video-embed iframe {
    display: block;
    height: 100%;
    width: 100%;
}

.tcm-videos-main {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto 56px;
}

.tcm-videos-page {
    overflow-x: hidden;
}

.tcm-videos-hero {
    padding: 46px 0 28px;
    text-align: center;
}

.tcm-videos-hero__eyebrow,
.tcm-video-card__meta span {
    color: var(--primary-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tcm-videos-hero h1 {
    margin: 8px 0 12px;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.35rem, 6vw, 4.4rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.tcm-videos-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.tcm-videos-grid {
    display: grid;
    gap: 24px;
}

.tcm-video-card,
.tcm-video-empty {
    border: 1px solid rgba(212, 182, 144, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(212, 182, 144, 0.08)),
        rgba(8, 8, 8, 0.62);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.tcm-video-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 20px;
    overflow: hidden;
    padding: 18px;
}

.tcm-video-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.tcm-video-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 10px;
}

.tcm-video-card__meta time {
    color: #b9bac4;
    font-size: 0.86rem;
}

.tcm-video-card h2,
.tcm-video-empty h2 {
    margin: 0 0 12px;
    color: #fff7e9;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tcm-video-card p,
.tcm-video-empty p {
    color: var(--text-secondary);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.tcm-video-card__models,
.tcm-video-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.tcm-video-card__models a,
.tcm-video-button {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    text-decoration: none;
    text-align: center;
}

.tcm-video-card__models a {
    border: 1px solid rgba(167, 139, 250, 0.42);
    color: #ddd6fe;
    background: rgba(167, 139, 250, 0.08);
}

.tcm-video-button {
    border: 1px solid rgba(212, 182, 144, 0.34);
    color: #f4e6d3;
    background: rgba(255, 255, 255, 0.055);
}

.tcm-video-button--primary {
    color: #0b0907;
    border-color: transparent;
    background: linear-gradient(135deg, #d4b690, #f4e6d3);
}

.tcm-video-empty {
    padding: 28px;
    text-align: center;
}

.model-videos {
    margin: 34px auto;
}

.model-videos__heading {
    margin-bottom: 18px;
    text-align: center;
}

.model-videos__heading h2 {
    margin: 8px 0 0;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.model-videos__grid {
    display: grid;
    gap: 18px;
}

.model-video-card {
    border: 1px solid rgba(212, 182, 144, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
}

.model-video-card__body {
    padding-top: 14px;
}

.model-video-card__body h3 {
    margin: 0 0 8px;
    color: #fff7e9;
    font-size: 1.2rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.model-video-card__body p {
    margin: 0 0 12px;
    color: var(--text-secondary);
}

.model-video-card__link {
    color: var(--primary-gold);
    font-weight: 800;
}

@media (max-width: 860px) {
    .tcm-video-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .tcm-videos-main {
        padding: 0 10px;
        width: 100%;
    }

    .tcm-videos-hero h1 {
        font-size: 1.68rem;
        white-space: normal !important;
    }

    .tcm-videos-hero p {
        font-size: 0.94rem;
        max-width: 280px;
        padding: 0 8px;
        white-space: normal !important;
    }

    .tcm-video-card,
    .tcm-video-empty {
        padding: 14px;
    }

    .tcm-video-card h2,
    .tcm-video-empty h2 {
        font-size: 0.98rem;
        max-width: 315px;
        white-space: normal !important;
    }

    .tcm-video-card p,
    .tcm-video-empty p {
        font-size: 0.94rem;
        max-width: 315px;
    }

    .tcm-video-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tcm-video-button {
        width: 100%;
    }
}
