:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #a855f7;
    --blue: #60a5fa;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #fff7fb;
    --shadow: 0 18px 45px rgba(79, 70, 229, 0.16);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #fff1f8 0%, #f5f0ff 48%, #edf7ff 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(244, 114, 182, 0.96), rgba(192, 132, 252, 0.96), rgba(96, 165, 250, 0.96));
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.25);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
    transition: transform 0.28s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-4deg);
}

.brand-text {
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: 0.02em;
}

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

.desktop-nav > a,
.nav-dropdown > button {
    border: 0;
    padding: 8px 0;
    color: #fff;
    background: transparent;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown:hover > button {
    color: #fff7fb;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 220px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #4b5563;
    font-weight: 700;
}

.nav-dropdown-panel a:hover {
    color: var(--pink-dark);
    background: #fdf2f8;
}

.header-search {
    position: relative;
    width: min(280px, 28vw);
}

.header-search input,
.mobile-search input,
.search-page-box input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #374151;
    outline: none;
}

.header-search input {
    padding: 11px 46px 11px 18px;
}

.header-search button {
    position: absolute;
    top: 50%;
    right: 8px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--pink-dark);
    background: #fff;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 28px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

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

.mobile-nav a {
    display: block;
    padding: 10px 2px;
    color: #fff;
    font-weight: 700;
}

.mobile-search {
    display: flex;
    gap: 8px;
    padding-top: 14px;
}

.mobile-search input {
    padding: 10px 14px;
}

.mobile-search button,
.search-page-box button,
.filter-panel button {
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--pink);
    font-weight: 800;
}

.mobile-search button {
    padding: 0 18px;
}

.hero-section {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #111827;
}

.hero-bg,
.detail-backdrop {
    position: absolute;
    inset: 0;
}

.hero-bg img,
.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade,
.detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.78), rgba(17, 24, 39, 0.56), rgba(17, 24, 39, 0.08));
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 610px;
    padding: 80px 0;
}

.hero-copy {
    max-width: 720px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    background: var(--pink);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.36);
    font-weight: 800;
}

.hero-copy h1,
.inner-hero h1,
.detail-info h1 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero-copy h1 {
    max-width: 800px;
    font-size: clamp(42px, 7vw, 76px);
}

.hero-copy p {
    max-width: 700px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}

.tag-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 14px;
}

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

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

.primary-button {
    color: #fff;
    background: var(--pink);
    box-shadow: 0 14px 28px rgba(236, 72, 153, 0.32);
}

.primary-button:hover {
    background: var(--pink-dark);
    transform: translateY(-2px) scale(1.02);
}

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

.hero-panel {
    margin-left: auto;
    width: 220px;
    padding: 28px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.hero-panel span,
.hero-panel small {
    display: block;
    color: rgba(255, 255, 255, 0.82);
}

.hero-panel strong {
    display: block;
    margin: 8px 0;
    font-size: 54px;
    line-height: 1;
}

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

.soft-band {
    background: linear-gradient(90deg, rgba(252, 231, 243, 0.76), rgba(243, 232, 255, 0.82), rgba(219, 234, 254, 0.74));
}

.white-band {
    background: rgba(255, 255, 255, 0.82);
}

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

.section-heading h2 {
    display: inline;
    margin: 0 0 0 8px;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
}

.section-heading p {
    margin: 8px 0 0 42px;
    color: var(--muted);
}

.section-icon {
    font-size: 26px;
}

.section-more,
.text-link {
    color: var(--pink-dark);
    font-weight: 900;
}

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

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 26px rgba(31, 41, 55, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(236, 72, 153, 0.18);
}

.cover-frame {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f9a8d4, #c4b5fd, #93c5fd);
}

.cover-frame::after {
    content: attr(data-fallback);
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    line-height: 1.35;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.82), rgba(124, 58, 237, 0.78));
}

.cover-frame.has-missing-image::after {
    display: flex;
}

.cover-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.2s ease;
}

.movie-card:hover .cover-frame img {
    transform: scale(1.08);
}

.cover-frame img.is-missing {
    opacity: 0;
}

.movie-card > .cover-frame {
    aspect-ratio: 4 / 3;
}

.cover-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.82), transparent);
}

.category-badge,
.duration-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.category-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: var(--pink);
}

.duration-badge {
    right: 12px;
    bottom: 12px;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.68);
}

.card-body,
.large-body,
.horizontal-body,
.compact-body {
    display: grid;
    gap: 10px;
}

.card-body {
    padding: 16px;
}

