:root {
    --color-bg: #faf5ff;
    --color-bg-alt: #eff6ff;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-primary: #9333ea;
    --color-primary-dark: #6d28d9;
    --color-pink: #db2777;
    --color-blue: #2563eb;
    --color-card: rgba(255, 255, 255, 0.78);
    --shadow-soft: 0 24px 60px rgba(88, 28, 135, 0.16);
    --shadow-card: 0 18px 40px rgba(88, 28, 135, 0.13);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--color-text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(216, 180, 254, 0.55), transparent 32rem),
        radial-gradient(circle at 88% 12%, rgba(191, 219, 254, 0.8), transparent 30rem),
        linear-gradient(135deg, #faf5ff 0%, #fff7ed 42%, #eff6ff 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

main {
    min-height: 70vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 36px rgba(88, 28, 135, 0.12);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink), var(--color-blue));
    box-shadow: 0 12px 28px rgba(147, 51, 234, 0.3);
}

.brand-name {
    font-size: 24px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-pink), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-search {
    flex: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
    padding: 6px;
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.header-search input,
.mobile-nav input,
.home-search-strip input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--color-text);
    background: transparent;
}

.header-search input {
    padding: 0 14px;
}

.header-search button,
.mobile-nav button,
.home-search-strip button {
    border: 0;
    color: #ffffff;
    white-space: nowrap;
    border-radius: 999px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    box-shadow: 0 12px 24px rgba(147, 51, 234, 0.25);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #374151;
    font-weight: 700;
}

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

.desktop-nav a:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    border: 0;
    color: var(--color-primary);
    font-size: 24px;
    background: transparent;
}

.mobile-nav {
    display: none;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-card);
}

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

.mobile-nav form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mobile-nav input {
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(250, 245, 255, 0.9);
}

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

.mobile-nav a {
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    font-weight: 800;
}

.hero-slider {
    position: relative;
    width: min(1220px, calc(100% - 32px));
    min-height: 620px;
    margin: 28px auto 0;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: center;
    padding: 72px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(1.02);
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(88, 28, 135, 0.72), rgba(15, 23, 42, 0.38)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-backdrop {
    position: absolute;
    inset: auto 8% 12% auto;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.28);
    filter: blur(55px);
}

.hero-content,
.hero-poster-card {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
    color: #a855f7;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-content .eyebrow,
.detail-intro .eyebrow {
    color: #f0abfc;
}

.hero-content h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hero-content h1,
.hero-content h2,
.hero-content p,
.detail-intro h1,
.detail-intro p {
    color: #ffffff;
}

.hero-content h2 {
    margin: 24px 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 900;
}

.hero-content p,
.page-hero p,
.detail-intro p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.8;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags {
    margin: 24px 0 30px;
}

.hero-tags span,
.hero-tags a,
.tag-row span,
.tag-row a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 12px;
    color: #6d28d9;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.hero-actions,
.player-actions-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.primary-button,
.secondary-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    box-shadow: 0 18px 32px rgba(147, 51, 234, 0.32);
}

.secondary-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.secondary-button:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-poster-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.hero-poster-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-poster-card span {
    display: block;
    padding: 18px;
    color: #ffffff;
    font-weight: 900;
    text-align: center;
}

.hero-controls {
    position: absolute;
    z-index: 2;
    left: 72px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 26px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.5;
}

.hero-dots button.is-active {
    width: 30px;
    opacity: 1;
    background: linear-gradient(90deg, #ffffff, #f0abfc);
}

.home-search-strip,
.content-section,
.page-hero,
.detail-hero {
    width: min(1220px, calc(100% - 32px));
    margin: 34px auto 0;
}

.home-search-strip {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 540px);
    align-items: center;
    gap: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
}

.home-search-strip h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 950;
}

.home-search-strip form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
}

.home-search-strip input {
    padding: 0 16px;
}

.content-section {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
}

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

.section-heading p {
    margin: 0 0 6px;
    color: var(--color-primary);
    font-weight: 900;
    letter-spacing: 0.16em;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 950;
}

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

.small-heading {
    align-items: start;
    flex-direction: column;
    gap: 0;
}

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

.category-tile {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.92), rgba(219, 39, 119, 0.82), rgba(37, 99, 235, 0.82));
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(147, 51, 234, 0.18);
}

.category-tile::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -34px;
    bottom: -42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.category-tile span,
.category-tile strong,
.category-tile em {
    position: relative;
    z-index: 1;
}

