

/* Start:/local/templates/fluorite_v1/pages/news/assets/styles.css?178592856750101*/
/* ==========================================================================
   Интеграция авторского макета в шаблон Fluorite (2026-07-30)
   main.css лочит body под лендинг (overflow:hidden + фоновый слайдер/текст).
   На странице новостей: разблокировать скролл и погасить декор лендинга,
   чтобы он не просвечивал сквозь контент.
   ========================================================================== */
html, body { height: auto !important; min-height: 100% !important; }

body.fluorite-news-page {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh !important;
}

body.fluorite-news-page .fluorite-background-slider,
body.fluorite-news-page .fluorite-bg-text-wrapper { display: none !important; }

body.fluorite-news-page #sections-container {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
}

body.fluorite-news-page .fluorite-staggered-menu-wrapper.fluorite-fixed-wrapper {
    position: fixed; top: 0; left: 0; right: 0; overflow: visible !important;
}

body.fluorite-news-page #panel { position: relative; z-index: 500; }

:root {
    color-scheme: dark;
    --background: #050505;
    --surface: #101010;
    --foreground: #f5f5f2;
    --muted: #a2a29d;
    --line: #292927;
    --accent: #ffffff;
    --accent-ink: #0a0a0a;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 68%, rgba(255, 255, 255, .045), transparent 30rem),
        var(--background);
    color: var(--foreground);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 100%;
    overflow-x: clip;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

button {
    font: inherit;
}

a {
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.spotlight {
    display: flex;
    min-height: 760px;
    align-items: center;
    justify-content: center;
    padding: 88px 32px 112px;
    overflow: hidden;
}

.spotlight__link {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: clamp(48px, 7vw, 96px);
    text-decoration: none;
}

.spotlight__copy {
    position: relative;
    z-index: 2;
    width: 280px;
    flex: 0 0 280px;
    padding-top: 20px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.eyebrow__line {
    width: 32px;
    height: 1px;
    background: currentColor;
    transition: width .7s var(--ease);
}

.spotlight__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 5vw, 76px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.055em;
}

.spotlight__title span {
    display: block;
    transition: transform .7s var(--ease);
}

.spotlight__text {
    max-width: 245px;
    margin: 36px 0 0;
    color: rgba(245, 245, 242, .58);
    font-size: 16px;
    line-height: 1.65;
    transition: color .7s var(--ease), transform .7s var(--ease);
}

.spotlight__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
}

.spotlight__arrow {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(245, 245, 242, .28);
    border-radius: 50%;
    transition: color .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}

.spotlight__arrow svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform .5s var(--ease);
}

.spotlight__cta-text {
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .18em;
    opacity: .48;
    text-transform: uppercase;
    transform: translateX(-8px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.spotlight__visual {
    position: relative;
    transition: transform .7s var(--ease);
}

.spotlight__frame {
    position: absolute;
    inset: -16px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color .7s var(--ease), transform .7s var(--ease);
}

.spotlight__image-wrap {
    position: relative;
    width: clamp(340px, 31vw, 430px);
    height: clamp(420px, 40vw, 520px);
    overflow: hidden;
    background: #d5d4ce;
    transition: box-shadow .7s var(--ease);
}

.spotlight__image-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .15), transparent 48%);
    content: "";
    opacity: 0;
    transition: opacity .7s var(--ease);
}

