:root {
    --green-950: #052e1c;
    --green-900: #064e3b;
    --green-800: #065f46;
    --green-700: #047857;
    --green-600: #059669;
    --green-500: #10b981;
    --emerald-400: #34d399;
    --yellow-300: #fde047;
    --gray-950: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-100: #f3f4f6;
    --green-soft: #ecfdf5;
    --shadow-soft: 0 18px 45px rgba(6, 78, 59, 0.14);
    --shadow-card: 0 12px 30px rgba(17, 24, 39, 0.12);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 32%, #ffffff 100%);
    line-height: 1.65;
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, var(--green-900), var(--green-700));
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(5, 46, 28, 0.25);
}

.nav-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand {
    font-size: 22px;
    white-space: nowrap;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #dcfce7;
    transform: translateY(-1px);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input {
    width: 210px;
    border: 0;
    outline: none;
    color: #ffffff;
    background: rgba(6, 78, 59, 0.72);
    border-radius: 999px;
    padding: 10px 14px;
}

.top-search input::placeholder {
    color: rgba(220, 252, 231, 0.76);
}

.top-search button,
.filter-grid button,
.btn {
    border: 0;
    cursor: pointer;
    font-weight: 700;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search button {
    color: var(--green-800);
    background: #ffffff;
    padding: 10px 16px;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 22px;
}

.home-hero {
    position: relative;
    min-height: 680px;
    color: #ffffff;
    overflow: hidden;
    background: radial-gradient(circle at 18% 18%, rgba(253, 224, 71, 0.28), transparent 28%), linear-gradient(135deg, var(--green-800), var(--green-500));
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 34px 34px;
}

.hero-topline {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 58px;
}

.hero-topline h1 {
    margin: 0 0 10px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-topline p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 23px);
}

.hero-track {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    min-height: 500px;
    margin: 28px auto 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
    gap: 36px;
    align-items: center;
    padding: 38px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background-image: linear-gradient(90deg, rgba(5, 46, 28, 0.94), rgba(6, 95, 70, 0.74), rgba(17, 24, 39, 0.18)), var(--hero-image);
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(5, 46, 28, 0.28);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.hero-content h2 {
    margin: 10px 0 18px;
    max-width: 760px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green-600);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero .eyebrow,
.detail-hero .eyebrow,
.page-hero .eyebrow {
    color: #bbf7d0;
}

.hero-tags {
    margin-top: 22px;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

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

.hero-actions.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 24px;
}

.btn.primary {
    color: var(--green-800);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(6, 95, 70, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.btn.ghost.dark {
    color: var(--green-800);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(6, 78, 59, 0.16);
}

.btn.small {
    color: #ffffff;
    background: var(--green-600);
    padding: 9px 18px;
}

.btn:hover,
.top-search button:hover,
.filter-grid button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.hero-dots {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 22px 0 36px;
}

.hero-dots button {
    width: 42px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.36);
}

.hero-dots button.is-active {
    background: #ffffff;
}

.stats-strip {
    margin-top: -18px;
    position: relative;
    z-index: 8;
}

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

.stats-grid a {
    display: grid;
    place-items: center;
    min-height: 105px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.stats-grid strong {
    font-size: 38px;
    line-height: 1;
}

.stats-grid span {
    color: #dcfce7;
}

.section-block {
    padding: 70px 0;
}

.soft-bg {
    background: linear-gradient(180deg, #ffffff, var(--green-soft));
}

.section-heading,
.category-preview-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading.compact {
    margin-bottom: 16px;
}

.section-heading h2,
.category-preview-head h2,
.player-section h2,
.movie-article h2,
.side-card h2 {
    margin: 0;
    color: var(--gray-950);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
}

.text-link {
    color: var(--green-700);
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 178px;
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: var(--shadow-card);
    background: var(--green-800);
    isolation: isolate;
}

.category-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(180deg, transparent, rgba(5, 46, 28, 0.94)), var(--category-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.35s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.08);
}

.category-copy {
    padding: 22px;
}

.category-copy strong {
    display: block;
    font-size: 22px;
}

.category-copy em,
.category-copy small {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-style: normal;
}

.category-copy small {
    margin-top: 8px;
    font-size: 13px;
}

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

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

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

.movie-card {
    min-width: 0;
}

.movie-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(5, 46, 28, 0.18);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-link:hover img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #ffffff;
    background: rgba(5, 150, 105, 0.92);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    display: block;
    padding: 16px;
}

.card-title {
    display: block;
    color: var(--gray-950);
    font-size: 17px;
    line-height: 1.35;
    min-height: 46px;
}

.card-meta,
.card-desc {
    display: block;
    margin-top: 8px;
    color: var(--gray-600);
    font-size: 13px;
}

.card-desc {
    min-height: 44px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.card-body .tag-row {
    margin-top: 12px;
}

.tag-row span {
    color: var(--green-800);
    background: #d1fae5;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 700;
}

.detail-tags span,
.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.dual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 38px;
}

.ranking-list {
    display: grid;
    gap: 14px;
}

.ranking-row {
    display: block;
}

.ranking-link {
    display: grid;
    grid-template-columns: 52px 86px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-500), var(--green-800));
    border-radius: 14px;
    font-weight: 900;
}

.ranking-link img {
    width: 86px;
    height: 112px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--green-800);
}

.ranking-copy strong,
.ranking-copy em,
.ranking-copy small {
    display: block;
}

