:root {
    --klise-blue-900: #081a42;
    --klise-blue-800: #10306f;
    --klise-blue-700: #1d4fa3;
    --klise-blue-500: #3588e8;
    --klise-red-500: #ef233c;
    --klise-red-600: #d90429;
    --klise-white: #ffffff;
    --klise-surface: rgba(255, 255, 255, 0.92);
    --klise-surface-2: #f4f8ff;
    --klise-line: #d8e4f5;
    --klise-text: #102347;
    --klise-soft: #6c7f9d;
    --shadow-soft: 0 24px 60px rgba(12, 42, 92, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.public-body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    color: var(--klise-text);
    background:
        radial-gradient(circle at top right, rgba(53, 136, 232, 0.2), transparent 26%),
        linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
}

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

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

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

.flash {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-size: 0.92rem;
}

.flash--success {
    color: #16603a;
    background: #ebfff2;
    border-color: #b8edc8;
}

.flash--error {
    color: #9d1634;
    background: #fff1f3;
    border-color: #ffc6d0;
}

.flash--info {
    color: #184b91;
    background: #eef5ff;
    border-color: #cae0ff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 0;
    backdrop-filter: blur(18px);
    background: rgba(238, 244, 255, 0.84);
    border-bottom: 1px solid rgba(16, 48, 111, 0.08);
}

.site-header__inner {
    position: relative;
    width: 100%;
    min-height: 78px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px clamp(18px, 4vw, 55px);
    border-bottom: 1px solid rgba(216, 228, 245, 0.92);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(12, 42, 92, 0.12);
    overflow: visible;
}

.site-header__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #143a88 0%, #224eb5 52%, #2d6ef2 100%);
}

.site-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-brand img {
    width: auto;
    height: 46px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
    z-index: 1;
    color: var(--klise-text);
    font-size: 0.86rem;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    margin-right: 40px;
}

.site-nav__link {
    position: relative;
    padding: 10px 0;
    color: #4c5d7d;
    font-size: 1.14rem;
    font-weight: 700;
    transition: color 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--klise-blue-800);
}

.site-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1c4ba4 0%, #2d6ef2 100%);
}

.site-nav__search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 220px;
    min-width: 170px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--klise-line);
    border-radius: 12px;
    background: #fdfefe;
}

.site-nav__search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #98a9c5;
    font-size: 0.92rem;
    cursor: pointer;
}

.site-nav__search input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--klise-text);
    font: inherit;
    font-size: 0.84rem;
}

.site-nav__search input::placeholder {
    color: #8fa0ba;
}

.site-nav__search input:focus {
    outline: none;
}

.site-nav__login,
.button-primary,
.button-secondary,
.button-share,
.button-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-nav__login {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #de3142 0%, #c71e2f 100%);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(199, 30, 47, 0.18);
}

.button-primary {
    border-radius: 999px;
    min-height: 48px;
    padding: 0 22px;
    background: linear-gradient(180deg, #ff4d62 0%, var(--klise-red-500) 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(239, 35, 60, 0.24);
}

.button-primary:hover,
.button-secondary:hover,
.button-share:hover,
.button-danger:hover,
.site-nav__login:hover {
    transform: translateY(-1px);
}

.button-secondary,
.button-share {
    border-radius: 999px;
    min-height: 48px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--klise-line);
    color: var(--klise-text);
}

.button-danger {
    border-radius: 999px;
    min-height: 42px;
    padding: 0 18px;
    background: #fff1f3;
    color: #b71839;
    border: 1px solid #ffc0cb;
}

.button-primary--large,
.button-secondary--large,
.button-share--large {
    min-height: 54px;
    padding: 0 28px;
}

.text-link {
    color: var(--klise-red-600);
    font-weight: 700;
}

.site-header__toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(45, 110, 242, 0.2);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(232, 241, 255, 0.98) 100%);
    box-shadow:
        0 10px 24px rgba(45, 110, 242, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    appearance: none;
    transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header__toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(45, 110, 242, 0.34);
    box-shadow:
        0 14px 28px rgba(45, 110, 242, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.site-header__toggle:focus-visible {
    outline: 0;
    border-color: rgba(45, 110, 242, 0.44);
    box-shadow:
        0 0 0 4px rgba(45, 110, 242, 0.14),
        0 12px 26px rgba(45, 110, 242, 0.16);
}

.site-header__toggle span {
    display: block;
    width: 18px;
    height: 2.5px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #2d6ef2 0%, #153f96 100%);
    transition: transform 0.2s ease, opacity 0.18s ease, background 0.2s ease;
}

.site-header__toggle.is-open {
    border-color: rgba(45, 110, 242, 0.3);
    background: linear-gradient(180deg, rgba(236, 244, 255, 1) 0%, rgba(225, 237, 255, 1) 100%);
}

.site-header__toggle.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.site-header__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.news-hero {
    padding: 0 0 16px;
}

.news-hero .public-container {
    width: 100%;
    margin: 0;
}

.spotlight-card,
.lead-story,
.story-card,
.sidebar-card,
.category-column {
    border: 1px solid rgba(214, 224, 239, 0.9);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.spotlight-card {
    position: relative;
    height: clamp(540px, 60vw, 730px);
    min-height: 560px;
    border-radius: 0;
    overflow: hidden;
    background: #0c214c;
}

.spotlight-card__image,
.lead-story__image,
.story-card__image,
.sidebar-story__image,
.category-story__image,
.trending-story__image,
.article-card__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-preview-frame {
    display: block;
    border: 0;
    background: #ffffff;
    pointer-events: none;
}

.spotlight-card__image {
    position: absolute;
    inset: 0;
}

.spotlight-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 23, 58, 0.82) 0%, rgba(7, 23, 58, 0.52) 38%, rgba(7, 23, 58, 0.08) 78%),
        linear-gradient(180deg, rgba(7, 23, 58, 0.12), rgba(7, 23, 58, 0.3));
}