.spotlight__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.corner {
    position: absolute;
    z-index: 2;
    width: 26px;
    height: 26px;
    opacity: 0;
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.corner::before,
.corner::after {
    position: absolute;
    background: rgba(255, 255, 255, .85);
    content: "";
}

.corner--tl {
    top: 13px;
    left: 13px;
    transform: scale(.3);
    transform-origin: top left;
}

.corner--tl::before {
    width: 1px;
    height: 26px;
}

.corner--tl::after {
    width: 26px;
    height: 1px;
}

.corner--br {
    right: 13px;
    bottom: 13px;
    transform: scale(.3);
    transform-origin: bottom right;
}

.corner--br::before {
    right: 0;
    width: 1px;
    height: 26px;
}

.corner--br::after {
    right: 0;
    bottom: 0;
    width: 26px;
    height: 1px;
}

.spotlight__index {
    position: absolute;
    right: 0;
    bottom: -32px;
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 13px;
    opacity: .45;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.spotlight__link:hover .eyebrow__line,
.spotlight__link:focus-visible .eyebrow__line {
    width: 48px;
}

.spotlight__link:hover .spotlight__title span:first-child,
.spotlight__link:focus-visible .spotlight__title span:first-child {
    transform: translateY(-2px);
}

.spotlight__link:hover .spotlight__title span:last-child,
.spotlight__link:focus-visible .spotlight__title span:last-child {
    transform: translateX(12px);
}

.spotlight__link:hover .spotlight__text,
.spotlight__link:focus-visible .spotlight__text {
    color: var(--muted);
    transform: translateY(-4px);
}

.spotlight__link:hover .spotlight__arrow,
.spotlight__link:focus-visible .spotlight__arrow {
    border-color: var(--foreground);
    background: var(--foreground);
    box-shadow: 0 14px 34px rgba(21, 21, 21, .16);
    color: var(--background);
    transform: scale(1.05);
}

.spotlight__link:hover .spotlight__arrow svg,
.spotlight__link:focus-visible .spotlight__arrow svg {
    transform: rotate(45deg);
}

.spotlight__link:hover .spotlight__cta-text,
.spotlight__link:focus-visible .spotlight__cta-text {
    opacity: 1;
    transform: translateX(0);
}

.spotlight__link:hover .spotlight__visual,
.spotlight__link:focus-visible .spotlight__visual {
    transform: translate(4px, -4px);
}

.spotlight__link:hover .spotlight__frame,
.spotlight__link:focus-visible .spotlight__frame {
    border-color: rgba(245, 245, 242, .16);
    transform: scale(1.01);
}

.spotlight__link:hover .spotlight__image-wrap,
.spotlight__link:focus-visible .spotlight__image-wrap {
    box-shadow: 0 26px 64px rgba(0, 0, 0, .52);
}

.spotlight__link:hover .spotlight__image-wrap img,
.spotlight__link:focus-visible .spotlight__image-wrap img {
    transform: scale(1.035);
}

.spotlight__link:hover .spotlight__image-wrap::after,
.spotlight__link:hover .corner,
.spotlight__link:focus-visible .spotlight__image-wrap::after,
.spotlight__link:focus-visible .corner {
    opacity: 1;
}

.spotlight__link:hover .corner,
.spotlight__link:focus-visible .corner {
    transform: scale(1);
}

.spotlight__link:hover .spotlight__index,
.spotlight__link:focus-visible .spotlight__index {
    opacity: 1;
    transform: translateY(12px);
}

.stories-section {
    max-width: 1088px;
    margin: 0 auto;
    padding: 18px 32px 80px;
}

.stories-title {
    margin: 0 0 16px 4px;
    font-size: 14px;
    font-weight: 650;
}

.stories {
    display: flex;
    max-width: 100%;
    gap: 18px;
    padding: 4px 4px 12px;
    overflow-x: auto;
    scrollbar-color: rgba(21, 21, 21, .18) transparent;
    scrollbar-width: thin;
}

.story {
    display: flex;
    min-width: 80px;
    flex: 0 0 80px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--foreground);
    padding: 0;
}

.story__ring {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(from 220deg, #ffffff, #b9b9b4, #7d7d78, #b9b9b4, #ffffff);
    box-shadow: 0 0 0 1px rgba(21, 21, 21, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.story__avatar {
    width: 64px;
    height: 64px;
    border: 3px solid var(--background);
    border-radius: 50%;
    object-fit: cover;
}

.story__name {
    overflow: hidden;
    max-width: 80px;
    color: #55534e;
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story:hover .story__ring,
.story:focus-visible .story__ring {
    box-shadow: 0 7px 20px rgba(21, 21, 21, .12);
    transform: scale(1.05);
}

.story--add {
    position: relative;
}

.story__avatar--add {
    position: relative;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 2px dashed rgba(21, 21, 21, .25);
    background: rgba(21, 21, 21, .025);
    transition: border-color .2s ease, background .2s ease;
}

.story__avatar--add > svg {
    width: 28px;
    fill: none;
    stroke: rgba(21, 21, 21, .42);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.story__plus {
    position: absolute;
    right: -1px;
    bottom: -1px;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 3px solid var(--background);
    border-radius: 50%;
    background: var(--foreground);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.story--add:hover .story__avatar--add {
    border-color: rgba(21, 21, 21, .5);
    background: rgba(21, 21, 21, .06);
}

.latest {
    position: relative;
    max-width: 1088px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.latest::before {
    position: absolute;
    z-index: -1;
    top: -200px;
    left: -300px;
    width: 700px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01) 52%, transparent 72%);
    content: "";
    transform: rotate(-35deg);
}

.latest__heading {
    padding: 36px 20px 30px;
}

.latest__heading h2 {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -.045em;
}

.latest__heading p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.news-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 20px 26px;
}

.news-filter__buttons {
    display: flex;
    min-width: 0;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.news-filter__buttons::-webkit-scrollbar {
    display: none;
}

.news-filter__button {
    min-height: 44px;
    flex: 0 0 auto;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    padding: 10px 17px;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.news-filter__button:hover {
    border-color: rgba(255, 255, 255, .38);
    color: var(--foreground);
}

.news-filter__button:active {
    transform: scale(.97);
}

.news-filter__button.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #0a0a0a;
}

.news-filter__result {
    flex: 0 0 auto;
    margin: 0;
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    letter-spacing: .04em;
}

.dash {
    position: absolute;
    right: calc((100vw - 100%) / -2);
    left: calc((100vw - 100%) / -2);
    height: 1px;
    border-bottom: 1px dashed var(--line);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 18px 12px 0;
}

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

.news-card.is-filtered-in {
    animation: card-in .24s var(--ease) both;
}

.news-card__link {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 10px;
    text-align: left;
    text-decoration: none;
    transition: background .18s ease;
}

.news-card__link:hover,
.news-card__link:focus-visible {
    background: rgba(255, 255, 255, .075);
}

.news-card__image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 7px;
    background: #dfddd7;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.news-card__link:hover .news-card__image img,
.news-card__link:focus-visible .news-card__image img {
    transform: scale(1.055);
}

.news-card__category {
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    background: rgba(14, 14, 14, .7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .08em;
    padding: 5px 9px;
    text-transform: uppercase;
}

.news-card__body {
    padding: 0 8px 12px;
}

.news-card__meta {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
    white-space: nowrap;
}

.news-card__meta i {
    width: 3px;
    height: 3px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: currentColor;
}

.news-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 10px 0 0;
    font-size: 19px;
    font-weight: 670;
    letter-spacing: -.025em;
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.story-viewer {
    width: min(430px, calc(100vw - 28px));
    max-width: none;
    height: min(760px, calc(100dvh - 28px));
    max-height: none;
    border: 0;
    border-radius: 18px;
    background: #101010;
    color: #fff;
    padding: 0;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.story-viewer[open] {
    animation: viewer-in .22s var(--ease);
}

.story-viewer::backdrop {
    background: rgba(8, 8, 8, .82);
    backdrop-filter: blur(9px);
}

.story-viewer__shell {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.story-viewer__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.story-viewer__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 24%, transparent 64%, rgba(0, 0, 0, .72));
    pointer-events: none;
}

.story-viewer__progress {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    left: 12px;
    display: flex;
    gap: 4px;
}

.story-viewer__bar {
    height: 2px;
    flex: 1;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .35);
}

.story-viewer__bar span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
}

.story-viewer__bar.is-done span {
    width: 100%;
}

.story-viewer__bar.is-active span {
    animation: story-progress 5s linear forwards;
}

.story-viewer__user {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-viewer__avatar {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    object-fit: cover;
}

.story-viewer__user div {
    display: flex;
    flex-direction: column;
}

.story-viewer__name {
    font-size: 13px;
    line-height: 1.25;
}

.story-viewer__time {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
}

.story-viewer__close {
    position: absolute;
    z-index: 3;
    top: 27px;
    right: 12px;
    display: grid;
    width: 44px;
    height: 44px;
    cursor: pointer;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
}

.story-viewer__close svg,
.story-viewer__nav svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.story-viewer__close:hover {
    background: rgba(255, 255, 255, .13);
}

.story-viewer__nav {
    position: absolute;
    z-index: 2;
    top: 90px;
    bottom: 92px;
    width: 44%;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: #fff;
    opacity: 0;
}

.story-viewer__nav:focus-visible {
    opacity: 1;
}

.story-viewer__nav svg {
    position: absolute;
    top: 50%;
    width: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .28);
    padding: 5px;
}

.story-viewer__nav--prev {
    left: 0;
}

.story-viewer__nav--prev svg {
    left: 12px;
}

.story-viewer__nav--next {
    right: 0;
}

.story-viewer__nav--next svg {
    right: 12px;
}

.story-viewer__caption {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 22px;
    left: 24px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.08;
    letter-spacing: -.025em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.article-viewer {
    width: min(920px, calc(100vw - 32px));
    max-width: none;
    height: min(900px, calc(100dvh - 32px));
    max-height: none;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: var(--surface);
    color: var(--foreground);
    padding: 0;
    box-shadow: 0 32px 120px rgba(0, 0, 0, .75);
    overflow: hidden;
}

.article-viewer[open] {
    animation: viewer-in .24s var(--ease);
}

.article-viewer::backdrop {
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(10px);
}

.article-viewer__shell {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(255, 255, 255, .22) transparent;
    scrollbar-width: thin;
}

.article-viewer__close {
    position: fixed;
    z-index: 3;
    top: max(28px, env(safe-area-inset-top));
    right: max(28px, calc((100vw - min(920px, calc(100vw - 32px))) / 2 + 16px));
    display: grid;
    width: 48px;
    height: 48px;
    cursor: pointer;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: rgba(8, 8, 8, .74);
    backdrop-filter: blur(12px);
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}

.article-viewer__close:hover {
    background: rgba(255, 255, 255, .15);
    transform: rotate(4deg);
}

.article-viewer__close svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.article-viewer__image {
    width: 100%;
    height: min(48vh, 480px);
    background: #171717;
    object-fit: cover;
}

.article-viewer__content {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 72px) 32px 88px;
}

.article-viewer__category {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--foreground) 30%, transparent);
    border-radius: 999px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 5px 11px;
    text-transform: uppercase;
}

.article-viewer__title {
    margin: 22px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .98;
}

.article-viewer__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 12px;
}

.article-viewer__meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

.article-viewer__lead {
    margin: 42px 0 0;
    color: #d5d5d0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(21px, 3vw, 28px);
    line-height: 1.42;
}

.article-viewer__body {
    margin-top: 42px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.article-viewer__body p {
    margin: 28px 0 0;
    color: #c1c1bc;
    font-size: 18px;
    line-height: 1.78;
}

@keyframes viewer-in {
    from { opacity: 0; transform: scale(.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes story-progress {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes card-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
    .spotlight {
        min-height: auto;
        padding-top: 64px;
    }

    .spotlight__link {
        flex-direction: column;
        align-items: center;
        gap: 54px;
    }

    .spotlight__copy {
        width: min(100%, 420px);
        flex-basis: auto;
        padding-top: 0;
        text-align: center;
    }

    .eyebrow {
        justify-content: center;
        margin-bottom: 26px;
    }

    .spotlight__text {
        margin-right: auto;
        margin-left: auto;
    }

    .spotlight__cta {
        justify-content: center;
    }

    .spotlight__image-wrap {
        width: min(78vw, 380px);
        height: min(98vw, 470px);
    }

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

@media (max-width: 560px) {
    .spotlight {
        padding: 54px 20px 96px;
    }

    .spotlight__title {
        font-size: clamp(48px, 15vw, 64px);
    }

    .spotlight__image-wrap {
        width: min(78vw, 330px);
        height: min(95vw, 410px);
    }

    .stories-section {
        padding-right: 16px;
        padding-bottom: 60px;
        padding-left: 16px;
    }

    .latest__heading {
        padding-right: 20px;
        padding-left: 20px;
    }

    .news-filter {
        display: block;
        padding-right: 0;
        padding-left: 20px;
    }

    .news-filter__buttons {
        padding-right: 20px;
    }

    .news-filter__result {
        margin-top: 12px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        padding-right: 10px;
        padding-left: 10px;
    }

    .news-card h3 {
        font-size: 21px;
    }

    .article-viewer {
        width: 100vw;
        height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .article-viewer__close {
        top: max(14px, env(safe-area-inset-top));
        right: 14px;
    }

    .article-viewer__image {
        height: 38vh;
    }

    .article-viewer__content {
        padding: 34px 22px 72px;
    }

    .article-viewer__title {
        font-size: clamp(38px, 12vw, 52px);
    }

    .article-viewer__lead {
        margin-top: 32px;
    }

    .article-viewer__body p {
        font-size: 17px;
        line-height: 1.72;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ==========================================================================
   Реакции и просмотры (2026-07-30)
   ========================================================================== */

/* --- Просмотры на карточке -------------------------------------------------- */
.news-card__views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-card__views svg {
    width: 14px;
    height: 14px;
    opacity: .8;
}

/* --- Реакции в модалке ------------------------------------------------------ */
.article-reactions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.article-reactions__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 9px 16px;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 14px;
    font-weight: 650;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.article-reactions__btn:hover {
    color: var(--foreground);
    border-color: color-mix(in srgb, var(--foreground) 38%, transparent);
}

.article-reactions__btn:active {
    transform: scale(.96);
}

.article-reactions__btn.is-mine {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--accent-ink);
}

.article-reactions__emoji {
    font-size: 17px;
    line-height: 1;
}

.article-reactions__count {
    font-variant-numeric: tabular-nums;
    min-width: 1ch;
}

.article-reactions__views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    color: var(--muted);
    font-size: 13px;
}

.article-reactions__views svg {
    width: 15px;
    height: 15px;
    opacity: .8;
}

/* --- Мобильные уточнения ---------------------------------------------------- */
@media (max-width: 560px) {
    .article-reactions {
        gap: 8px;
    }

    .article-reactions__views {
        margin-left: 0;
        width: 100%;
    }
}

/* Правая группа панели фильтров: счётчик + переключатель темы. */
.news-filter__aside {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

/* Текст только для скринридеров (подписи реакций). */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 560px) {
    .news-filter__aside {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
}

/* --- Цвет текста: main.css шаблона грузится позже и задаёт белый на body.
   В тёмной теме совпадало, в светлой делало текст нечитаемым.
   Поднимаем специфичность до нашего класса страницы. -------------------- */
/* menuleak-фикс 2026-08-05: селекторы вида body.fluorite-news-page a красили
   и ЧУЖИЕ компоненты — пункты staggered-меню сайта (тоже <a> в body) становились
   цвета темы блога: в тёмной теме белые на белой матовой панели. Скоупим на main:
   весь контент блога внутри <main>, меню/шапка/футер — снаружи. */
body.fluorite-news-page,
body.fluorite-news-page main,
body.fluorite-news-page main h1,
body.fluorite-news-page main h2,
body.fluorite-news-page main h3,
body.fluorite-news-page main p,
body.fluorite-news-page main a,
body.fluorite-news-page main time {
    color: var(--foreground);
}

/* Приглушённые подписи остаются приглушёнными в обеих темах. */
body.fluorite-news-page .news-card__meta,
body.fluorite-news-page .news-card__meta span,
body.fluorite-news-page .news-card__meta time,
body.fluorite-news-page .news-card p,
body.fluorite-news-page .news-filter__result,
body.fluorite-news-page .news-filter__button,
body.fluorite-news-page .section__lead,
body.fluorite-news-page .article-reactions__views {
    color: var(--muted);
}

body.fluorite-news-page .news-filter__button.is-active {
    color: var(--accent-ink);
}

body.fluorite-news-page .article-reactions__btn.is-mine,
body.fluorite-news-page .article-reactions__btn.is-mine span {
    color: var(--accent-ink);
}

/* Лид под заголовком «В фокусе» — был захардкожен под тёмный фон. */
body.fluorite-news-page .spotlight__text {
    color: color-mix(in srgb, var(--foreground) 62%, transparent);
}

/* ==========================================================================
   Страница статьи и страница темы (2026-07-30)
   Мера чтения ~720px, отступ сверху под фиксированную шапку сайта.
   ========================================================================== */

.article-page,
.news-section {
    max-width: 1088px;
    margin: 0 auto;
    padding: 104px 20px 80px;
}

.article-page {
    max-width: 760px;
}

/* --- Хлебные крошки --- */
.article-page__crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.article-page__crumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease;
}

.article-page__crumbs a:hover {
    color: var(--foreground);
}

/* --- Шапка статьи --- */
.article-page__head {
    margin-bottom: 34px;
}

.article-page__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--muted);
}

.article-page__meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: .5;
}

.article-page__title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4.2vw, 48px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.article-page__lead {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--foreground) 72%, transparent);
}

/* --- Иллюстрация --- */
.article-page__image {
    margin: 0 0 36px;
    border-radius: 14px;
    overflow: hidden;
}

.article-page__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Текст статьи --- */
.article-page__body {
    font-size: 17px;
    line-height: 1.75;
}

.article-page__body p {
    margin: 0 0 20px;
}

.article-page__body h2 {
    margin: 38px 0 14px;
    font-size: 25px;
    line-height: 1.25;
}

.article-page__body h3 {
    margin: 30px 0 12px;
    font-size: 20px;
}

.article-page__body ul,
.article-page__body ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.article-page__body li {
    margin-bottom: 8px;
}

.article-page__body a {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Ссылка в каталог --- */
.article-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
}

.article-cta__text {
    margin: 0;
    max-width: 46ch;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
}

.article-cta__link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink, #0a0a0a);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: transform .2s ease;
}

.article-cta__link:hover {
    transform: translateY(-1px);
}

.article-cta__link:active {
    transform: scale(.97);
}

/* --- Читайте также --- */
.article-related {
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.article-related__title {
    margin: 0 0 22px;
    font-size: 22px;
}

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

.article-related__card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
}

.article-related__card img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .5s var(--ease);
}

.article-related__card:hover img {
    transform: scale(1.04);
}

.article-related__name {
    font-size: 14px;
    line-height: 1.4;
}

/* --- Ссылка назад на странице темы --- */
.news-back {
    margin: 34px 0 0;
    font-size: 14px;
}

.news-back a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-back a:hover {
    color: var(--foreground);
}

@media (max-width: 820px) {
    .article-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .article-page,
    .news-section {
        padding: 88px 16px 60px;
    }

    .article-page__body {
        font-size: 16px;
    }

    .article-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-related__grid {
        grid-template-columns: 1fr;
    }

    .article-related__card img {
        height: 168px;
    }
}


/* ==========================================================================
   Светлая тема: белый фон, чёрный текст (2026-08-01)
   Переключается подменой тех же токенов, разметка не меняется.
   ========================================================================== */
:root[data-theme="light"] {
    color-scheme: light;
    --background: #ffffff;
    --surface: #f6f6f4;
    --foreground: #101010;
    --muted: #6a6a66;
    --line: #e2e2dd;
    /* На белом фоне активный элемент — чёрный с белым текстом. */
    --accent: #101010;
    --accent-ink: #ffffff;
}

:root[data-theme="light"] body {
    background:
        radial-gradient(circle at 15% 68%, rgba(16, 16, 16, .035), transparent 30rem),
        var(--background);
}

:root[data-theme="light"] .news-card,
:root[data-theme="light"] .article-cta {
    box-shadow: 0 16px 40px rgba(16, 16, 16, .08);
}

/* --- Переключатель темы --- */
.news-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1088px;
    margin: 0 auto;
    /* Шапка сайта фиксированная — опускаем кнопку ниже её панели. */
    padding: 104px 20px 0;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 13px;
    font-weight: 650;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.theme-toggle:hover {
    color: var(--foreground);
    border-color: color-mix(in srgb, var(--foreground) 38%, transparent);
}

.theme-toggle:active { transform: scale(.97); }

.theme-toggle__icon { width: 16px; height: 16px; flex: 0 0 auto; }

.theme-toggle .theme-toggle__sun { display: none; }
:root[data-theme="light"] .theme-toggle .theme-toggle__sun { display: block; }
:root[data-theme="light"] .theme-toggle .theme-toggle__moon { display: none; }

.theme-toggle__label { font-size: 0; }
.theme-toggle__label::after { content: "Светлый фон"; font-size: 13px; }
:root[data-theme="light"] .theme-toggle__label::after { content: "Тёмный фон"; }

@media (max-width: 560px) {
    .news-topbar { padding: 88px 16px 0; }
}

/* Кнопка в каталог: глобальный фикс цвета ссылок (body.fluorite-news-page a)
   специфичнее .article-cta__link и делал текст белым на белом. Возвращаем контраст. */
body.fluorite-news-page .article-cta__link {
    color: var(--accent-ink);
}

body.fluorite-news-page .article-related__card,
body.fluorite-news-page .article-related__name {
    color: var(--foreground);
}

/* Посещённые ссылки: без явного правила Chrome красит их фиолетовым —
   в тёмной теме это выглядело как сломанная вёрстка. */
body.fluorite-news-page main a:visited,
body.fluorite-news-page main a:link {
    color: inherit;
}

body.fluorite-news-page .article-page__crumbs a,
body.fluorite-news-page .article-page__crumbs a:visited,
body.fluorite-news-page .article-page__crumbs a:link {
    color: var(--muted);
}

body.fluorite-news-page .article-page__crumbs a:hover {
    color: var(--foreground);
}

body.fluorite-news-page .article-cta__link,
body.fluorite-news-page .article-cta__link:visited,
body.fluorite-news-page .article-cta__link:link {
    color: var(--accent-ink);
}

body.fluorite-news-page .news-card__link,
body.fluorite-news-page .news-card__link:visited,
body.fluorite-news-page .article-related__card,
body.fluorite-news-page .article-related__card:visited,
body.fluorite-news-page .spotlight__link,
body.fluorite-news-page .spotlight__link:visited {
    color: var(--foreground);
}

body.fluorite-news-page .news-back a,
body.fluorite-news-page .news-back a:visited {
    color: var(--muted);
}


/* ------------------------------------------------------------------
   Пустое состояние картинки: у статьи нет фото (например, публикация
   через API без image_url). Раньше рендерился <img> с пустым src и
   браузер показывал alt-текст в рамке «сломанного изображения».
   Плитка строится на токенах темы, поэтому корректна и в тёмной,
   и в светлой; штриховка едва заметна и читается как «фото нет»,
   а не как ошибка загрузки.
   ------------------------------------------------------------------ */
.news-card__image--empty,
.spotlight__image-wrap--empty,
.article-related__thumb--empty {
    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0 11px,
            rgba(128, 128, 128, .07) 11px 22px
        ),
        var(--surface);
    box-shadow: inset 0 0 0 1px var(--line);
}