.card-body strong,
.horizontal-body strong,
.compact-body strong {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-body small,
.horizontal-body small,
.compact-body small,
.large-body span:first-child {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-tags span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #6b7280;
    background: #f3f4f6;
    font-size: 12px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #6b7280;
    font-size: 13px;
}

.movie-card-horizontal {
    display: flex;
    gap: 15px;
    padding: 0;
}

.horizontal-cover {
    width: 170px;
    min-height: 126px;
    flex: 0 0 170px;
}

.horizontal-body {
    align-content: space-between;
    padding: 16px 16px 16px 0;
}

.movie-card-large .large-cover {
    height: 330px;
}

.movie-card-large .large-cover strong {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 24px;
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
}

.large-body {
    padding: 18px 20px;
}

.movie-card-compact {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    box-shadow: none;
}

.compact-cover {
    width: 108px;
    aspect-ratio: 16 / 10;
    flex: 0 0 108px;
    border-radius: 12px;
}

.compact-body {
    align-content: center;
    min-width: 0;
}

.compact-body strong {
    font-size: 15px;
    -webkit-line-clamp: 2;
}

.compact-body em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.category-tile,
.category-overview-card {
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.98), rgba(243, 232, 255, 0.96));
    box-shadow: 0 10px 28px rgba(168, 85, 247, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile {
    display: grid;
    gap: 6px;
    padding: 22px 16px;
    text-align: center;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-icon {
    font-size: 34px;
}

.category-tile strong {
    font-size: 18px;
}

.category-tile small,
.category-tile em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.ranking-list,
.ranking-page-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li,
.ranking-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
}

.ranking-list li > span,
.rank-num {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    font-weight: 900;
}

.cta-panel {
    margin-bottom: 80px;
    padding: 50px;
    border-radius: 28px;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, #ec4899, #a855f7, #3b82f6);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
}

.cta-panel p {
    max-width: 780px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.inner-hero {
    padding: 84px 0 72px;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(120deg, #ec4899, #a855f7 52%, #60a5fa);
}

.inner-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
}

.inner-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}

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

.category-overview-card {
    padding: 24px;
}

.category-overview-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-overview-main strong,
.category-overview-main small {
    display: block;
}

.category-overview-main strong {
    font-size: 24px;
}

.category-overview-main small,
.category-overview-card p {
    color: var(--muted);
}

.category-overview-card p {
    min-height: 52px;
    line-height: 1.7;
}

.mini-cover-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.mini-cover {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
}

.filter-panel,
.search-page-box,
.content-card {
    margin-bottom: 28px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
}

.filter-panel h2,
.content-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.filter-panel p,
.content-card p {
    color: var(--muted);
    line-height: 1.85;
}

.filter-controls {
    display: grid;
    grid-template-columns: 2fr repeat(3, minmax(130px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    margin-top: 20px;
}

.filter-controls label {
    display: grid;
    gap: 7px;
    color: #4b5563;
    font-weight: 800;
}

.filter-controls input,
.filter-controls select {
    padding: 11px 14px;
    border: 1px solid #f3d1e4;
    background: #fff;
}

.filter-controls button {
    min-height: 44px;
    padding: 0 18px;
}

.filter-count {
    margin-bottom: 0;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #111827;
}

.detail-hero-inner {
    position: relative;
    padding: 40px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
}

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

.breadcrumb em {
    font-style: normal;
}

.detail-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 34px;
    align-items: end;
}

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: 26px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

.detail-info h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.detail-info p {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.8;
}

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

.detail-meta div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.detail-meta dt {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.detail-meta dd {
    margin: 4px 0 0;
    font-weight: 900;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.24);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-big-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(236, 72, 153, 0.86);
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.42);
    font-size: 32px;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.player-big-button:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.player-shell.is-playing .player-big-button {
    opacity: 0;
    pointer-events: none;
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    font-size: 13px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.search-page-box form {
    display: flex;
    gap: 12px;
}

.search-page-box input {
    padding: 14px 18px;
    border: 1px solid #f3d1e4;
}

.search-page-box button {
    padding: 0 26px;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1.2fr;
    gap: 34px;
    padding: 54px 0;
}

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

.site-footer p {
    max-width: 520px;
    line-height: 1.8;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: #d1d5db;
}

.site-footer a:hover {
    color: #fff;
}

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

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

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

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

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

    .menu-toggle {
        display: block;
    }

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

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

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

    .hero-panel {
        display: none;
    }
}

@media (max-width: 820px) {
    .hero-section,
    .hero-content {
        min-height: 540px;
    }

    .movie-grid,
    .large-grid,
    .horizontal-grid,
    .category-overview-grid,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .detail-poster {
        width: min(320px, 100%);
    }

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

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

    .section-heading {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 12px;
    }
}

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

    .header-inner {
        min-height: 66px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 19px;
    }

    .hero-section,
    .hero-content {
        min-height: 500px;
    }

    .hero-content {
        padding: 56px 0;
    }

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

    .movie-grid,
    .category-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal,
    .ranking-row,
    .ranking-list li {
        grid-template-columns: 1fr;
        display: grid;
    }

    .horizontal-cover {
        width: 100%;
        min-height: 200px;
    }

    .horizontal-body {
        padding: 16px;
    }

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

    .search-page-box form {
        display: grid;
    }

    .cta-panel {
        padding: 34px 20px;
    }
}