.spotlight-card__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    min-height: 0;
    height: 100%;
    max-width: min(58%, 780px);
    padding: 28px 34px 54px 90px;
    transform: translateY(-75px);
    color: #ffffff;
}

.spotlight-card__label {
    display: inline-flex;
    justify-self: start;
    padding: 12px 20px;
    border-radius: 10px 16px 10px 0;
    background: linear-gradient(180deg, #ef3848 0%, #cc1d30 100%);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateY(-8px);
}

.spotlight-card__content h1 {
    margin: 14px 0 10px;
    font-size: clamp(1.95rem, 3.15vw, 3.25rem);
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spotlight-card__content p {
    margin: 0;
    color: rgba(241, 246, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spotlight-card__meta,
.lead-story__footer,
.story-card__meta,
.sidebar-story__meta,
.sidebar-contact__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spotlight-card__meta {
    margin-top: 12px;
    color: rgba(238, 245, 255, 0.86);
    font-size: 0.84rem;
}

.spotlight-card__meta span,
.lead-story__footer span,
.sidebar-contact__list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spotlight-card__actions {
    margin-top: 16px;
}

.spotlight-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ef3848 0%, #cc1d30 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(207, 31, 49, 0.2);
}

.news-shell {
    padding: 0 0 40px;
}

.news-shell .public-container {
    width: min(1360px, calc(100% - 80px));
}

.news-shell__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.82fr) minmax(300px, 0.74fr);
    gap: 16px;
    align-items: start;
}

.news-shell__main {
    display: grid;
    gap: 16px;
}

.news-tabs {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding: 5px 52px 5px 6px;
    border-radius: 10px;
    border: 1px solid rgba(194, 210, 234, 0.95);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 24%),
        linear-gradient(135deg, #204991 0%, #173c83 54%, #123163 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 36px rgba(13, 43, 103, 0.2);
}

.news-tabs::before,
.news-tabs::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.news-tabs::before {
    top: 7px;
    right: 54px;
    bottom: 7px;
    width: min(36%, 220px);
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.1px, transparent 1.1px);
    background-size: 8px 8px;
    opacity: 0.5;
}

.news-tabs::after {
    top: 50%;
    right: 18px;
    width: 34px;
    height: 8px;
    transform: translateY(-50%);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 2px, transparent 2.4px) left center / 11px 8px repeat-x;
}