.category-tile span {
    font-weight: 900;
    opacity: 0.86;
}

.category-tile strong {
    font-size: 26px;
    font-weight: 950;
}

.category-tile em {
    font-style: normal;
    opacity: 0.9;
}

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

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

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 32px rgba(88, 28, 135, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 50px rgba(88, 28, 135, 0.18);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.movie-year {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 9px;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.72);
    font-size: 12px;
    font-weight: 900;
}

.movie-info {
    padding: 15px;
}

.movie-meta-line {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.movie-info h3 {
    margin: 8px 0;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
}

.movie-info p {
    min-height: 58px;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}

.movie-info .tag-row {
    margin-top: 12px;
}

.tag-row span,
.tag-row a {
    color: var(--color-primary);
    background: #f3e8ff;
}

.ranking-panel,
.category-overview-card,
.rank-block {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 32px rgba(88, 28, 135, 0.1);
    backdrop-filter: blur(16px);
}

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

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

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

.compact-card {
    display: grid;
    grid-template-columns: auto 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(250, 245, 255, 0.75);
    transition: transform 0.2s ease, background 0.2s ease;
}

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

.compact-card img {
    width: 76px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.compact-card-body {
    min-width: 0;
}

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

.compact-card strong {
    color: #111827;
    font-size: 15px;
    font-weight: 950;
}

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

.rank-num {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    font-weight: 950;
    font-size: 12px;
}

.page-hero,
.detail-hero {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
}

.page-hero {
    padding: 72px;
    background:
        linear-gradient(135deg, rgba(88, 28, 135, 0.9), rgba(219, 39, 119, 0.76), rgba(37, 99, 235, 0.8)),
        linear-gradient(135deg, #7e22ce, #db2777);
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

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

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

.category-overview-head {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}

.category-overview-head > span {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    font-weight: 950;
}

.category-overview-head h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 950;
}

.category-overview-head p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.7;
}

.category-overview-head strong {
    color: var(--color-primary);
    white-space: nowrap;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 150px auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(250, 245, 255, 0.82);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: #ffffff;
}

.filter-count {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 14px;
    color: var(--color-primary);
    background: #ffffff;
    font-weight: 900;
}

.detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 56px;
    background:
        radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.38), transparent 25rem),
        linear-gradient(135deg, #111827, #581c87 48%, #1e3a8a);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

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

.player-card,
.detail-section {
    margin-bottom: 24px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 32px rgba(88, 28, 135, 0.1);
}

.player-frame {
    overflow: hidden;
    border-radius: 20px;
    background: #030712;
}

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

.player-actions-row {
    margin-top: 16px;
}

.player-actions-row span {
    color: var(--color-muted);
    font-weight: 800;
}

.detail-section h2,
.rank-block h2 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 950;
}

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

.info-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.info-table div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(250, 245, 255, 0.9);
}

.info-table dt {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
}

.info-table dd {
    margin: 5px 0 0;
    font-weight: 900;
}

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

.rank-block {
    padding: 24px;
}

.rank-block-wide {
    grid-column: 1 / -1;
}

.site-footer {
    width: min(1220px, calc(100% - 32px));
    margin: 48px auto 28px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 950;
}

.footer-grid p {
    margin: 14px 0 0;
    color: var(--color-muted);
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-primary);
    background: #f3e8ff;
    font-weight: 800;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(147, 51, 234, 0.12);
    color: var(--color-muted);
    text-align: center;
    font-weight: 800;
}

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

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

    .hero-slide,
    .detail-hero,
    .split-layout,
    .detail-layout,
    .home-search-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        padding: 48px;
    }

    .hero-poster-card {
        display: none;
    }

    .ranking-panel {
        position: static;
    }

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

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

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

@media (max-width: 720px) {
    .header-inner {
        height: 66px;
    }

    .brand-name {
        font-size: 20px;
    }

    .hero-slider {
        min-height: 620px;
        border-radius: 24px;
    }

    .hero-slide,
    .page-hero,
    .detail-hero,
    .content-section,
    .site-footer,
    .home-search-strip {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-controls {
        left: 22px;
        bottom: 22px;
    }

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

    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid,
    .rankings-layout,
    .compact-list.two-column,
    .filter-panel,
    .info-table {
        grid-template-columns: 1fr;
    }

    .category-overview-head {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .category-overview-head strong {
        grid-column: 2;
    }
}
