:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.86);
    --panel-solid: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.78);
    --line: rgba(100, 116, 139, 0.28);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --dim: #64748b;
    --cyan: #22d3ee;
    --cyan-strong: #06b6d4;
    --blue: #3b82f6;
    --amber: #f59e0b;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 35vw),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 40vw),
        linear-gradient(135deg, #020617 0%, #0f172a 46%, #020617 100%);
    color: var(--text);
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-inner {
    width: min(1280px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #02111f;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 34px rgba(34, 211, 238, 0.28);
}

.desktop-nav,
.desktop-cats {
    display: flex;
    align-items: center;
    gap: 18px;
}

.desktop-nav a,
.desktop-cats a,
.mobile-panel a {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-cats a {
    color: var(--muted);
    font-size: 13px;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.desktop-cats a:hover,
.mobile-panel a:hover,
.mobile-panel a.active {
    color: var(--cyan);
}

.site-search-form {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-search-form input,
.filter-bar input {
    width: 280px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: var(--text);
    padding: 11px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search-form input:focus,
.filter-bar input:focus {
    border-color: rgba(34, 211, 238, 0.86);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
    background: rgba(15, 23, 42, 0.96);
}

.site-search-form button,
.filter-bar a,
.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    color: #02111f;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(6, 182, 212, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-search-form button:hover,
.primary-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(6, 182, 212, 0.28);
    filter: brightness(1.05);
}

.ghost-btn {
    color: var(--text);
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(226, 232, 240, 0.18);
    box-shadow: none;
}

.ghost-btn:hover {
    border-color: rgba(34, 211, 238, 0.56);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.84);
    color: var(--text);
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
    border-radius: 2px;
}

.mobile-panel {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-panel nav {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-shell {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.72) 38%, rgba(2, 6, 23, 0.38) 72%, rgba(2, 6, 23, 0.88) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.1) 48%, #020617 100%),
        var(--hero-image) center / cover no-repeat;
    transform: scale(1.04);
    filter: saturate(1.08);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 32px));
    min-height: 760px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 56px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.hero-copy .eyebrow,
.page-hero span,
.section-head span,
.overview-copy span {
    display: inline-flex;
    align-items: center;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(44px, 8vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: #f8fafc;
    text-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.hero-one {
    margin: 26px 0 0;
    color: #f1f5f9;
    font-size: clamp(19px, 2vw, 26px);
    line-height: 1.45;
    max-width: 720px;
}

.hero-summary,
.page-hero p,
.section-head p,
.overview-copy p,
.detail-copy p,
.card-body p,
.site-footer p {
    color: var(--muted);
    line-height: 1.72;
}

.hero-summary {
    max-width: 680px;
    margin: 18px 0 0;
    font-size: 16px;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin: 24px 0 0;
}

.hero-tags span,
.tag-row span,
.channel-chips a {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 999px;
    color: #a5f3fc;
    background: rgba(8, 145, 178, 0.12);
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    border: 1px solid rgba(226, 232, 240, 0.14);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hero-poster span,
.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #02111f;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 42px rgba(6, 182, 212, 0.32);
}

.hero-poster:hover img,
.movie-card:hover img,
.category-overview-card:hover img {
    transform: scale(1.06);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.46);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 54px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.quick-search,
.content-section,
.page-main,
.detail-main {
    width: min(1280px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.quick-search {
    margin-top: -48px;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-search span {
    color: var(--cyan);
    font-weight: 800;
}

.quick-search h2 {
    margin: 8px 0 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.15;
}

.content-section {
    padding-top: 82px;
}

.section-head {
    margin-bottom: 26px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-head h2,
.page-hero h1,
.detail-info h1,
.detail-copy h2 {
    margin: 0;
    color: #f8fafc;
    letter-spacing: -0.04em;
}

.section-head h2 {
    font-size: clamp(28px, 3.5vw, 46px);
}

.section-head p {
    max-width: 620px;
    margin: 10px 0 0;
}

.section-head > a {
    min-width: max-content;
    color: var(--cyan);
    font-weight: 800;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-tile {
    min-height: 180px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.72)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 58%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.48);
    box-shadow: 0 24px 60px rgba(6, 182, 212, 0.12);
}

.category-tile span {
    display: block;
    color: #f8fafc;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.category-tile p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.movie-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
}

.movie-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--panel);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    scroll-snap-align: start;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 22px 70px rgba(6, 182, 212, 0.13);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.84), transparent 58%);
    opacity: 0.82;
}

.play-mark {
    width: 48px;
    height: 48px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-mark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
}

.rank-num {
    position: absolute;
    left: 10px;
    top: 10px;
    min-width: 38px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #02111f;
    background: linear-gradient(135deg, #fbbf24, var(--cyan));
    font-size: 13px;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.18);
}

.card-body {
    padding: 15px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--dim);
    font-size: 12px;
    font-weight: 700;
}

.card-body h3 {
    margin: 8px 0 8px;
    font-size: 17px;
    line-height: 1.35;
    color: #f8fafc;
}

.card-body h3 a:hover {
    color: var(--cyan);
}

.card-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
}

.tag-row span {
    padding: 4px 8px;
    font-size: 12px;
}

.movie-card-small .card-body p {
    min-height: auto;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ranking-grid .movie-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
}

.ranking-grid .poster-link img {
    height: 100%;
    aspect-ratio: auto;
}

.page-main,
.detail-main {
    padding-top: 118px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.82)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 42%);
    box-shadow: var(--shadow);
}