.news-tabs__item {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 7px;
    color: rgba(228, 236, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.news-tabs__item i {
    color: rgba(228, 236, 255, 0.82);
    font-size: 0.8rem;
}

.news-tabs__item.is-active {
    min-width: 112px;
    margin-right: 10px;
    padding: 0 24px 0 18px;
    border-radius: 6px 0 0 6px;
    background: linear-gradient(180deg, #ef3640 0%, #d8242d 100%);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.news-tabs__item.is-active::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    width: 24px;
    height: 100%;
    background: linear-gradient(180deg, #d8242d 0%, #b21521 100%);
    clip-path: polygon(0 0, 100% 0, 56% 100%, 0 100%);
}

.news-tabs__item--secondary {
    color: rgba(228, 236, 255, 0.82);
}

.news-tabs__item--secondary i {
    transform: translateY(-1px) rotate(-12deg);
}

.lead-story {
    display: grid;
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
    align-items: stretch;
    min-height: 340px;
    gap: 22px;
    padding: 18px;
    border-radius: 20px;
}

.lead-story__image-wrap,
.story-card__image-wrap,
.sidebar-story__image-wrap,
.category-story__image-wrap {
    display: block;
    overflow: hidden;
}

.lead-story__image-wrap {
    height: 100%;
    border-radius: 16px;
    min-height: 304px;
    aspect-ratio: auto;
}

.lead-story__content {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    min-height: 304px;
    gap: 18px;
    padding: 4px 2px 0 0;
}

.lead-story__body {
    display: grid;
    align-content: start;
    gap: 14px;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.story-tag.is-online {
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
}

.story-tag.is-cetak {
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
}

.lead-story__date,
.story-card__meta,
.sidebar-story__meta,
.category-story__content span {
    color: #8394b1;
    font-size: 0.78rem;
}

.lead-story__content h2,
.news-section__head h2 {
    margin: 0;
    color: var(--klise-text);
}

.lead-story__content h2 {
    font-size: clamp(1.42rem, 1.8vw, 2.1rem);
    line-height: 1.2;
}

.lead-story__content h2 a {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
}

.lead-story__content p {
    margin: 0;
    color: var(--klise-soft);
    font-size: 0.98rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lead-story__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 4px;
    color: #7184a0;
    font-size: 0.88rem;
}

.lead-story__meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.lead-story__share {
    min-height: 42px;
    padding: 0 14px;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(45, 110, 242, 0.26);
    background: rgba(244, 248, 255, 0.98);
    color: #2d6ef2;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: none;
}

.lead-story__share i {
    font-size: 0.96rem;
}

.lead-story__share.is-copied {
    background: rgba(45, 110, 242, 0.12);
}

@media (min-width: 901px) {
    .lead-story:not(.article-feature) {
        align-items: start;
        grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
        gap: 24px;
    }

    .lead-story:not(.article-feature) .lead-story__image-wrap {
        align-self: start;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        min-height: clamp(240px, 20vw, 290px);
        max-height: 290px;
        aspect-ratio: 16 / 9;
    }

    .lead-story:not(.article-feature) .lead-story__content {
        min-width: 0;
        min-height: auto;
        gap: 16px;
    }

    .lead-story:not(.article-feature) .lead-story__footer {
        margin-top: 0;
        padding-top: 2px;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

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

.story-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 16px;
    height: 100%;
}

.story-card__image-wrap {
    aspect-ratio: 16 / 10;
}

.story-card__content {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 12px 14px;
}

.story-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.story-card h3,
.sidebar-card h2,
.category-story__content h3,
.sidebar-story__content h3,
.sidebar-contact h3 {
    margin: 0;
    color: var(--klise-text);
}

.story-card h3 {
    font-size: 0.97rem;
    line-height: 1.4;
}

.story-card h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    margin-top: auto;
    padding-top: 4px;
}

.story-card__meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: #8394b1;
    font-size: 0.78rem;
}

.story-card__meta-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.story-card__share {
    min-height: 34px;
    padding: 0 12px;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid rgba(45, 110, 242, 0.22);
    background: rgba(244, 248, 255, 0.98);
    color: #2d6ef2;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: none;
}

.story-card__share i {
    font-size: 0.82rem;
}

.story-card__share.is-copied {
    background: rgba(45, 110, 242, 0.12);
}

.home-news-cta {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    margin-bottom: 4px;
}

.home-news-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: min(100%, 340px);
    min-height: 56px;
    padding: 0 30px;
    border-radius: 12px;
    border: 1px solid rgba(18, 73, 185, 0.32);
    background: linear-gradient(180deg, #1d63dc 0%, #0b46b3 100%);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(12, 70, 179, 0.26);
    transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-news-cta__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(12, 70, 179, 0.3);
    filter: saturate(1.04);
}

.home-news-cta__button i {
    font-size: 1rem;
}

.news-section {
    display: grid;
    gap: 18px;
}

.news-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.hero-stats--board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
}

.news-sidebar {
    display: grid;
    gap: 16px;
}

.sidebar-card {
    padding: 16px;
    border-radius: 16px;
}

.sidebar-card h2 {
    margin-bottom: 12px;
    font-size: 1.04rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.sidebar-story-list,
.category-column__list {
    display: grid;
    gap: 12px;
}

.trending-list {
    display: grid;
    gap: 0;
}

.sidebar-story,
.category-story {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.sidebar-story__image-wrap,
.category-story__image-wrap {
    border-radius: 8px;
    aspect-ratio: 1 / 1;
}

.sidebar-story__content,
.category-story__content {
    display: grid;
    gap: 6px;
}

.trending-story {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 0;
}

.trending-story__image-wrap {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
}

.trending-story__content {
    display: grid;
    gap: 4px;
}

.trending-story__date {
    color: #8394b1;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.3;
}

.trending-story__content h3 {
    margin: 0;
    color: var(--klise-text);
    font-size: 0.94rem;
    line-height: 1.42;
}

.trending-story__content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-story__meta {
    gap: 8px;
}

.sidebar-story__content h3,
.category-story__content h3 {
    font-size: 0.92rem;
    line-height: 1.4;
}

.sidebar-story__content h3 a,
.category-story__content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.category-column {
    padding: 16px;
    border-radius: 16px;
}

.category-column__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.category-column__head strong {
    color: var(--klise-text);
    font-size: 1.1rem;
}

.category-column__empty {
    margin: 0;
    color: var(--klise-soft);
    line-height: 1.7;
}

.category-counts {
    display: grid;
    gap: 10px;
}

.category-counts__item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8fbff;
    border: 1px solid var(--klise-line);
}

.category-counts__order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
}

.category-counts__label {
    color: #253a63;
    font-size: 0.9rem;
    font-weight: 700;
}

.category-counts__item:nth-child(1) .category-counts__order {
    background: linear-gradient(180deg, #e03745 0%, #ba1f2f 100%);
}

.category-counts__item:nth-child(2) .category-counts__order {
    background: linear-gradient(180deg, #2a68d8 0%, #1e4faf 100%);
}

.category-counts__item strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    color: #516d96;
    font-size: 0.78rem;
    font-weight: 700;
    background: #e9f0fb;
}

.stats-section {
    gap: 20px;
}

.stats-dashboard {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(189, 214, 244, 0.94);
    background:
        linear-gradient(140deg, rgba(116, 226, 247, 0.16) 0%, rgba(87, 165, 255, 0.16) 42%, rgba(255, 255, 255, 0.58) 100%);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.stats-dashboard::before,
.stats-dashboard::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.stats-dashboard::before {
    top: -60px;
    right: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 117, 255, 0.22) 0%, rgba(40, 117, 255, 0) 68%);
}

.stats-dashboard::after {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.28;
}

.stats-panel {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(206, 220, 242, 0.98);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(16, 48, 111, 0.12);
    backdrop-filter: blur(16px);
}

.stats-panel--summary {
    grid-column: span 5;
}

.stats-panel--ring {
    grid-column: span 3;
}

.stats-panel--progress {
    grid-column: span 4;
}

.stats-panel--daily,
.stats-panel--monthly {
    grid-column: span 6;
}

.stats-panel--yearly {
    grid-column: span 12;
}

.stats-panel h3 {
    margin: 0;
    color: var(--klise-text);
    font-size: 1.18rem;
    line-height: 1.35;
}

.stats-panel p {
    margin: 0;
    color: var(--klise-soft);
    line-height: 1.7;
}

.stats-panel__eyebrow,
.stats-panel__kicker {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stats-panel__eyebrow {
    color: #0d438b;
    background: rgba(33, 105, 230, 0.12);
}

.stats-panel__kicker {
    color: #2d67cc;
    background: rgba(45, 103, 204, 0.1);
}

.stats-panel__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.stats-panel__head i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(30, 79, 175, 0.1) 0%, rgba(45, 110, 242, 0.18) 100%);
    color: #1c4ba4;
    font-size: 1.05rem;
}

.stats-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto;
    gap: 18px;
    align-items: center;
}

.stats-orb {
    position: relative;
    display: grid;
    place-items: center;
    width: 156px;
    aspect-ratio: 1;
    padding: 24px;
    border-radius: 50%;
    background:
        conic-gradient(from 180deg, #ff6b6b 0deg, #ffa53a 105deg, #21c7a8 220deg, #2d6ef2 360deg);
    box-shadow: 0 18px 34px rgba(45, 110, 242, 0.24);
    text-align: center;
}

.stats-orb::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 0 0 1px rgba(200, 217, 240, 0.9);
}

.stats-orb span,
.stats-orb strong,
.stats-orb small {
    position: relative;
    z-index: 1;
}

.stats-orb span,
.stats-orb small {
    color: #6b7ea0;
}

.stats-orb strong {
    display: block;
    color: var(--klise-text);
    font-size: 1.4rem;
    line-height: 1.15;
}

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

.stats-pill {
    --stats-pill-bg: linear-gradient(135deg, rgba(240, 246, 255, 0.95) 0%, rgba(251, 253, 255, 0.9) 100%);
    --stats-pill-accent: linear-gradient(180deg, #1d4fa3 0%, #2d6ef2 100%);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(214, 226, 244, 0.95);
    background: var(--stats-pill-bg);
}

.stats-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--stats-pill-accent);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 14px 22px rgba(29, 79, 163, 0.2);
}

