:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-500: #64748b;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    --white: #ffffff;
    --shadow-card: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 20px 35px rgba(15, 23, 42, 0.16);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--secondary-900);
    background: linear-gradient(180deg, var(--secondary-50), #ffffff 34%, var(--secondary-50));
}

body.menu-open {
    overflow: hidden;
}

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: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    color: #ffffff;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.page-main + .site-footer ~ .site-header {
    color: var(--secondary-900);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

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

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

.brand {
    font-size: clamp(20px, 3vw, 28px);
}

.brand-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.28);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 650;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--primary-400);
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active,
.site-header.is-open .desktop-nav a:hover,
.site-header.is-open .desktop-nav a.is-active {
    color: var(--primary-600);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    border-radius: 12px;
    color: inherit;
    background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 12px 18px 20px;
    color: var(--secondary-800);
    background: #ffffff;
    border-top: 1px solid var(--secondary-200);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.mobile-nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--primary-700);
    background: var(--primary-50);
}

.hero {
    position: relative;
    height: 78vh;
    min-height: 620px;
    overflow: hidden;
    background: var(--secondary-900);
}

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.36), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.67) 42%, rgba(2, 6, 23, 0.15) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.95), transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 76px;
}

.hero-copy {
    width: min(720px, 100%);
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.24);
}

.hero-copy h1,
.inner-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(42px, 8vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-copy p {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2.4vw, 23px);
    line-height: 1.75;
}

.hero-tags,
.detail-tags,
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: var(--primary-700);
    font-size: 13px;
    font-weight: 700;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: 999px;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
}

.hero-actions,
.detail-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;
    font-weight: 800;
    border-radius: 14px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 14px 26px rgba(2, 132, 199, 0.28);
}

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

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.hero-search {
    position: absolute;
    z-index: 6;
    right: 50%;
    bottom: 78px;
    display: flex;
    width: min(520px, calc(100% - 32px));
    padding: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    transform: translateX(50%);
}

.hero-search input,
.list-tools input,
.list-tools select {
    width: 100%;
    border: 1px solid var(--secondary-200);
    outline: 0;
    color: var(--secondary-900);
    background: #ffffff;
}

.hero-search input {
    min-width: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
}

.hero-search button {
    flex: 0 0 auto;
    padding: 0 20px;
    color: #ffffff;
    font-weight: 800;
    border: 0;
    border-radius: 12px;
    background: var(--primary-600);
}

.section {
    padding: 76px 0;
}

.muted {
    background: var(--secondary-100);
}

.section-title {
    margin-bottom: 34px;
    text-align: center;
}

.section-title span {
    color: var(--primary-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 8px 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-title p {
    width: min(700px, 100%);
    margin: 0 auto;
    color: var(--secondary-500);
    font-size: 16px;
    line-height: 1.8;
}

.section-title.light {
    color: #ffffff;
}

.section-title.light span,
.section-title.light p {
    color: rgba(255, 255, 255, 0.78);
}

.split-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.split-title p {
    margin: 0;
}

.more-link {
    color: var(--primary-700);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary-200);
}

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

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

.poster-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    background: rgba(2, 132, 199, 0.88);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.28);
}

.card-body {
    padding: 18px;
}

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

.card-meta span,
.rank-meta span {
    padding: 3px 8px;
    background: var(--secondary-100);
    border-radius: 999px;
}

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-main h3 a:hover,
.compact-card:hover strong {
    color: var(--primary-600);
}

.movie-card p {
    min-height: 52px;
    margin: 0 0 14px;
    color: var(--secondary-500);
    font-size: 14px;
    line-height: 1.7;
}

