        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --white:          #ffffff;
            --ink:            #0B0F17;
            --text-primary:   #1a1a2e;
            --text-muted:     #6b7280;
            --accent:         #C61A1A;
            --border:         rgba(0, 0, 0, 0.08);
            --shadow-header:  0 1px 0 rgba(0,0,0,0.07), 0 2px 16px rgba(0,0,0,0.05);
            --easing:         cubic-bezier(0.4, 0, 0.2, 1);
            --t:              220ms;
            --font:           'Inter', system-ui, -apple-system, sans-serif;
            --header-h:       68px;
            --max-w:          1280px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font);
            background: #f5f6f8;
            color: var(--text-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        body.menu-open { overflow: hidden; }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--white);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-header);
            height: var(--header-h);
        }

        .header-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 2rem;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 1.5rem;
        }

        .site-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .site-logo img {
            height: 34px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 0;
        }

        .main-nav a {
            display: block;
            padding: 0.45rem 0.875rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            border-radius: 6px;
            transition:
                background var(--t) var(--easing),
                color var(--t) var(--easing);
            letter-spacing: 0.015em;
            white-space: nowrap;
            position: relative;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width var(--t) var(--easing);
        }

        .main-nav a:hover {
            color: var(--ink);
            background: rgba(0, 0, 0, 0.04);
        }

        .main-nav a.active {
            color: var(--ink);
            font-weight: 600;
        }

        .main-nav a.active::after {
            width: calc(100% - 1.75rem);
        }

        .header-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.75rem;
        }

        .lang-switch {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .lang-switch a,
        .lang-switch .lang-current {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            text-decoration: none;
            line-height: 1;
            padding: 0.1rem 0;
            transition: color var(--t) var(--easing);
        }

        .lang-switch a           { color: var(--text-muted); }
        .lang-switch a:hover     { color: var(--ink); }
        .lang-switch .lang-current { color: var(--accent); cursor: default; }

        .lang-switch .lang-div {
            color: #d1d5db;
            font-weight: 300;
            font-size: 0.7rem;
            line-height: 1;
            user-select: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            width: 38px;
            height: 38px;
            border-radius: 8px;
            transition: background var(--t) var(--easing);
            flex-shrink: 0;
        }

        .hamburger:hover { background: rgba(0, 0, 0, 0.05); }

        .hamburger .bar {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: all 300ms var(--easing);
        }

        .mob-overlay {
            position: fixed;
            inset: 0;
            background: rgba(11, 15, 23, 0.45);
            z-index: 200;
            opacity: 0;
            pointer-events: none;
            transition: opacity 320ms var(--easing);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }

        .mob-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mob-menu {
            position: fixed;
            top: 0;
            right: 0;
            z-index: 300;
            width: min(360px, 100vw);
            height: 100vh;
            height: 100dvh;
            background: var(--white);
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 360ms var(--easing);
            overflow: hidden;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
        }

        .mob-menu.open { transform: translateX(0); }

        .mob-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
            height: var(--header-h);
            border-bottom: 1px solid var(--border);
            flex-shrink: 0;
        }

        .mob-head .site-logo img { height: 30px; }

        .mob-close {
            background: none;
            border: none;
            cursor: pointer;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--text-muted);
            font-size: 1.0625rem;
            transition:
                background var(--t) var(--easing),
                color var(--t) var(--easing);
        }

        .mob-close:hover {
            background: rgba(0, 0, 0, 0.06);
            color: var(--ink);
        }

        .mob-nav {
            flex: 1;
            overflow-y: auto;
            padding: 0.375rem 0;
        }

        .mob-nav ul { list-style: none; }

        .mob-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.75rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition:
                background var(--t) var(--easing),
                color var(--t) var(--easing);
        }

        .mob-nav a::after {
            content: '\203A';
            font-size: 1.25rem;
            font-weight: 300;
            color: #d1d5db;
            line-height: 1;
            transition:
                color var(--t) var(--easing),
                transform var(--t) var(--easing);
        }

        .mob-nav a:hover {
            background: rgba(198, 26, 26, 0.04);
            color: var(--accent);
        }

        .mob-nav a:hover::after {
            color: rgba(198, 26, 26, 0.4);
            transform: translateX(3px);
        }

        .mob-nav a.active { color: var(--accent); font-weight: 600; }

        .mob-lang {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.125rem 1.75rem;
            border-top: 1px solid var(--border);
            flex-shrink: 0;
            background: #fafafa;
        }

        .mob-lang a,
        .mob-lang .lang-current {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            line-height: 1;
            transition: color var(--t) var(--easing);
        }

        .mob-lang a            { color: var(--text-muted); }
        .mob-lang a:hover      { color: var(--ink); }
        .mob-lang .lang-current { color: var(--accent); cursor: default; }

        .mob-lang .lang-div {
            color: #d1d5db;
            font-weight: 300;
            font-size: 0.75rem;
            user-select: none;
        }

        @media (max-width: 900px) {
            .header-inner {
                grid-template-columns: auto 1fr;
            }
            .main-nav    { display: none; }
            .lang-switch { display: none; }
            .hamburger   { display: flex; }
        }

        @media (max-width: 480px) {
            .header-inner { padding: 0 1rem; }
            .mob-menu     { width: 100vw; }
        }

        .page-bar {
            border-bottom: 1px solid var(--border);
            background: var(--white);
        }

        .page-bar-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .page-bar-title {
            font-size: 1.375rem;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -0.03em;
            line-height: 1;
            white-space: nowrap;
        }

        .page-bar-title span {
            color: var(--accent);
        }

        .page-search {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            background: #f3f4f6;
            border: 1px solid transparent;
            border-radius: 8px;
            padding: 0.5rem 0.875rem;
            width: min(280px, 100%);
            transition: border-color var(--t) var(--easing), background var(--t) var(--easing), box-shadow var(--t) var(--easing);
        }

        .page-search:focus-within {
            background: var(--white);
            border-color: rgba(198, 26, 26, 0.35);
            box-shadow: 0 0 0 3px rgba(198, 26, 26, 0.08);
        }

        .page-search i {
            color: var(--text-muted);
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .page-search input {
            border: none;
            background: none;
            outline: none;
            font-family: var(--font);
            font-size: 0.875rem;
            color: var(--text-primary);
            width: 100%;
        }

        .page-search input::placeholder { color: var(--text-muted); }

        @media (max-width: 480px) {
            .page-bar-inner { padding: 1rem; }
            .page-search { width: 100%; }
        }

        .hero-wrapper {
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .hero-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 2.5rem 2rem;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 1.5rem;
            align-items: stretch;
        }

        /* Lead card */
        .hero-lead {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            display: block;
            min-height: 500px;
        }

        .hero-lead > img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 600ms var(--easing);
        }

        .hero-lead:hover > img { transform: scale(1.03); }

        .hero-lead-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.0) 25%,
                rgba(0,0,0,0.45) 58%,
                rgba(0,0,0,0.88) 100%
            );
        }

        .hero-lead-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 2rem 2.25rem;
            z-index: 2;
        }

        .hero-lead-tag {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            margin-bottom: 0.875rem;
        }

        .hero-lead-date {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.72);
            margin-bottom: 0.625rem;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .hero-lead-title {
            font-size: clamp(1.375rem, 2.4vw, 1.875rem);
            font-weight: 800;
            line-height: 1.18;
            color: #fff;
            letter-spacing: -0.025em;
            margin: 0 0 0.75rem;
            text-shadow: 0 2px 12px rgba(0,0,0,0.35);
        }

        .hero-lead-excerpt {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.82);
            line-height: 1.6;
            margin: 0 0 1.375rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            max-width: 640px;
        }

        .hero-lead-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff;
            color: var(--ink);
            font-size: 0.825rem;
            font-weight: 700;
            padding: 0.625rem 1.125rem;
            border-radius: 6px;
            transition:
                background var(--t) var(--easing),
                gap var(--t) var(--easing);
        }

        .hero-lead:hover .hero-lead-cta {
            background: rgba(255,255,255,0.9);
            gap: 0.75rem;
        }

        .hero-sidebar {
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            background: var(--white);
        }

        .hero-side-item {
            display: block;
            padding: 1.125rem 1.25rem;
            text-decoration: none;
            color: inherit;
            border-bottom: 1px solid var(--border);
            flex: 1;
            transition: background var(--t) var(--easing);
        }

        .hero-side-item:last-child { border-bottom: none; }
        .hero-side-item:hover { background: rgba(0,0,0,0.025); }

        .hero-side-tag {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.45rem;
        }

        .hero-side-title {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.35;
            letter-spacing: -0.015em;
            margin: 0 0 0.375rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hero-side-desc {
            font-size: 0.8125rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0 0 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hero-side-date {
            font-size: 0.7rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr 300px; }
        }

        @media (max-width: 820px) {
            .hero-inner {
                grid-template-columns: 1fr;
                padding: 1.5rem 1.25rem;
            }
            .hero-lead { min-height: 420px; }
            .hero-sidebar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                border-radius: 10px;
            }
            .hero-side-item { border-right: 1px solid var(--border); }
            .hero-side-item:nth-child(even) { border-right: none; }
            .hero-side-item:nth-last-child(-n+2) { border-bottom: none; }
        }

        @media (max-width: 480px) {
            .hero-inner { padding: 1.25rem 1rem; gap: 1rem; }
            .hero-lead { min-height: 320px; }
            .hero-lead-body { padding: 1.25rem 1.25rem 1.5rem; }
            .hero-sidebar { display: flex; flex-direction: column; }
            .hero-side-item { border-right: none !important; }
            .hero-side-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
            .hero-side-item:last-child { border-bottom: none; }
        }

        .news-sections {
            padding: 3.5rem 0 0;
        }

        .news-section {
            padding: 3.5rem 0;
        }

        .news-section:nth-child(even) {
            background: #f8f9fa;
        }

        .section-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.625rem;
        }

        .section-title i {
            color: var(--accent);
            font-size: 1rem;
        }

        .section-view-all {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            white-space: nowrap;
            transition: color var(--t) var(--easing), gap var(--t) var(--easing);
        }

        .section-view-all:hover {
            color: var(--accent);
            gap: 0.5rem;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .news-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition:
                box-shadow var(--t) var(--easing),
                transform var(--t) var(--easing);
        }

        .news-section:nth-child(even) .news-card {
            background: var(--white);
        }

        .news-card:hover {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .card-image {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            flex-shrink: 0;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 420ms var(--easing);
        }

        .news-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-tag {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            background: var(--accent);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.25rem 0.625rem;
            border-radius: 4px;
        }

        .card-body {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 0.5rem;
        }

        .card-date {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .card-date i { font-size: 0.7rem; }

        .card-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.4;
            letter-spacing: -0.015em;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
        }

        .card-excerpt {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
            flex: 1;
        }

        .card-cta {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            margin-top: 0.5rem;
            padding-top: 0.875rem;
            border-top: 1px solid var(--border);
            transition: gap var(--t) var(--easing);
        }

        .news-card:hover .card-cta { gap: 0.625rem; }

        @media (max-width: 768px) {
            .cards-grid { grid-template-columns: repeat(2, 1fr); }
            .section-inner { padding: 0 1.25rem; }
            .news-section { padding: 2.5rem 0; }
            .news-sections { padding: 2rem 0 0; }
        }

        @media (max-width: 480px) {
            .cards-grid { grid-template-columns: 1fr; }
            .section-inner { padding: 0 1rem; }
        }

        .pagination-wrapper {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 2.5rem 2rem 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
        }

        .page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 0.5rem;
            border-radius: 8px;
            border: none;
            background: none;
            color: var(--text-muted);
            font-family: var(--font);
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: color var(--t) var(--easing);
        }

        .page-btn:hover { color: var(--ink); }

        .page-btn.active {
            font-weight: 700;
            color: var(--accent);
            pointer-events: none;
        }

        .page-btn.disabled {
            opacity: 0.35;
            pointer-events: none;
        }

        .page-btn i { font-size: 0.75rem; }

        .page-ellipsis {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            font-size: 0.875rem;
            color: var(--text-muted);
            user-select: none;
        }

        @media (max-width: 480px) {
            .pagination-wrapper { padding: 2rem 1rem 2.5rem; gap: 0.25rem; }
            .page-btn { min-width: 34px; height: 34px; font-size: 0.8rem; }
        }

        .site-footer {
            background: var(--white);
            border-top: 1px solid var(--border);
            margin-top: 0;
        }

        .footer-main {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 4rem 2rem 3.25rem;
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 5rem;
            align-items: start;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-brand .site-logo img { height: 32px; }

        .footer-tagline {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .footer-cols {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-col-title {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--ink);
            margin-bottom: 1.25rem;
            padding-bottom: 0.625rem;
            position: relative;
        }

        .footer-col-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 18px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-col a {
            font-size: 0.875rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--t) var(--easing);
        }

        .footer-col a:hover { color: var(--accent); }

        .footer-bottom {
            border-top: 1px solid var(--border);
        }

        .footer-bottom-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-copyright {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            letter-spacing: 0.01em;
        }

        @media (max-width: 960px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 3rem 2rem 2.5rem;
            }
        }

        @media (max-width: 600px) {
            .footer-cols {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .footer-main  { padding: 2.5rem 1rem 2rem; }
            .footer-bottom-inner { padding: 1rem; }
        }

        .cat-banner {
            background: #f5f6f8;
            border-bottom: 1px solid var(--border);
        }

        .cat-banner-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 2.75rem 2rem 2.25rem;
            display: grid;
            gap: 0.5rem;
        }

        .cat-kicker {
            font-size: 0.73rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .cat-banner h1 {
            font-size: 2.25rem;
            line-height: 1.1;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -0.02em;
        }

        .cat-banner p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 80ch;
        }

        @media (max-width: 768px) {
            .cat-banner-inner {
                padding: 2.25rem 1.25rem 1.75rem;
            }
            .cat-banner h1 {
                font-size: 1.85rem;
            }
        }