.stats-pill strong,
.stats-pill span {
    display: block;
}

.stats-pill strong {
    color: var(--klise-text);
    font-size: 1.22rem;
    line-height: 1.1;
}

.stats-pill span {
    margin-top: 4px;
    color: #6f82a2;
    font-size: 0.83rem;
}

.stats-pill--sun {
    --stats-pill-bg: linear-gradient(135deg, rgba(255, 248, 229, 0.96) 0%, rgba(255, 253, 245, 0.9) 100%);
    --stats-pill-accent: linear-gradient(180deg, #f59e0b 0%, #ef4444 100%);
}

.stats-pill--blue {
    --stats-pill-bg: linear-gradient(135deg, rgba(234, 244, 255, 0.96) 0%, rgba(247, 251, 255, 0.9) 100%);
    --stats-pill-accent: linear-gradient(180deg, #1d4fa3 0%, #2d6ef2 100%);
}

.stats-pill--mint {
    --stats-pill-bg: linear-gradient(135deg, rgba(234, 255, 246, 0.96) 0%, rgba(247, 255, 252, 0.9) 100%);
    --stats-pill-accent: linear-gradient(180deg, #0f766e 0%, #14b8a6 100%);
}

.stats-pill--violet {
    --stats-pill-bg: linear-gradient(135deg, rgba(243, 240, 255, 0.96) 0%, rgba(251, 249, 255, 0.9) 100%);
    --stats-pill-accent: linear-gradient(180deg, #6d28d9 0%, #8b5cf6 100%);
}

.stats-pill--rose {
    --stats-pill-bg: linear-gradient(135deg, rgba(255, 239, 243, 0.96) 0%, rgba(255, 248, 250, 0.9) 100%);
    --stats-pill-accent: linear-gradient(180deg, #e11d48 0%, #fb7185 100%);
}

.stats-pill--sky {
    --stats-pill-bg: linear-gradient(135deg, rgba(234, 251, 255, 0.96) 0%, rgba(245, 254, 255, 0.9) 100%);
    --stats-pill-accent: linear-gradient(180deg, #0891b2 0%, #37c7ff 100%);
}

.stats-chart-shell {
    position: relative;
    height: 220px;
    min-height: 220px;
    overflow: hidden;
}

.stats-chart-shell--compact {
    height: 180px;
    min-height: 180px;
}

.stats-panel--yearly .stats-chart-shell {
    height: 260px;
    min-height: 260px;
}

.stats-chart-shell canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: 100%;
}

.stats-legend,
.stats-meter-list {
    display: grid;
    gap: 12px;
}

.stats-legend__item,
.stats-meter__head,
.stats-mini-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.stats-legend__item span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #607492;
    font-size: 0.84rem;
}

.stats-legend__item strong,
.stats-mini-summary strong {
    color: var(--klise-text);
    font-size: 0.92rem;
}

.stats-dot {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stats-dot--red {
    background: #ef4444;
}

.stats-dot--orange {
    background: #f59e0b;
}

.stats-dot--teal {
    background: #14b8a6;
}

.stats-meter {
    display: grid;
    gap: 8px;
}

.stats-meter__head span {
    color: #607492;
    font-size: 0.84rem;
}

.stats-meter__head strong {
    color: var(--klise-text);
    font-size: 0.92rem;
}

.stats-meter__head small {
    margin-left: 6px;
    color: #7a8fb0;
    font-size: 0.72rem;
}

.stats-meter__track {
    height: 12px;
    border-radius: 999px;
    background: #edf3ff;
    overflow: hidden;
}

.stats-meter__track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--stats-meter-colors, linear-gradient(90deg, #2d6ef2, #37c7ff));
}

.stats-mini-summary {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(219, 228, 243, 0.94);
}

.stats-mini-summary div {
    display: grid;
    gap: 4px;
}

.stats-mini-summary span {
    color: #6f82a2;
    font-size: 0.78rem;
}

.sidebar-contact {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 35, 71, 0.08);
}

.sidebar-contact p {
    margin: 0;
    color: var(--klise-soft);
    line-height: 1.75;
}

.hero-copy,
.hero-visual,
.feature-card,
.article-card,
.contact-panel,
.empty-state {
    border: 1px solid rgba(214, 224, 239, 0.84);
    background: var(--klise-surface);
    box-shadow: var(--shadow-soft);
}

.hero-copy {
    padding: 46px;
    border-radius: 34px;
}


.hero-copy h1,
.section-heading h2,
.section-headline h2,
.page-hero h1,
.article-detail__content h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
}

.hero-copy p,
.section-heading p,
.contact-panel p {
    margin: 0;
    color: var(--klise-soft);
    font-size: 1rem;
    line-height: 1.8;
}

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

.hero-stats,
.feature-grid,
.article-grid,
.contact-cards {
    display: grid;
    gap: 18px;
}

.hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
    scroll-margin-top: 120px;
}

.hero-stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--klise-line);
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hero-stat span {
    color: var(--klise-soft);
    font-size: 0.84rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(8, 26, 66, 0.88), rgba(27, 95, 183, 0.25)),
        url('/images/baground_login.png') center center / cover no-repeat;
}

