:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(255, 255, 255, 0.11);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --soft: #94a3b8;
    --amber: #f59e0b;
    --amber-light: #fbbf24;
    --blue: #2563eb;
    --green: #22c55e;
    --danger: #ef4444;
    --radius-xl: 26px;
    --radius-lg: 18px;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 28rem),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.25), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f1b3d 45%, #020617 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
}

.top-nav {
    width: min(1180px, calc(100% - 32px));
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 800;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b, #fb923c);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.48);
}

.brand-text {
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #fde68a, #f59e0b, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: #d1d5db;
    border-radius: 12px;
    transition: 0.25s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ffffff;
    background: rgba(245, 158, 11, 0.95);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.25);
}

.nav-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    border-radius: 999px;
}

.nav-search input {
    width: 190px;
    padding: 10px 14px;
}

.nav-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    color: white;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #f8fafc;
}

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

.mobile-panel.open {
    display: block;
}

.mobile-link {
    display: block;
    padding: 13px 14px;
    margin-top: 6px;
}

.mobile-search {
    margin: 8px 0 12px;
}

.mobile-search input {
    width: 100%;
    padding: 11px 14px;
}

.hero-carousel {
    position: relative;
    height: min(690px, 82vh);
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

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

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.66) 42%, rgba(2, 6, 23, 0.15) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.95));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 90px 0 120px;
}

.hero-kicker,
.section-heading p,
.page-hero p {
    margin: 0 0 12px;
    color: var(--amber-light);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
    margin: 0;
    max-width: 820px;
    line-height: 1.06;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    background: linear-gradient(90deg, #fde68a, #f59e0b, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content h2 {
    margin-top: 16px;
    color: #ffffff;
    font-size: clamp(1.7rem, 4vw, 3.7rem);
}

.hero-summary {
    max-width: 720px;
    color: #d1d5db;
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.8;
    margin: 22px 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-meta span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 999px;
}

.hero-meta span {
    padding: 8px 13px;
}

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.32);
}

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

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
}

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

.hero-dot {
    width: 44px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
}

.hero-dot.active {
    background: linear-gradient(90deg, #f59e0b, #fb923c);
}

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

.glow-block {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.22), rgba(88, 28, 135, 0.2));
}

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

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-heading h2,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-heading a {
    color: var(--amber-light);
    font-weight: 800;
}

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

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

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

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

.card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.76), rgba(15, 23, 42, 0.9));
    border: 1px solid var(--line);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card-link:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 24px 70px rgba(245, 158, 11, 0.16);
}

.card-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 58%);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: white;
    background: rgba(239, 68, 68, 0.92);
    font-size: 0.78rem;
    font-weight: 800;
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    margin: 0 0 10px;
    color: var(--soft);
    font-size: 0.88rem;
}

.card-text {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.94rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-text.compact {
    -webkit-line-clamp: 2;
}

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

.tag-row span {
    padding: 4px 8px;
    font-size: 0.75rem;
}

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

.category-tile,
.category-overview-card a {
    display: block;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid var(--line);
    transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.45);
    background: rgba(30, 41, 59, 0.88);
}

.category-covers,
.overview-covers {
    display: grid;
    gap: 4px;
    padding: 10px;
}

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

.overview-covers {
    grid-template-columns: repeat(4, 1fr);
}

.category-covers img,
.overview-covers img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.category-tile strong,
.category-tile span,
.overview-body {
    display: block;
    padding: 0 18px;
}

.category-tile strong {
    padding-top: 12px;
    color: #ffffff;
    font-size: 1.1rem;
}

.category-tile span {
    padding-top: 8px;
    padding-bottom: 20px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 190px 190px;
    gap: 14px;
    padding: 16px;
    margin-bottom: 28px;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--line);
}

.filter-bar label {
    display: grid;
    gap: 7px;
    color: var(--soft);
    font-size: 0.86rem;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 44px;
    padding: 0 15px;
}

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

.rank-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid var(--line);
}

.rank-link {
    display: grid;
    grid-template-columns: 58px 92px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
    transition: background 0.25s ease;
}