.article-related__thumb--empty {
    display: block;
    width: 100%;
    height: 132px;
    border-radius: 10px;
}


/* ------------------------------------------------------------------
   Картинки внутри текста статьи.
   Разметку <figure> строит СЕРВЕР (api/news_publish.php) по
   плейсхолдерам {{image:N}} — здесь только вид. Селектор намеренно
   ловит и «голый» <img>: картинку может вставить админ через
   визуальный редактор Bitrix, и она не должна вылезать за колонку.
   Радиус 14px — шкала главного фото статьи (.article-page__image).
   ------------------------------------------------------------------ */
.article-figure {
    margin: 32px 0;
}

.article-figure img,
.article-page__body img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.article-figure figcaption,
.article-page__body figcaption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}

/* Плашка черновика: служебная пометка, не должна спорить с текстом. */
.article-draft-note {
    max-width: 760px;
    margin: 0 auto 22px;
    padding: 11px 15px;
    border: 1px dashed var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}


/* ==========================================================================
   Этап 40: назад, автор, шаринг, прогресс, соседние статьи, популярное.
   Всё на токенах темы — работает в тёмной и светлой без отдельных правил.
   ========================================================================== */

/* --- «Назад» в топбаре: пилюля в языке фильтров, вся коробка кликабельна --- */
.news-topbar__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: color .3s var(--ease), border-color .3s var(--ease);
}