.hero-visual img {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(84%, 420px);
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.3));
}

.section-block {
    padding: 38px 0 64px;
}

.section-block--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(239, 245, 255, 0.8));
}

.profile-grid {
    display: grid;
    gap: 28px;
}

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

.feature-card {
    padding: 28px;
    border-radius: 28px;
}

.feature-card h3,
.contact-card strong {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.feature-card p,
.contact-card span,
.article-card p,
.article-card__meta,
.article-card__footer {
    color: var(--klise-soft);
    font-size: 0.92rem;
    line-height: 1.75;
}

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

.article-card {
    overflow: hidden;
    border-radius: 30px;
}

.article-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-card__media,
.article-card__image .card-preview-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(8, 26, 66, 0.82);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
}

.article-card__content {
    padding: 22px;
}

.article-card h3 {
    margin: 12px 0 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.article-card p {
    margin: 0 0 16px;
}

.article-card__meta,
.article-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.article-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 24px;
    padding: 32px;
    border-radius: 34px;
}

.contact-cards {
    grid-template-columns: 1fr;
}

.contact-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--klise-line);
}

.empty-state {
    padding: 32px;
    border-radius: 28px;
    text-align: center;
    grid-column: 1 / -1;
}

.empty-state h3 {
    margin: 0 0 10px;
}