.rank-link:hover {
    background: rgba(245, 158, 11, 0.08);
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    font-weight: 900;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.rank-link img {
    width: 92px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em,
.rank-info small {
    display: block;
}

.rank-info strong {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.rank-info em {
    color: var(--soft);
    font-style: normal;
    font-size: 0.86rem;
    margin-bottom: 5px;
}

.rank-info small {
    color: var(--muted);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.page-hero,
.detail-hero {
    position: relative;
    padding: 82px 0 32px;
}

.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 320px;
    background: radial-gradient(circle at 30% 0%, rgba(245, 158, 11, 0.18), transparent 30rem), linear-gradient(135deg, rgba(30, 64, 175, 0.2), transparent);
    pointer-events: none;
}

.page-hero > div,
.detail-layout,
.breadcrumb {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero > div {
    padding: 46px;
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.slim-hero > div {
    max-width: 950px;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 14px;
}

.page-hero span {
    display: block;
    max-width: 850px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-actions {
    margin-top: 24px;
}

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

.overview-body {
    padding: 18px 22px 24px;
}

.overview-body h2 {
    margin: 0 0 10px;
}

.overview-body p {
    color: var(--muted);
    line-height: 1.7;
}

.overview-body span {
    color: var(--amber-light);
    font-weight: 800;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--soft);
    margin-bottom: 22px;
}

.breadcrumb a:hover {
    color: var(--amber-light);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.8fr);
    gap: 28px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000000;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.24));
    cursor: pointer;
    transition: opacity 0.25s ease;
}

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

.player-start {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b, #fb923c);
    box-shadow: 0 0 44px rgba(245, 158, 11, 0.48);
    font-size: 1.65rem;
    padding-left: 4px;
}

.player-overlay strong {
    max-width: min(640px, 92%);
    font-size: clamp(1.1rem, 3vw, 2rem);
    text-align: center;
}

.detail-card,
.side-card,
.seo-copy {
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--line);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
}

.detail-card {
    margin-top: 24px;
    padding: 30px;
}

.title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.title-row p {
    margin: 0 0 10px;
    color: var(--amber-light);
    font-weight: 700;
}

.title-row h1 {
    font-size: clamp(1.9rem, 4vw, 3.3rem);
}

.title-row > span {
    min-width: max-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.9);
    font-weight: 800;
}

.lead-text {
    color: #e2e8f0;
    font-size: 1.12rem;
    line-height: 1.85;
    margin: 0 0 18px;
}

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

.detail-tags span {
    padding: 7px 11px;
    font-size: 0.88rem;
}

.detail-card h2,
.side-card h2,
.site-footer h2 {
    color: #ffffff;
    margin: 26px 0 12px;
}

.detail-card p {
    color: var(--muted);
    line-height: 1.9;
}

.detail-side {
    display: grid;
    gap: 20px;
    align-content: start;
}

.side-card {
    padding: 20px;
}

.side-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.side-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.side-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.side-card dt {
    color: var(--soft);
}

.side-card dd {
    margin: 0;
    color: #ffffff;
    text-align: right;
}

.related-list {
    display: grid;
    gap: 12px;
}

.related-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    transition: background 0.22s ease;
}

.related-item:hover {
    background: rgba(245, 158, 11, 0.1);
}

.related-item img {
    width: 82px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}

.related-item strong,
.related-item em {
    display: block;
}

.related-item strong {
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.4;
}

.related-item em {
    margin-top: 4px;
    color: var(--soft);
    font-style: normal;
    font-size: 0.82rem;
}

.seo-copy {
    width: min(950px, calc(100% - 32px));
    margin: 32px auto 86px;
    padding: 32px;
    text-align: center;
}

.seo-copy h2 {
    margin: 0 0 14px;
}

.seo-copy p {
    color: var(--muted);
    line-height: 1.9;
}

.site-footer {
    margin-top: 48px;
    padding: 56px 0 30px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), #000000);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
}

.footer-grid a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 20px;
    color: var(--soft);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

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

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

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

    .top-nav {
        height: 64px;
    }

    .hero-carousel {
        height: auto;
        min-height: 620px;
    }

    .hero-content {
        padding: 90px 0 120px;
    }

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

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

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-block;
        margin-top: 12px;
    }

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

@media (max-width: 560px) {
    .brand-text {
        font-size: 0.96rem;
    }

    .hero-carousel {
        min-height: 680px;
    }

    .hero-content h1 {
        font-size: 2.55rem;
    }

    .hero-actions,
    .page-actions {
        width: 100%;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .movie-grid,
    .featured-grid,
    .wide-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .rank-link {
        grid-template-columns: 42px 74px 1fr;
        gap: 10px;
    }

    .rank-number {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .rank-link img {
        width: 74px;
        height: 58px;
    }

    .page-hero > div,
    .detail-card {
        padding: 24px;
    }

    .title-row {
        display: block;
    }

    .title-row > span {
        display: inline-flex;
        margin-top: 14px;
    }
}