.news-topbar__back svg {
    width: 16px;
    height: 16px;
}

.news-topbar__back:hover,
.news-topbar__back:focus-visible {
    color: var(--foreground);
    border-color: var(--muted);
}

/* --- Прогресс чтения: 2px, поверх всего, двигается transform'ом --- */
.article-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 90;
    pointer-events: none;
    background: transparent;
}

.article-progress span {
    display: block;
    height: 100%;
    background: var(--foreground);
    transform: scaleX(0);
    transform-origin: left;
}

@media (prefers-reduced-motion: no-preference) {
    .article-progress span {
        transition: transform .1s linear;
    }
}

/* --- Автор в мете статьи --- */
.article-page__author-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--line);
    transition: text-decoration-color .3s var(--ease);
}

.article-page__author-link:hover,
.article-page__author-link:focus-visible {
    text-decoration-color: currentColor;
}

/* --- Поделиться: пилюли в ряду реакций --- */
.article-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
}

.article-share__label {
    font-size: 13px;
    color: var(--muted);
    margin-right: 4px;
}

.article-share__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-decoration: none;
    transition: color .3s var(--ease), border-color .3s var(--ease);
}

.article-share__btn svg {
    width: 18px;
    height: 18px;
}

.article-share__btn:hover,
.article-share__btn:focus-visible {
    color: var(--foreground);
    border-color: var(--muted);
}