.site-footer {
    margin-top: 0;
    padding: 24px 0 0;
    color: rgba(234, 243, 255, 0.9);
    background: linear-gradient(140deg, #2a61be 0%, #2455ad 50%, #1f4a98 100%);
}

.site-footer__inner {
    width: min(1360px, calc(100% - 24px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(320px, 1.35fr);
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 16px;
}

.site-footer__brand {
    min-width: 0;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo img {
    width: auto;
    height: 46px;
    object-fit: contain;
}

.site-footer__brand p {
    margin: 12px 0 10px;
    color: rgba(222, 234, 255, 0.78);
    font-size: 0.82rem;
    line-height: 1.65;
}

.site-footer__column {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.site-footer__column h3 {
    margin: 0;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
}

.site-footer__column-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-footer__social {
    display: inline-flex;
    gap: 8px;
}

.site-footer__social--brand {
    margin-top: 10px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1rem;
}

.site-footer__list,
.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.site-footer__list li {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(225, 236, 255, 0.8);
    font-size: 0.78rem;
    line-height: 1.55;
}

.site-footer__list i {
    margin-top: 1px;
    color: rgba(164, 198, 255, 0.94);
}

.site-footer__links a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: rgba(225, 236, 255, 0.8);
    font-size: 0.78rem;
    line-height: 1.55;
    transition: color 0.18s ease;
}

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

.site-footer__empty {
    color: rgba(225, 236, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.55;
}

.site-footer__column--map {
    align-content: start;
}

.site-footer__map {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(9, 31, 74, 0.18);
}

.site-footer__map iframe {
    display: block;
    width: 100%;
    height: 190px;
}

.site-footer__bottom {
    margin-top: 0;
    padding: 16px 16px;
    text-align: center;
    color: rgba(232, 241, 255, 0.96);
    font-size: 0.76rem;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, #1b458f 0%, #173d7f 100%);
}

@media (max-width: 1180px) {
    .stats-panel--summary,
    .stats-panel--yearly {
        grid-column: span 12;
    }

    .stats-panel--ring,
    .stats-panel--progress {
        grid-column: span 6;
    }
}

@media (max-width: 1080px) {
    .site-header__inner {
        gap: 14px;
        padding-left: 36px;
        padding-right: 36px;
    }

    .site-brand img {
        height: 46px;
    }

    .site-nav__links {
        gap: 18px;
    }

    .site-nav__search {
        flex-basis: 210px;
    }

    .spotlight-card__content {
        max-width: 68%;
        padding: 16px 22px 28px 38px;
        transform: translateY(-18px);
    }

    .news-shell__grid {
        grid-template-columns: 1fr;
    }

    .news-shell .public-container {
        width: min(calc(100% - 45px), 100%);
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .site-footer__column--about,
    .site-footer__column--map {
        display: none;
    }
}

@media (max-width: 1024px) {
    .spotlight-card__content {
        max-width: 72%;
        padding: 14px 20px 20px 34px;
        transform: translateY(-50px);
    }

    .stats-panel--summary,
    .stats-panel--ring,
    .stats-panel--progress,
    .stats-panel--daily,
    .stats-panel--monthly,
    .stats-panel--yearly {
        grid-column: span 12;
    }

    .stats-hero {
        grid-template-columns: 1fr;
    }

    .stats-orb {
        margin: 0 auto;
    }

    .story-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

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

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

    .lead-story {
        grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
        gap: 16px;
    }

    .lead-story__image-wrap {
        min-height: 260px;
    }

    .contact-panel,
    .feature-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .news-shell .public-container {
        width: min(calc(100% - 35px), 100%);
    }

    .lead-story {
        grid-template-columns: 1fr;
    }

    .lead-story__image-wrap {
        min-height: 240px;
    }

    .lead-story__content {
        min-height: auto;
    }

    .lead-story__content p {
        -webkit-line-clamp: 6;
    }

    .lead-story__footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px 10px;
    }
}

@media (max-width: 820px) {
    .site-header__inner {
        justify-content: space-between;
    }

    .site-brand {
        margin-right: auto;
    }

    .site-header {
        padding-top: 8px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        border: 1px solid rgba(216, 228, 245, 0.94);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }

    .site-nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-right: 0;
    }

    .site-nav__link {
        padding: 10px 4px;
    }

    .site-nav__link.is-active::after {
        display: none;
    }

    .site-nav__search {
        width: 100%;
        min-width: 0;
        flex-basis: auto;
    }

    .site-nav__login {
        width: 100%;
    }

    .spotlight-card__content {
        max-width: 100%;
        gap: 7px;
        padding: 14px 18px 20px 22px;
        transform: translateY(-60px);
    }

    .stats-dashboard {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .stats-dashboard > .stats-panel {
        grid-column: 1 / -1;
    }

    .stats-pill-grid {
        grid-template-columns: 1fr;
    }

    .stats-mini-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-grid,
    .hero-stats--board,
    .category-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .public-container {
        width: min(100% - 28px, 100%);
    }

    .site-header {
        padding-top: 0;
        padding-bottom: 0;
    }

    .site-header__inner {
        width: 100%;
        min-height: 64px;
        padding: 8px 10px;
    }

    .site-header__inner::before {
        height: 5px;
    }

    .site-brand img {
        height: 34px;
    }

    .site-header__toggle {
        width: 44px;
        height: 44px;
        margin-left: auto;
        gap: 4px;
        border-radius: 12px;
    }

    .site-header__toggle span {
        width: 17px;
    }

    .site-header__toggle.is-open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .site-header__toggle.is-open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .news-hero {
        padding-top: 0;
    }

    .spotlight-card {
        height: 500px;
        border-radius: 10px;
    }

    .spotlight-card__content {
        height: 500px;
        transform: translateY(-4px);
    }

    .spotlight-card__label {
        padding: 8px 12px;
        font-size: 0.74rem;
    }

    .spotlight-card__content h1 {
        font-size: clamp(1.95rem, 7.4vw, 2.8rem);
        -webkit-line-clamp: 7;
    }

    .news-tabs {
        gap: 12px;
        min-height: 44px;
        padding: 5px 18px 5px 5px;
    }

    .news-tabs::before {
        right: 42px;
        width: min(26%, 86px);
        background-size: 7px 7px;
        opacity: 0.4;
    }

    .news-tabs::after {
        right: 12px;
        width: 22px;
        background-size: 8px 8px;
    }

    .news-tabs__item {
        min-height: 34px;
        gap: 6px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .news-tabs__item.is-active {
        min-width: auto;
        margin-right: 6px;
        padding: 0 18px 0 12px;
    }

    .news-tabs__item.is-active::after {
        right: -14px;
        width: 18px;
    }

    .stats-panel {
        padding: 16px;
    }

    .stats-chart-shell {
        height: 200px;
        min-height: 200px;
    }

    .stats-chart-shell--compact {
        height: 160px;
        min-height: 160px;
    }

    .stats-panel--yearly .stats-chart-shell {
        height: 220px;
        min-height: 220px;
    }

    .stats-orb {
        width: 136px;
    }

    .stats-pill {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .stats-pill__icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .lead-story,
    .story-card__content,
    .sidebar-card,
    .category-column {
        padding: 14px;
    }

    .sidebar-story,
    .category-story {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .hero-copy,
    .contact-panel,
    .feature-card,
    .article-card__content {
        padding: 24px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .news-hero {
        padding: 0 0 12px;
    }

    .news-hero .public-container {
        width: 100%;
        margin: 0;
    }

    .news-shell .public-container {
        width: min(100% - 18px, 100%);
    }

    .news-shell {
        padding: 0 0 28px;
    }

    .news-shell__main,
    .news-sidebar {
        gap: 12px;
    }

    .spotlight-card {
        position: relative;
        height: clamp(320px, 88vw, 380px);
        min-height: 320px;
        border-radius: 0 0 28px 28px;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        border-bottom: 1px solid rgba(184, 203, 233, 0.38);
        background: #0c214c;
    }

    .spotlight-card__image {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .spotlight-card__overlay {
        inset: 0;
        height: 100%;
        background:
            linear-gradient(180deg, rgba(7, 23, 58, 0.04) 0%, rgba(7, 23, 58, 0.16) 26%, rgba(7, 23, 58, 0.78) 72%, rgba(7, 23, 58, 0.92) 100%),
            radial-gradient(circle at top right, rgba(69, 138, 255, 0.28), transparent 30%);
    }

    .spotlight-card__content {
        height: 100%;
        max-width: none;
        gap: 6px;
        align-content: end;
        padding: 12px 16px 26px;
        transform: translateY(-28px);
    }

    .spotlight-card__label {
        padding: 7px 12px;
        border-radius: 999px;
        font-size: 0.63rem;
        letter-spacing: 0.06em;
    }

    .spotlight-card__content h1 {
        margin: 2px 0 0;
        font-size: clamp(1.42rem, 5.7vw, 1.88rem);
        line-height: 1.08;
        -webkit-line-clamp: 3;
    }

    .spotlight-card__content p {
        font-size: 0.8rem;
        line-height: 1.5;
        -webkit-line-clamp: 2;
    }

    .spotlight-card__meta {
        margin-top: 2px;
        gap: 6px 10px;
        font-size: 0.72rem;
    }

    .spotlight-card__actions {
        margin-top: 0;
    }

    .spotlight-card__button {
        min-height: 36px;
        padding: 0 14px;
        border-radius: 999px;
        font-size: 0.78rem;
    }

    .news-tabs {
        gap: 8px;
        min-height: auto;
        padding: 4px;
        border-radius: 18px;
        border-color: rgba(208, 221, 241, 0.98);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
        box-shadow: 0 14px 28px rgba(13, 43, 103, 0.1);
    }

    .news-tabs::before,
    .news-tabs::after {
        display: none;
    }

    .news-tabs__item {
        flex: 1 1 0;
        min-height: 38px;
        justify-content: center;
        padding: 0 12px;
        border-radius: 14px;
        color: #5a739d;
        font-size: 0.74rem;
        letter-spacing: 0.04em;
    }

    .news-tabs__item i {
        color: #6689bf;
    }

    .news-tabs__item.is-active {
        margin-right: 0;
        padding: 0 12px;
        border-radius: 14px;
        box-shadow: 0 10px 20px rgba(216, 36, 45, 0.2);
    }

    .news-tabs__item.is-active::after {
        display: none;
    }

    .news-tabs__item--secondary {
        background: rgba(238, 244, 255, 0.92);
        color: #294770;
    }

    .news-tabs__item--secondary i {
        color: #2d6ef2;
    }

    .story-tag {
        min-height: 16px;
        padding: 0 6px;
        border-radius: 999px;
        font-size: 0.5rem;
        letter-spacing: 0.04em;
    }

    .lead-story {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
        border-radius: 24px;
    }

    .lead-story__image-wrap {
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }

    .lead-story__content {
        min-height: 0;
        gap: 12px;
        padding: 0;
    }

    .lead-story__body {
        gap: 10px;
    }

    .lead-story__content h2 {
        font-size: 1.08rem;
        line-height: 1.2;
    }

    .lead-story__content p {
        font-size: 0.84rem;
        line-height: 1.55;
        -webkit-line-clamp: 3;
    }

    .lead-story__footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px 10px;
    }

    .lead-story__meta-bar {
        gap: 10px;
        font-size: 0.72rem;
    }

    .lead-story__share {
        min-height: 30px;
        padding: 0 10px;
        gap: 6px;
        font-size: 0.66rem;
    }

    .lead-story__share i {
        font-size: 0.72rem;
    }

    .story-grid {
        gap: 10px;
    }

    .story-card {
        grid-template-columns: 104px minmax(0, 1fr);
        grid-template-rows: none;
        gap: 7px;
        align-items: stretch;
        padding: 6px;
        border-radius: 18px;
    }

    .story-card__image-wrap {
        height: 96px;
        min-height: 96px;
        aspect-ratio: auto;
        border-radius: 14px;
    }

    .story-card__content {
        grid-template-rows: auto minmax(0, 1fr) auto;
        min-height: 96px;
        height: 100%;
        align-content: stretch;
        gap: 4px;
        padding: 1px 0;
    }

    .story-card__meta {
        gap: 6px;
    }

    .story-card h3 {
        align-self: center;
        font-size: 0.78rem;
        line-height: 1.14;
    }

    .story-card h3 a {
        -webkit-line-clamp: 2;
    }

    .story-card__footer {
        gap: 4px 6px;
        padding-top: 0;
        align-items: center;
    }

    .story-card__meta-bar {
        gap: 4px 6px;
        font-size: 0.58rem;
        flex-wrap: nowrap;
    }

    .story-card__share {
        min-height: 22px;
        padding: 0 6px;
        gap: 3px;
        font-size: 0.52rem;
    }

    .story-card__share i {
        font-size: 0.6rem;
    }

    .home-news-cta {
        margin-top: 2px;
    }

    .home-news-cta__button {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 0 20px;
        font-size: 1rem;
    }

    .news-section {
        gap: 12px;
    }

    .news-section__head {
        align-items: center;
    }

    .news-section__head h2 {
        font-size: 1rem;
    }

    .category-columns {
        gap: 12px;
    }

    .category-column {
        padding: 14px;
        border-radius: 20px;
    }

    .category-column__head {
        margin-bottom: 10px;
    }

    .category-column__head strong {
        font-size: 1rem;
    }

    .category-column__list {
        gap: 10px;
    }

    .sidebar-story,
    .category-story,
    .trending-story {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
        padding: 8px;
        border: 1px solid rgba(220, 230, 244, 0.96);
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(247, 251, 255, 1) 0%, rgba(241, 247, 255, 0.98) 100%);
    }

    .sidebar-story__image-wrap,
    .category-story__image-wrap,
    .trending-story__image-wrap {
        border-radius: 12px;
    }

    .category-story__content,
    .sidebar-story__content,
    .trending-story__content {
        gap: 4px;
    }

    .category-story__content span,
    .sidebar-story__meta,
    .trending-story__date {
        font-size: 0.66rem;
    }

    .sidebar-story__meta {
        gap: 6px;
    }

    .sidebar-story__content h3,
    .category-story__content h3,
    .trending-story__content h3 {
        font-size: 0.84rem;
        line-height: 1.3;
    }

    .trending-story__date {
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .sidebar-card {
        padding: 14px;
        border-radius: 20px;
    }

    .sidebar-card h2 {
        margin-bottom: 10px;
        font-size: 0.98rem;
        text-transform: none;
        letter-spacing: 0;
    }

    .sidebar-story-list,
    .trending-list {
        gap: 8px;
    }

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

    .category-counts__item {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 8px;
        padding: 12px;
        border-radius: 16px;
    }

    .category-counts__order {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .category-counts__label {
        font-size: 0.82rem;
    }

    .category-counts__item strong {
        min-width: 0;
        height: auto;
        padding: 0;
        border-radius: 0;
        color: var(--klise-text);
        font-size: 1.15rem;
        background: transparent;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer__column {
        display: none;
    }

    .site-footer__column--map {
        grid-column: auto;
    }

    .site-footer__logo img {
        height: 40px;
    }
}
