.drgo-video-top {
    padding-top: 7.25rem;
}

.drgo-video-page {
    --video-gold: #c4a574;
    --video-gold-soft: #ebd8ae;
    --video-ink: #1b2430;
    --video-muted: #6b7280;
    --video-surface: #f7f3ea;
}

.drgo-video-page .drgo-video-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.drgo-video-player-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #0f141c;
    box-shadow: 0 24px 60px rgba(27, 36, 48, 0.18);
}

.drgo-video-player-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(196, 165, 116, 0.28);
    border-radius: inherit;
}

.drgo-video-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.drgo-video-ratio > video,
.drgo-video-ratio > iframe,
.drgo-video-ratio > #drgo-player,
.drgo-video-ratio > .plyr,
.drgo-video-ratio > .plyr__video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.drgo-video-ratio .plyr {
    height: 100%;
}

.drgo-video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    margin: 1.75rem 0 1rem;
}

.drgo-video-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--video-surface);
    color: var(--video-ink);
    font-size: 0.92em;
    text-decoration: none;
}

.drgo-video-heading {
    margin: 0 0 1.4rem;
    max-width: 46rem;
}

.drgo-video-kicker {
    display: inline-block;
    margin: 0 0 0.45rem;
    color: var(--video-gold);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.drgo-video-title {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
    color: var(--video-ink);
}

.drgo-video-excerpt {
    font-size: 1.08em;
    line-height: 2;
    color: #3d4654;
    max-width: 46rem;
}

.drgo-video-body {
    margin-top: 2rem;
    line-height: 2.1;
}

.drgo-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin: 3.5rem 0 1.5rem;
}

.drgo-related-head h2 {
    margin: 0;
    font-size: 1.55rem;
}

.drgo-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.drgo-video-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 36, 48, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.drgo-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(27, 36, 48, 0.12);
}

.drgo-video-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1b2430;
}

.drgo-video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drgo-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(15, 20, 28, 0.05), rgba(15, 20, 28, 0.38));
}

.drgo-video-play span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 165, 116, 0.95);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.drgo-video-play svg {
    width: 22px;
    height: 22px;
    margin-right: -2px;
}

.drgo-video-duration {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(15, 20, 28, 0.78);
    color: #fff;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    font-size: 0.8em;
}

.drgo-video-card-body {
    padding: 1rem 1.1rem 1.2rem;
}

.drgo-video-card-cat {
    color: var(--video-gold);
    font-size: 0.82em;
    margin-bottom: 0.35rem;
}

.drgo-video-card-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.drgo-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.drgo-category-chips a {
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--video-ink);
    border: 1px solid #eadfca;
}

.drgo-category-chips a.is-active {
    background: var(--video-ink);
    color: #fff;
    border-color: var(--video-ink);
}

.drgo-video-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--video-muted);
}

.plyr {
    --plyr-color-main: #c4a574;
    --plyr-video-control-background-hover: #c4a574;
    --plyr-range-fill-background: #c4a574;
    border-radius: 0;
}

@media screen and (max-width: 991px) {
    .drgo-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 767px) {
    .drgo-video-top {
        padding-top: 5.5rem;
    }
}

@media screen and (max-width: 640px) {
    .drgo-video-grid {
        grid-template-columns: 1fr;
    }

    .drgo-video-player-wrap {
        border-radius: 18px;
    }
}