.ranking-copy strong {
    color: var(--gray-950);
    font-size: 18px;
}

.ranking-copy em {
    margin: 5px 0;
    color: var(--gray-600);
    font-style: normal;
}

.ranking-copy small {
    color: var(--green-700);
    font-weight: 700;
}

.wide-list .ranking-link {
    grid-template-columns: 62px 118px minmax(0, 1fr);
}

.wide-list .ranking-link img {
    width: 118px;
    height: 150px;
}

.home-cta {
    padding: 72px 0;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
}

.home-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
}

.home-cta p {
    margin: 0 auto;
    max-width: 720px;
    color: #dcfce7;
    font-size: 18px;
}

.page-hero {
    padding: 72px 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
    max-width: 740px;
    margin: 0;
    color: #ecfdf5;
    font-size: 18px;
}

.category-overview {
    display: grid;
    gap: 32px;
}

.category-preview {
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.category-preview-head p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--gray-600);
}

.filter-panel {
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(130px, 0.6fr)) auto;
    gap: 14px;
    align-items: end;
}

.filter-grid label,
.filter-grid span {
    display: block;
}

.filter-grid span {
    margin-bottom: 6px;
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 800;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d1d5db;
    outline: none;
    border-radius: 14px;
    padding: 0 12px;
    color: var(--gray-800);
    background: #ffffff;
}

.filter-grid input:focus,
.filter-grid select:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
}

.filter-grid button {
    min-height: 44px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--green-600);
}

.filter-count {
    margin: 12px 0 0;
    color: var(--green-700);
    font-weight: 800;
}

.movie-card.is-hidden,
.ranking-row.is-hidden {
    display: none;
}

.detail-hero {
    position: relative;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(5, 46, 28, 0.94), rgba(6, 78, 59, 0.78), rgba(17, 24, 39, 0.58)), var(--detail-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 28%, rgba(253, 224, 71, 0.22), transparent 28%);
}

.detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    min-height: 620px;
    padding: 56px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.36);
    aspect-ratio: 3 / 4;
    background: var(--green-900);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #bbf7d0;
    margin-bottom: 16px;
    font-weight: 700;
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.lead {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 21px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0;
}

.detail-meta span {
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-weight: 700;
}

.player-section h2 {
    margin-bottom: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    aspect-ratio: 16 / 9;
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.52));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: clamp(74px, 10vw, 118px);
    height: clamp(74px, 10vw, 118px);
    padding-left: 7px;
    border-radius: 50%;
    color: var(--green-700);
    background: rgba(255, 255, 255, 0.94);
    font-size: clamp(30px, 5vw, 54px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

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

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.movie-article,
.side-card {
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.movie-article h2 + p {
    margin-top: 12px;
}

.movie-article p {
    color: var(--gray-700);
    font-size: 17px;
}

.side-card dl {
    margin: 16px 0 0;
}

.side-card dt {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 800;
}

.side-card dd {
    margin: 0 0 14px;
    color: var(--gray-950);
    font-weight: 700;
}

.side-card dd a {
    color: var(--green-700);
}

.pager-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.pager-links a {
    text-align: center;
    color: #ffffff;
    background: var(--green-600);
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 800;
}

.site-footer {
    color: #d1fae5;
    background: var(--green-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    padding: 46px 0 28px;
}

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.site-footer p {
    max-width: 640px;
    color: #a7f3d0;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 800;
}

.footer-bottom {
    padding: 16px;
    text-align: center;
    color: #86efac;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
    .category-grid,
    .movie-grid,
    .catalogue-grid,
    .preview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .detail-grid,
    .article-layout,
    .dual-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 360px;
    }
}

@media (max-width: 820px) {
    .nav-shell {
        flex-wrap: wrap;
        gap: 14px;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        order: 4;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 8px 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 11px 0;
    }

    .top-search {
        order: 5;
        width: 100%;
    }

    .top-search input {
        width: 100%;
        flex: 1;
    }

    .home-hero {
        min-height: 780px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 24px;
        min-height: 610px;
    }

    .hero-poster {
        max-width: 240px;
        margin: 0 auto;
        transform: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading,
    .category-preview-head,
    .footer-grid {
        display: block;
    }

    .text-link,
    .category-preview-head .btn {
        margin-top: 12px;
    }

    .ranking-link,
    .wide-list .ranking-link {
        grid-template-columns: 42px 72px minmax(0, 1fr);
    }

    .ranking-link img,
    .wide-list .ranking-link img {
        width: 72px;
        height: 96px;
    }
}

@media (max-width: 560px) {
    .container,
    .hero-topline,
    .hero-track {
        width: min(100% - 22px, 1180px);
    }

    .hero-topline {
        padding-top: 34px;
    }

    .hero-track {
        min-height: 650px;
    }

    .home-hero {
        min-height: 830px;
    }

    .hero-content p,
    .lead {
        font-size: 16px;
    }

    .category-grid,
    .movie-grid,
    .catalogue-grid,
    .preview-grid,
    .filter-grid {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 46px 0;
    }

    .category-preview,
    .movie-article,
    .side-card {
        padding: 20px;
    }

    .detail-grid {
        min-height: auto;
        padding: 38px 0;
    }

    .detail-copy h1 {
        font-size: 36px;
    }

    .card-title {
        min-height: auto;
    }

    .card-desc {
        min-height: auto;
    }
}
