:root {
    --stone-950: #1c1917;
    --stone-900: #292524;
    --stone-850: #34302d;
    --stone-800: #44403c;
    --stone-700: #57534e;
    --stone-600: #78716c;
    --stone-500: #a8a29e;
    --stone-300: #d6d3d1;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-300: #fcd34d;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(41, 37, 36, 0.16);
    --soft-shadow: 0 10px 28px rgba(41, 37, 36, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--stone-900);
    background: linear-gradient(180deg, var(--stone-100), #ece8e3 55%, #fafaf9);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--stone-900), var(--stone-800), var(--stone-900));
    box-shadow: 0 8px 28px rgba(28, 25, 23, 0.25);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}

.brand-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.08;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.brand-text small {
    margin-top: 4px;
    color: var(--stone-300);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--stone-200);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
    background: rgba(217, 119, 6, 0.9);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 14px;
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.hero {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--stone-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.7s ease, transform 1.1s ease;
    pointer-events: none;
}

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.66;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 18%, rgba(245, 158, 11, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(28, 25, 23, 0.96), rgba(28, 25, 23, 0.58), rgba(28, 25, 23, 0.16)),
        linear-gradient(0deg, rgba(28, 25, 23, 0.98), transparent 46%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 142px;
    transform: translateX(-50%);
    color: var(--white);
}

.hero-content h1,
.hero-content h2 {
    width: min(760px, 100%);
    margin: 10px 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-content p:not(.hero-kicker) {
    width: min(720px, 100%);
    margin: 0 0 28px;
    color: var(--stone-200);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.75;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: var(--amber-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-kicker {
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(217, 119, 6, 0.95);
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: var(--amber-600);
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.34);
}

.primary-button:hover {
    background: var(--amber-500);
    transform: translateY(-2px);
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.ghost-button:hover {
    color: var(--stone-900);
    background: var(--white);
}

.hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    transform: translateX(-50%);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--amber-500);
}

.hero-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(600px, 100%);
}

.mini-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    color: var(--white);
    background: rgba(41, 37, 36, 0.55);
    box-shadow: 0 16px 32px rgba(28, 25, 23, 0.28);
    backdrop-filter: blur(16px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
    transform: translateY(-3px);
    background: rgba(41, 37, 36, 0.75);
}

.mini-card img {
    width: 78px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--stone-800);
}

.mini-card span {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.mini-card strong,
.mini-card small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card small {
    color: var(--stone-300);
}

.page-section {
    padding: 56px 0 0;
}

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

.section-heading h2 {
    margin: 8px 0 8px;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: -0.04em;
}

.section-heading p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--stone-600);
    line-height: 1.7;
}

.section-link {
    color: var(--stone-900);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    white-space: nowrap;
}

.section-link:hover {
    color: var(--white);
    background: var(--stone-900);
    transform: translateY(-2px);
}

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

.category-card,
.category-overview-card {
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(214, 211, 209, 0.72);
    border-radius: 24px;
    background: linear-gradient(140deg, var(--white), rgba(255, 251, 235, 0.86));
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
    border-color: rgba(217, 119, 6, 0.38);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-card span,
.category-overview-card h2 {
    display: block;
    margin: 0 0 12px;
    color: var(--stone-900);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.category-card strong,
.category-overview-card p {
    color: var(--stone-600);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

.category-samples {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.category-samples a {
    overflow: hidden;
    color: var(--stone-700);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-samples a:hover {
    color: var(--amber-700);
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 190px 190px;
    gap: 14px;
    margin: 0 0 24px;
    padding: 14px;
    border: 1px solid rgba(214, 211, 209, 0.8);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
}

.search-box,
.select-box {
    display: grid;
    gap: 8px;
}

.search-box span,
.select-box span {
    color: var(--stone-600);
    font-size: 12px;
    font-weight: 800;
}

.search-box input,
.select-box select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--stone-200);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--stone-900);
    background: var(--white);
    outline: none;
}

.search-box input:focus,
.select-box select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(214, 211, 209, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card[hidden] {
    display: none;
}

.movie-card:hover {
    border-color: rgba(217, 119, 6, 0.36);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5.45;
    overflow: hidden;
    background: var(--stone-800);
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.05);
}

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    overflow: hidden;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(217, 119, 6, 0.92);
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card-body {
    padding: 16px;
}

.movie-card-body h2,
.movie-card-body h3 {
    display: -webkit-box;
    min-height: 52px;
    margin: 8px 0 10px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.movie-card-body h2 a:hover,
.movie-card-body h3 a:hover {
    color: var(--amber-700);
}

.card-desc {
    display: -webkit-box;
    min-height: 66px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--stone-600);
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.58;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list span {
    display: inline-flex;
    max-width: 100%;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--amber-700);
    background: #fff7ed;
    font-size: 12px;
    font-weight: 800;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.ranking-panel,
.side-card {
    border: 1px solid rgba(214, 211, 209, 0.8);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
}

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
}

.ranking-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.ranking-head h2 {
    margin: 8px 0 0;
    font-size: 26px;
}

.ranking-head a {
    color: var(--amber-700);
    font-weight: 800;
}

.ranking-list,
.ranking-page-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li + li {
    border-top: 1px solid var(--stone-200);
}

.ranking-list a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 13px 0;
}

.ranking-list span,
.rank-number {
    color: var(--amber-600);
    font-weight: 900;
}

.ranking-list strong,
.ranking-list em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-list em {
    color: var(--stone-500);
    font-size: 12px;
    font-style: normal;
}

.inner-hero {
    margin-top: 42px;
    padding: 52px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 84% 12%, rgba(245, 158, 11, 0.35), transparent 28%),
        linear-gradient(135deg, var(--stone-950), var(--stone-800));
    box-shadow: var(--shadow);
}

