:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --text: #1f2937;
    --muted: #64748b;
    --line: #e5e7eb;
    --orange: #f97316;
    --pink: #ec4899;
    --yellow: #f59e0b;
    --slate: #0f172a;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --soft-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

[hidden] {
    display: none !important;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 22px;
    color: #111827;
    white-space: nowrap;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
    font-size: 15px;
}

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

.nav-link {
    color: #374151;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.header-search {
    display: flex;
    align-items: center;
    position: relative;
}

.header-search input {
    width: 220px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 10px 74px 10px 18px;
    outline: none;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search input:focus,
.inline-filter input:focus,
.large-search input:focus,
.local-search input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button {
    position: absolute;
    right: 4px;
    height: 34px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #111827;
}

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

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 700;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    min-width: 0;
    flex: 1;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 10px 12px;
}

.mobile-panel button {
    border: 0;
    border-radius: 14px;
    padding: 10px 16px;
    color: #ffffff;
    background: var(--orange);
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 30%, rgba(236, 72, 153, 0.28), transparent 30%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.86) 0%, rgba(2, 6, 23, 0.56) 42%, rgba(2, 6, 23, 0.12) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.1) 52%, rgba(2, 6, 23, 0.24) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    max-width: 720px;
    margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(15, 23, 42, 0.36);
    backdrop-filter: blur(16px);
    font-weight: 800;
}