.article-share__btn:active {
    transform: scale(.96);
}

.article-share__btn.is-copied {
    color: var(--foreground);
    border-color: var(--foreground);
}

.article-share__copied {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    white-space: nowrap;
    color: var(--muted);
}

/* --- Карточка автора под статьёй --- */
.article-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 26px 0 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
}

.article-author__photo {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author__photo--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--muted);
    background: var(--background);
    border: 1px solid var(--line);
}

.article-author__info {
    flex: 1 1 auto;
    min-width: 0;
}

.article-author__name {
    margin: 0;
    font-weight: 600;
}

.article-author__role {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--muted);
}

.article-author__more {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    color: var(--foreground);
    text-decoration: none;
    transition: border-color .3s var(--ease);
}

.article-author__more:hover,
.article-author__more:focus-visible {
    border-color: var(--muted);
}

@media (max-width: 560px) {
    .article-author {
        flex-wrap: wrap;
    }
    .article-author__more {
        width: 100%;
        justify-content: center;
    }
}

/* --- Соседние статьи: две коробки, кликабельны целиком --- */
.article-adjacent {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 34px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.article-adjacent__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 44px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
    color: var(--foreground);
    transition: border-color .3s var(--ease);
}

.article-adjacent__card--next {
    text-align: right;
    /* одна ссылка на краю ленты — уходит в свою колонку */
    grid-column: 2;
}