.inner-hero h1 {
    width: min(840px, 100%);
    margin: 10px 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.inner-hero p:last-child {
    width: min(780px, 100%);
    margin: 0;
    color: var(--stone-200);
    font-size: 18px;
    line-height: 1.75;
}

.inline-rail {
    margin-top: 24px;
}

.category-hero .mini-card,
.ranking-hero .primary-button {
    margin-top: 22px;
}

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

.rank-row {
    margin-bottom: 12px;
}

.rank-row a {
    display: grid;
    grid-template-columns: 52px 74px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px 18px;
    border: 1px solid rgba(214, 211, 209, 0.8);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(41, 37, 36, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row a:hover {
    box-shadow: var(--soft-shadow);
    transform: translateY(-3px);
}

.rank-row img {
    width: 74px;
    height: 92px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--stone-800);
}

.rank-main {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.rank-main strong,
.rank-main small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-main strong {
    font-size: 19px;
}

.rank-main small,
.rank-row em {
    color: var(--stone-600);
    font-style: normal;
}

.watch-page {
    padding-top: 28px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: var(--stone-600);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--amber-700);
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.watch-main,
.detail-side {
    min-width: 0;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: var(--stone-950);
    box-shadow: var(--shadow);
}

.player-card video,
.player-cover,
.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.player-card video {
    z-index: 1;
    object-fit: contain;
    background: var(--stone-950);
}

.player-cover {
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.player-cover.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.player-cover img {
    object-fit: cover;
    opacity: 0.45;
}

.player-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.28), transparent 28%),
        linear-gradient(0deg, rgba(28, 25, 23, 0.82), rgba(28, 25, 23, 0.36));
}

.play-circle,
.player-cover strong {
    position: relative;
    z-index: 1;
}

.play-circle {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 50%;
    background: var(--amber-600);
    box-shadow: 0 18px 42px rgba(217, 119, 6, 0.36);
    font-size: 34px;
    transform: translateX(3px);
}

.player-cover strong {
    margin-top: 108px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.detail-copy {
    margin-top: 26px;
    padding: 30px;
    border: 1px solid rgba(214, 211, 209, 0.8);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
}

.detail-copy h1 {
    margin: 8px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-copy h2,
.side-card h2 {
    margin: 26px 0 10px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.detail-copy p {
    margin: 0 0 14px;
    color: var(--stone-700);
    font-size: 16px;
    line-height: 1.9;
}

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

.detail-poster {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    background: var(--stone-800);
    box-shadow: var(--shadow);
}

.side-card {
    margin-top: 18px;
    padding: 22px;
}

.side-card h2 {
    margin-top: 0;
}

.side-card dl {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px 12px;
    margin: 0;
}

.side-card dt {
    color: var(--stone-500);
    font-weight: 800;
}

.side-card dd {
    min-width: 0;
    margin: 0;
    color: var(--stone-800);
    line-height: 1.55;
}

.site-footer {
    margin-top: 72px;
    color: var(--stone-300);
    background: linear-gradient(180deg, var(--stone-900), var(--stone-950));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    padding: 48px 0 34px;
}

.footer-brand p {
    width: min(520px, 100%);
    color: var(--stone-500);
    line-height: 1.8;
}

.brand-footer .brand-text strong,
.site-footer h2 {
    color: var(--white);
}

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

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

.site-footer a:hover {
    color: var(--amber-500);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(231, 229, 228, 0.12);
    color: var(--stone-500);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

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

    .menu-button {
        display: block;
    }

    .hero-bottom {
        align-items: start;
        flex-direction: column;
    }

    .hero-rail {
        width: 100%;
    }

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

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

    .split-layout,
    .watch-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }

    .detail-side {
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 18px;
    }

    .side-card {
        margin-top: 0;
    }
}

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

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        min-height: 640px;
        height: 78vh;
    }

    .hero-content {
        bottom: 238px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 38px;
    }

    .hero-rail {
        grid-template-columns: 1fr;
    }

    .mini-card:nth-child(n + 3) {
        display: none;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

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

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .inner-hero {
        margin-top: 24px;
        padding: 28px;
    }

    .rank-row a {
        grid-template-columns: 44px 62px minmax(0, 1fr);
    }

    .rank-row em {
        display: none;
    }

    .detail-side {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(260px, 100%);
        margin: 0 auto;
    }

    .detail-copy {
        padding: 22px;
    }

    .play-circle {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .poster-link {
        aspect-ratio: 16 / 10;
    }

    .movie-card-body h2,
    .movie-card-body h3 {
        min-height: auto;
    }

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