.hero-content h1,
.hero-content h2 {
    margin: 0;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.hero-content h2 + h2,
.hero-content h1 + h2 {
    margin-top: 12px;
    color: #fed7aa;
    font-size: clamp(24px, 3.6vw, 42px);
}

.hero-content p {
    max-width: 640px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 16px 30px rgba(236, 72, 153, 0.26);
}

.btn.ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn.full {
    width: 100%;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.46);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.quick-search-section {
    margin-top: -46px;
    position: relative;
    z-index: 8;
}

.quick-search-card {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 460px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-search-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.quick-search-card p {
    margin: 0;
    color: var(--muted);
}

.large-search,
.inline-filter {
    display: flex;
    gap: 10px;
}

.large-search input,
.inline-filter input,
.local-search input {
    min-width: 0;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 13px 18px;
    outline: none;
    background: #ffffff;
}

.large-search button,
.inline-filter button {
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    cursor: pointer;
    font-weight: 900;
}

.section-block,
.split-section,
.category-overview-grid,
.detail-content-grid,
.player-section {
    margin-top: 56px;
}

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

.section-heading span,
.page-hero span {
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
}

.section-heading a,
.text-link {
    color: var(--orange);
    font-weight: 900;
}

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

.section-heading.compact h2 {
    font-size: 28px;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #fce7f3);
}

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

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

.card-year,
.rank-badge,
.play-corner {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
}

.card-year {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 12px;
}

.rank-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-size: 12px;
}

.play-corner {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.card-content {
    padding: 16px;
}

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

.card-content h2 {
    margin: 8px 0 6px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
}

.card-content h2 a:hover {
    color: var(--orange);
}

.card-content p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.card-tags span,
.tag-cloud span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #9a3412;
    background: #fff7ed;
    font-size: 12px;
    font-weight: 800;
}

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

.section-panel {
    border-radius: var(--radius);
    padding: 26px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.rank-panel {
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

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

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

.mini-card {
    display: grid;
    grid-template-columns: 36px 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    transition: transform 0.25s ease, background 0.25s ease;
}

.mini-card:hover {
    transform: translateX(4px);
    background: #ffffff;
}

.mini-card img {
    width: 56px;
    height: 76px;
    border-radius: 12px;
    object-fit: cover;
    background: #fed7aa;
}

.mini-rank {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-size: 12px;
    font-weight: 900;
}

.mini-card strong,
.mini-card em {
    display: block;
}

.mini-card strong {
    color: #111827;
    line-height: 1.35;
}

.mini-card em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.category-card {
    display: grid;
    gap: 8px;
    min-height: 118px;
    padding: 20px;
    border-radius: 22px;
    color: #111827;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.category-card:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    transform: translateY(-5px);
}

.category-card strong {
    font-size: 20px;
}

.category-card span {
    color: var(--muted);
    font-size: 14px;
}

.category-card:hover span {
    color: rgba(255, 255, 255, 0.84);
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.38), transparent 34%),
        linear-gradient(135deg, #111827 0%, #1e293b 46%, #7c2d12 100%);
}

.page-hero.slim-hero {
    padding: 70px 0;
}

.page-hero h1 {
    max-width: 820px;
    margin: 8px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.inline-filter {
    max-width: 560px;
    margin-top: 26px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-cover {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: 18px;
    background: #fed7aa;
}

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

.category-cover span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(10px);
    font-weight: 900;
    text-align: center;
}

.category-overview-card h2 {
    margin: 4px 0 8px;
    font-size: 24px;
}

.category-overview-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.category-overview-card ul {
    margin: 0 0 14px;
    padding-left: 18px;
    color: #374151;
}

.local-search input {
    width: 240px;
}

.empty-state {
    margin: 28px 0 0;
    padding: 22px;
    border-radius: 18px;
    color: var(--muted);
    background: #ffffff;
    text-align: center;
    box-shadow: var(--soft-shadow);
}

.detail-hero {
    padding: 42px 0 110px;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 8%, rgba(236, 72, 153, 0.34), transparent 34%),
        linear-gradient(135deg, #020617 0%, #111827 50%, #7c2d12 100%);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fed7aa;
}

.detail-heading {
    margin-top: 34px;
}

.detail-heading span {
    color: #fed7aa;
    font-weight: 900;
}

.detail-heading h1 {
    max-width: 920px;
    margin: 10px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.detail-heading p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.player-section {
    margin-top: -72px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.36));
    cursor: pointer;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.32);
    font-size: 34px;
    transform: translateX(3px);
}

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

.detail-content-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.detail-poster-card,
.detail-article {
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.detail-poster-card {
    position: sticky;
    top: 96px;
    overflow: hidden;
    padding: 16px;
}

.detail-poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 18px;
    object-fit: cover;
    background: #fed7aa;
    margin-bottom: 16px;
}

.detail-article {
    padding: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.info-grid div {
    padding: 16px;
    border-radius: 16px;
    background: #f8fafc;
}

.info-grid strong,
.info-grid span {
    display: block;
}

.info-grid strong {
    color: var(--muted);
    font-size: 13px;
}

.info-grid span {
    margin-top: 6px;
    color: #111827;
    font-weight: 900;
}

.info-grid a {
    color: var(--orange);
}

.detail-article h2 {
    margin: 28px 0 10px;
    color: #111827;
    font-size: 28px;
}

.detail-article p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.related-section {
    margin-bottom: 70px;
}

.site-footer {
    margin-top: 70px;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
    padding: 48px 0;
}

.footer-logo {
    color: #ffffff;
}

.footer-brand p {
    max-width: 440px;
    color: #94a3b8;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links h2 {
    margin: 0 0 8px;
    color: #fb923c;
    font-size: 18px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 16px;
    color: #94a3b8;
    text-align: center;
}

@media (max-width: 1100px) {
    .archive-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

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

    .hero-carousel {
        height: 560px;
    }

    .hero-content {
        max-width: none;
        margin-left: 16px;
        margin-right: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .quick-search-card,
    .footer-inner,
    .detail-content-grid,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

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

    .detail-poster-card {
        position: static;
    }
}

@media (max-width: 680px) {
    .header-inner {
        min-height: 64px;
    }

    .site-logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

    .hero-carousel {
        height: 520px;
    }

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

    .hero-actions,
    .large-search,
    .inline-filter {
        flex-direction: column;
    }

    .featured-grid,
    .compact-grid,
    .archive-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .section-panel,
    .quick-search-card,
    .detail-article {
        padding: 20px;
    }

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

    .local-search input {
        width: 100%;
    }

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

    .player-overlay span {
        width: 66px;
        height: 66px;
        font-size: 26px;
    }
}

@media (max-width: 430px) {
    .featured-grid,
    .compact-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .movie-card {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

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

    .card-content h2 {
        font-size: 16px;
    }

    .card-content p {
        -webkit-line-clamp: 3;
    }
}