.compact-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.compact-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 17px;
}

.channel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.channel-chips a.active {
    color: #02111f;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.filter-bar {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.72);
}

.filter-bar input {
    flex: 1;
    width: 100%;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

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

.overview-posters a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.overview-posters img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-posters span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 10px 10px;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent);
}

.overview-copy h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.overview-copy p {
    margin: 0 0 20px;
}

.detail-main {
    padding-bottom: 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.player-card,
.detail-info,
.detail-copy article {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
}

.video-wrap {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #f8fafc;
    background:
        linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.1)),
        rgba(2, 6, 23, 0.18);
    cursor: pointer;
}

.video-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #02111f;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 54px rgba(6, 182, 212, 0.32);
}

.video-overlay strong {
    font-size: clamp(22px, 3vw, 38px);
    text-align: center;
}

.detail-info {
    padding: 30px;
}

.detail-info h1 {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
}

.lead-text {
    margin: 18px 0;
    color: #e0f2fe;
    line-height: 1.7;
    font-size: 17px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.info-list strong {
    color: var(--dim);
}

.info-list span {
    color: #f8fafc;
    text-align: right;
}

.detail-tags {
    margin-bottom: 28px;
}

.detail-btn {
    width: 100%;
}

.detail-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.detail-copy article {
    padding: 28px;
}

.detail-copy h2 {
    margin-bottom: 14px;
    font-size: 26px;
}

.related-section .movie-row {
    grid-auto-columns: minmax(185px, 1fr);
}

.site-footer {
    margin-top: 90px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.88);
}

.footer-grid {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 42px;
}

.footer-brand {
    margin-bottom: 14px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #f8fafc;
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-footer a:not(.brand) {
    color: var(--muted);
}

.site-footer a:not(.brand):hover {
    color: var(--cyan);
}

.copyright {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--dim);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 13px;
}

.is-filtered-out {
    display: none !important;
}

@media (max-width: 1180px) {
    .desktop-cats {
        display: none;
    }

    .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ranking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .desktop-nav,
    .desktop-cats,
    .nav-inner > .site-search-form {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    body.nav-open .mobile-panel {
        display: block;
    }

    .mobile-panel .site-search-form {
        margin-left: 0;
    }

    .mobile-panel .site-search-form input {
        width: 100%;
    }

    .hero-shell,
    .hero-content {
        min-height: 700px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 106px;
    }

    .hero-poster {
        display: none;
    }

    .quick-search {
        grid-template-columns: 1fr;
        margin-top: -34px;
    }

    .quick-search .site-search-form {
        margin-left: 0;
    }

    .category-grid,
    .movie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-overview-grid,
    .detail-hero,
    .detail-copy,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 34px;
    }
}

@media (max-width: 640px) {
    .nav-inner,
    .quick-search,
    .content-section,
    .page-main,
    .detail-main,
    .footer-grid,
    .copyright {
        width: min(100% - 24px, 1280px);
    }

    .brand {
        font-size: 19px;
    }

    .hero-shell,
    .hero-content {
        min-height: 660px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-one {
        font-size: 18px;
    }

    .hero-summary {
        display: none;
    }

    .hero-actions,
    .site-search-form,
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .site-search-form input,
    .site-search-form button,
    .filter-bar input,
    .filter-bar a,
    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .category-grid,
    .movie-grid,
    .ranking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ranking-grid .movie-card {
        display: block;
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding-top: 58px;
    }

    .section-head {
        display: block;
    }

    .section-head > a {
        display: inline-block;
        margin-top: 16px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body h3 {
        font-size: 15px;
    }

    .card-body p,
    .tag-row {
        display: none;
    }

    .detail-info,
    .detail-copy article {
        padding: 22px;
    }

    .video-overlay span {
        width: 68px;
        height: 68px;
    }
}