.hot-section {
    padding: 76px 0;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

.hot-scroll {
    display: grid;
    grid-auto-columns: minmax(280px, 330px);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scrollbar-width: none;
}

.hot-scroll::-webkit-scrollbar {
    display: none;
}

.hot-card {
    min-width: 280px;
}

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

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

.category-tile {
    min-height: 190px;
    padding: 24px;
    background:
        radial-gradient(circle at 86% 12%, rgba(14, 165, 233, 0.15), transparent 34%),
        #ffffff;
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover {
    border-color: rgba(14, 165, 233, 0.42);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.category-tile p {
    margin: 0 0 16px;
    color: var(--secondary-500);
    line-height: 1.75;
}

.category-tile div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tile span {
    max-width: 100%;
    padding: 5px 9px;
    overflow: hidden;
    color: var(--primary-700);
    font-size: 12px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: var(--primary-50);
    border-radius: 999px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--secondary-200);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

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

.rank-cover {
    overflow: hidden;
    width: 92px;
    aspect-ratio: 16 / 10;
    background: var(--secondary-200);
    border-radius: 14px;
}

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

.rank-main h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.rank-main p {
    margin: 0 0 10px;
    color: var(--secondary-500);
    line-height: 1.65;
}

.rank-score {
    color: var(--primary-700);
    font-size: 20px;
}

.page-main {
    padding-top: 76px;
}

.inner-hero {
    padding: 88px 0 62px;
    background:
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff, var(--secondary-50));
    border-bottom: 1px solid var(--secondary-200);
}

.inner-hero.dark-panel {
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.38), transparent 34%),
        linear-gradient(135deg, var(--secondary-900), var(--secondary-800));
}

.inner-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--secondary-500);
    font-size: 18px;
    line-height: 1.8;
}

.inner-hero.dark-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.list-tools {
    display: flex;
    gap: 12px;
    max-width: 720px;
    margin-top: 28px;
}

.list-tools input,
.list-tools select {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
}

.list-tools select {
    flex: 0 0 170px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: #ffffff;
    background: var(--secondary-900);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) saturate(1.1);
    transform: scale(1.06);
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 20%, rgba(14, 165, 233, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.28)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent 52%);
}

.detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    min-height: 620px;
    padding-top: 96px;
    padding-bottom: 56px;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4.2;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    box-shadow: 0 24px 45px rgba(2, 6, 23, 0.34);
}

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.detail-copy p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.8;
}

.detail-tags {
    margin-top: 24px;
}

.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

.detail-content {
    margin-top: -80px;
    position: relative;
    z-index: 4;
}

.player-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--secondary-200);
    border-radius: 24px;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

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

.video-box video,
.player-cover,
.player-cover img {
    width: 100%;
    height: 100%;
}

.video-box video {
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: #ffffff;
    background: #020617;
}

.player-cover[hidden] {
    display: none;
}

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

.player-cover span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(2, 132, 199, 0.34);
    transform: translate(-50%, -50%);
}

.player-caption {
    padding: 22px 26px 26px;
}

.player-caption h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.player-caption p {
    margin: 0;
    color: var(--secondary-500);
    line-height: 1.8;
}

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

.text-panel {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--secondary-200);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.text-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.text-panel p {
    margin: 0;
    color: var(--secondary-700);
    line-height: 1.9;
}

.detail-nav-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.detail-nav-links a {
    max-width: 48%;
    padding: 13px 16px;
    overflow: hidden;
    color: var(--primary-700);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #ffffff;
    border: 1px solid var(--secondary-200);
    border-radius: 14px;
}

.compact-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--secondary-200);
    border-radius: 16px;
}

.compact-card img {
    width: 82px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
}

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

.compact-card em {
    margin-top: 4px;
    color: var(--secondary-500);
    font-size: 13px;
    font-style: normal;
}

.site-footer {
    color: var(--secondary-300);
    background: var(--secondary-900);
}

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

.footer-brand {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
}

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

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

.site-footer a:not(.footer-brand) {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-300);
}

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

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

.is-hidden {
    display: none !important;
}

@media (max-width: 1100px) {
    .movie-grid,
    .small-grid,
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .mobile-toggle {
        display: block;
    }

    .site-header.is-open .mobile-nav {
        display: block;
    }

    .hero {
        min-height: 680px;
        height: 88vh;
    }

    .hero-arrow {
        display: none;
    }

    .hero-search {
        bottom: 70px;
    }

    .movie-grid,
    .small-grid,
    .catalog-grid,
    .category-grid,
    .category-grid.wide,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        width: min(300px, 80%);
    }

    .rank-row {
        grid-template-columns: 42px 76px minmax(0, 1fr);
    }

    .rank-score {
        grid-column: 3;
        justify-self: start;
        font-size: 16px;
    }

    .split-title,
    .list-tools,
    .detail-nav-links {
        display: grid;
    }

    .list-tools select,
    .detail-nav-links a {
        max-width: none;
        width: 100%;
    }
}

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

    .hero-copy h1,
    .inner-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero-search {
        display: grid;
        gap: 8px;
    }

    .hero-search input,
    .hero-search button {
        min-height: 44px;
    }

    .section {
        padding: 56px 0;
    }

    .card-body,
    .text-panel {
        padding: 18px;
    }
}