.article-adjacent__card--prev {
    grid-column: 1;
}

.article-adjacent__card:hover,
.article-adjacent__card:focus-visible {
    border-color: var(--muted);
}

.article-adjacent__dir {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.article-adjacent__name {
    font-size: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 560px) {
    .article-adjacent {
        grid-template-columns: 1fr;
    }
    .article-adjacent__card--next {
        grid-column: 1;
        text-align: left;
    }
}

/* --- «Читают сейчас» на /news/ --- */
.news-popular {
    max-width: 1088px;
    margin: 46px auto 0;
    padding: 0 20px;
}

.news-popular__title {
    margin: 0 0 18px;
    font-size: 24px;
}

.news-grid--popular {
    margin-top: 0;
}

/* --- Шапка страницы автора --- */
.author-head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 30px;
}

.author-head__photo {
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.author-head__photo--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
}

.author-head__info {
    flex: 1 1 auto;
    min-width: 0;
}

.author-head__role {
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--muted);
}

.author-head__bio {
    margin: 12px 0 0;
    max-width: 62ch;
    line-height: 1.65;
}

.author-head__link {
    margin: 10px 0 0;
    font-size: 14px;
}

.author-head__link a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.author-head__link a:hover {
    color: var(--foreground);
}

@media (max-width: 560px) {
    .author-head {
        flex-direction: column;
        gap: 14px;
    }
}


/* ------------------------------------------------------------------
   Guard (menuleak, 2026-08-05): staggered-меню сайта НЕ зависит от темы
   блога. Дизайн меню: белая матовая панель + чёрные пункты
   (site-header.css). Однажды body-каскад блога уже перекрасил пункты
   в белый на белом — этот блок закрывает класс проблемы навсегда,
   даже если выше снова появится широкий селектор.
   ------------------------------------------------------------------ */
body.fluorite-news-page .fluorite-staggered-menu-panel a,
body.fluorite-news-page .fluorite-staggered-menu-panel a:link,
body.fluorite-news-page .fluorite-staggered-menu-panel a:visited,
body.fluorite-news-page .fluorite-sm-panel-item,
body.fluorite-news-page .fluorite-sm-subpanel-link {
    color: #000;
}

/* End */
/* /local/templates/fluorite_v1/pages/news/assets/styles.css?178592856750101 */
