/* playfair-display-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}
/* playfair-display-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/playfair-display-v40-latin-800.woff2') format('woff2');
}
/* playfair-display-900 - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/playfair-display-v40-latin-900.woff2') format('woff2');
}

/* lora-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lora-v37-latin-regular.woff2') format('woff2');
}
/* lora-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lora-v37-latin-italic.woff2') format('woff2');
}
/* lora-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lora-v37-latin-700.woff2') format('woff2');
}
/* lora-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/lora-v37-latin-700italic.woff2') format('woff2');
}
/* syne-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/syne-v24-latin-600.woff2') format('woff2');
}
/* syne-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/syne-v24-latin-700.woff2') format('woff2');
}
/* syne-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/syne-v24-latin-800.woff2') format('woff2');
}

:root {
    --art-accent: #ff6b00;
    --art-accent2: #ff9140;
    --art-dark: #0c0c0f;
    --art-ink: #1a1a2e;
    --art-surface: #f7f6f3;
    --art-card: #ffffff;
    --art-muted: #6b7280;
    --art-border: #e8e5df;
    --art-gradient: linear-gradient(135deg, #ff6b00, #ff9140);
    --art-gradient-gold: linear-gradient(90deg, #ff6b00, #ff9140, #ffc97a, #ff9140, #ff6b00);
    --art-gradient-dark: linear-gradient(135deg, #1e293b 0%, #263548 100%);
    --art-shadow-sm: 0 2px 12px rgba(0,0,0,.06);
    --art-shadow-md: 0 8px 32px rgba(0,0,0,.10);
    --art-shadow-lg: 0 24px 64px rgba(0,0,0,.14);
    --container: 1280px;
    --col-main: minmax(0, 1fr);
    --col-side: 360px;
    --radius-lg: clamp(20px, 3vw, 28px);
    --radius-md: 20px;
    --radius-sm: 14px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --font-sans: 'Syne', sans-serif;
    --transition-base: cubic-bezier(.4,0,.2,1);
}

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

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

#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--art-gradient);
    z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 12px rgba(255,107,0,.5);
}

.art-hero {
    position: relative;
    width: 100%;
    background: var(--art-dark);
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.art-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.45) saturate(1.1);
    transform: scale(1.01);
    transition: transform 8s ease;
    will-change: transform;
}

.art-hero__bg.loaded {
    transform: scale(1);
}

.art-hero__noise {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.art-hero__dots {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 100% at 60% 50%, black 20%, transparent 75%);
    pointer-events: none;
}

.art-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: orbFloat 9s ease-in-out infinite alternate;
}

.art-hero__orb--1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,107,0,.32), transparent 70%);
    top: -100px;
    right: -60px;
    animation-delay: 0s;
}

.art-hero__orb--2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(139,92,246,.18), transparent 70%);
    top: 40px;
    right: 260px;
    animation-delay: -4s;
}

.art-hero__orb--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,145,64,.22), transparent 70%);
    bottom: 60px;
    left: 30%;
    animation-delay: -7s;
}

.art-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12,12,15,.1) 0%, rgba(12,12,15,.0) 25%, rgba(12,12,15,.55) 65%, rgba(12,12,15,.92) 100%);
}

.art-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-template-rows: auto auto auto auto;
    column-gap: 60px;
    align-items: end;
}

.art-hero__left {
    grid-column: 1;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.art-hero__right {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.art-breaking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: #e11d48;
    border: 1px solid transparent;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 0;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(225,29,72,.4);
    height: auto;
    line-height: normal;
}

.art-breaking__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: blink 1.2s ease-in-out infinite;
}

/* ── Admin Edit Button ── */
.art-admin-edit {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    padding: 13px 22px 13px 18px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: 100px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    cursor: pointer;
    box-shadow:
        0 0 0 1px rgba(255, 107, 0, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: adminEditAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.art-admin-edit::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: var(--art-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.art-admin-edit:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 107, 0, 0.7);
    box-shadow:
        0 0 0 1px rgba(255, 107, 0, 0.3),
        0 16px 48px rgba(255, 107, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #fff;
}

.art-admin-edit:hover::before {
    opacity: 1;
}

.art-admin-edit:active {
    transform: translateY(-1px) scale(0.99);
}

.art-admin-edit__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.art-admin-edit:hover .art-admin-edit__icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: rotate(-8deg) scale(1.1);
}

.art-admin-edit__icon svg {
    width: 13px;
    height: 13px;
    color: var(--art-accent2);
    transition: color 0.3s;
}

.art-admin-edit:hover .art-admin-edit__icon svg {
    color: #fff;
}

.art-admin-edit__label {
    position: relative;
    z-index: 1;
}

/* Пульсирующая точка-индикатор */
.art-admin-edit::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--art-accent);
    border: 2px solid var(--art-dark, #0c0c0f);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
    animation: adminPulse 2.5s ease-in-out infinite;
}

@keyframes adminEditAppear {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes adminPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(255, 107, 0, 0.5); transform: scale(1); }
    50%       { box-shadow: 0 0 14px rgba(255, 107, 0, 0.9); transform: scale(1.2); }
}

.art-keyfacts {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 24px 24px 22px;
    width: 100%;
}

.art-keyfacts__header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--art-accent2);
    margin-bottom: 16px;
}

.art-keyfacts__header svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.art-keyfacts__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.art-keyfacts__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255,255,255,.72);
}

.art-keyfacts__bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--art-accent);
    flex-shrink: 0;
    margin-top: 7px;
    box-shadow: 0 0 6px rgba(255,107,0,.5);
}

.art-keyfacts__divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 14px 0 12px;
}

.art-keyfacts__footer {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.28);
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.art-keyfacts__footer svg {
    width: 11px;
    height: 11px;
}

.art-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 96%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 3;
    opacity: 0;
    animation: fadeInScroll 1s ease 1.5s forwards;
    pointer-events: none;
}

.art-scroll-hint__line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
}

.art-scroll-hint__chevron {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,.3);
    animation: bounceDown 1.6s ease-in-out infinite;
}

.art-verified-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(16, 185, 129, .35);
    border-radius: 6px;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #10b981;
}

.art-verified-banner svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.art-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.art-breadcrumbs a:hover {
    color: var(--art-accent2);
}

.art-breadcrumbs svg {
    width: 12px;
    height: 12px;
    opacity: .4;
}

.art-breadcrumbs__current {
    color: rgba(255,255,255,.75);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 340px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 12px;
}

.art-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
}

.art-badge {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    background: transparent;
    color: var(--art-accent2);
    border: 1px solid rgba(255,107,0,.5);
    transition: all .25s var(--transition-base);
}

.art-badge:hover {
    background: var(--art-accent);
    border-color: var(--art-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,.3);
}

.art-hero__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.5px;
    color: #fff;
    max-width: 820px;
    margin-bottom: 36px;
    text-shadow: 0 2px 32px rgba(0,0,0,.4);
}

.art-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    width: fit-content;
    max-width: 100%;
}

.art-hero__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid rgba(255,255,255,.18);
    flex-shrink: 0;
}

.art-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--art-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255,107,0,.4);
}

.art-avatar--lg {
    width: 64px;
    height: 64px;
    font-size: 26px;
    box-shadow: 0 0 0 3px rgba(255,107,0,.35);
}

.art-author-name {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}

.art-author-role {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    margin-top: 2px;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.art-hero__divider {
    display: none;
}

.art-meta-pills {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.art-meta-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,.48);
    letter-spacing: .15px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 10px;
    white-space: nowrap;
    position: relative;
}

.art-meta-pill + .art-meta-pill::before {
    content: '·';
    position: absolute;
    left: -1px;
    color: rgba(255,255,255,.2);
    font-size: 14px;
    line-height: 1;
}

.art-meta-pill svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.art-meta-pill.highlighted {
    color: rgba(255,255,255,.7);
}

.art-meta-pill.views {
    display: none;
}

.art-meta-pill--verified {
    color: #10b981;
    background: rgba(16,185,129,.1);
    border-color: rgba(16,185,129,.25);
    font-weight: 700;
}

.art-meta-pill--verified svg {
    color: #10b981;
    stroke: #10b981;
}

.art-meta-pill--words {
    color: rgba(255,255,255,.45);
    font-variant-numeric: tabular-nums;
}

.art-page {
    margin-top: 40px;
    background: var(--art-surface);
    padding: 0;
}

.art-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding: 52px 10px 80px 10px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: var(--col-main) var(--col-side);
    gap: 30px;
}

.art-share {
    position: absolute;
    left: -60px;
    top: 0;
    bottom: 0;
    width: 42px;
}

.art-share__inner {
    position: sticky;
    top: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.art-share__label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--art-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 4px;
}

.art-share__btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--art-border);
    background: var(--art-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--art-muted);
    cursor: pointer;
    transition: all .25s var(--transition-base);
    box-shadow: var(--art-shadow-sm);
}

.art-share__btn svg {
    width: 16px;
    height: 16px;
}

.art-share__btn:hover {
    transform: translateY(-3px) scale(1.1);
    color: #fff;
    border-color: transparent;
}

.art-share__btn.tg:hover {
    background: #0088cc;
    box-shadow: 0 8px 20px rgba(0,136,204,.3);
}

.art-share__btn.x:hover {
    background: #000;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.art-share__btn.fb:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24,119,242,.3);
}

.art-share__btn.cp:hover {
    background: var(--art-accent);
    box-shadow: 0 8px 20px rgba(255,107,0,.35);
}

.art-share__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--art-border), transparent);
    margin-top: 4px;
}

.art-main {
    position: relative;
    background: var(--art-card);
    border-radius: var(--radius-md);
    padding: 48px 56px 52px 56px;
    box-shadow: 0 -4px 0 0 var(--art-accent), 0 1px 0 0 rgba(255,107,0,.08), 0 12px 40px rgba(0,0,0,.07), 0 40px 100px rgba(0,0,0,.05);
    min-width: 0;
}

.art-main::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle at center, 
        rgba(255, 107, 0, 0.08) 0%, 
        rgba(255, 107, 0, 0.03) 40%, 
        rgba(255, 107, 0, 0) 70%
    );
    filter: blur(40px); 
    pointer-events: none;
    border-radius: 50%;
}

.art-main::after {
    content: '';
    position: absolute;
    left: 0;
    top: 52px;
    bottom: 52px;
    width: 3px;
    background: linear-gradient(to bottom, transparent 0%, var(--art-accent) 20%, var(--art-accent2) 80%, transparent 100%);
    border-radius: 0 2px 2px 0;
    opacity: .22;
}

.art-body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.84;
    color: #26262e;
}

.art-body p {
    margin-bottom: 26px;
}

.art-body p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    float: left;
    line-height: .82;
    margin: 6px 12px -4px 0;
    color: var(--art-accent);
    background: var(--art-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.art-body h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--art-ink);
    margin: 52px 0 18px;
    line-height: 1.25;
    position: relative;
    padding-bottom: 16px;
    padding-left: 0;
}

.art-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2.5px;
    background: var(--art-gradient);
    border-radius: 2px;
}

.art-body h2::after {
    content: '';
    position: absolute;
    left: 52px;
    bottom: 0;
    width: 88%;
    height: 1px;
    background: var(--art-border);
}

.art-body h3 {
    font-family: var(--font-sans);
    font-size: 19px;
    font-weight: 700;
    color: var(--art-ink);
    margin: 36px 0 12px;
    letter-spacing: -.2px;
}

.art-body a {
    color: var(--art-accent);
    font-style: italic;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: color .2s;
}

.art-body a:hover {
    color: #c94d00;
}

.art-body ul,
.art-body ol {
    margin: 0 0 26px 0;
    padding-left: 0;
    list-style: none;
}

.art-body ul li,
.art-body ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.art-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--art-accent);
    font-size: 14px;
    top: 3px;
}

.art-body ol {
    counter-reset: art-ol;
}

.art-body ol li {
    counter-increment: art-ol;
}

.art-body ol li::before {
    content: counter(art-ol);
    position: absolute;
    left: 0;
    color: var(--art-accent);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 13px;
    font-style: normal;
    top: 4px;
}

.art-body blockquote {
    position: relative;
    font-family: var(--font-display);
    font-size: 21px;
    font-style: italic;
    font-weight: 700;
    color: var(--art-ink);
    margin: 48px 0;
    padding: 32px 40px 32px 56px;
    background: linear-gradient(135deg, rgba(255,107,0,.04), rgba(255,145,64,.02));
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,107,0,.1);
    border-left: 3px solid var(--art-accent);
    line-height: 1.5;
}

.art-body blockquote::before {
    content: '\201C';
    position: absolute;
    left: 16px;
    top: 10px;
    font-size: 64px;
    line-height: 1;
    color: var(--art-accent);
    opacity: .25;
    font-family: var(--font-display);
    pointer-events: none;
}

.art-body figure {
    margin: 36px 0;
}

.art-body figcaption {
    font-size: 13px;
    color: var(--art-muted);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.art-faq {
    margin-top: 56px;
    position: relative;
}

.art-faq__header {
    margin-bottom: 28px;
}

.art-faq__kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--art-accent);
    margin-bottom: 10px;
}

.art-faq__kicker svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.art-faq__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--art-ink);
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.art-faq__title em {
    font-style: italic;
    background: var(--art-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 2px;
}

.art-faq__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--art-muted);
    line-height: 1.6;
    margin: 0;
}

.art-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--art-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255,107,0,.08), 0 4px 24px rgba(0,0,0,.05);
}

.art-faq__item {
    border-bottom: 1px solid var(--art-border);
    background: #fff;
    transition: background .2s;
    position: relative;
}

.art-faq__item:last-child {
    border-bottom: none;
}

.art-faq__item.is-open {
    background: #faf9f7;
}

.art-faq__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--art-gradient);
    border-radius: 0;
    opacity: 0;
    transition: opacity .25s;
}

.art-faq__item.is-open::before {
    opacity: 1;
}

.art-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: padding-left .2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.art-faq__question:focus-visible {
    outline: 2px solid var(--art-accent);
    outline-offset: -2px;
    border-radius: 4px;
}

.art-faq__item.is-open .art-faq__question {
    padding-left: 28px;
}

.art-faq__q-num {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    color: var(--art-border);
    letter-spacing: 1px;
    min-width: 24px;
    transition: color .25s;
    font-variant-numeric: tabular-nums;
}

.art-faq__item.is-open .art-faq__q-num,
.art-faq__question:hover .art-faq__q-num {
    color: var(--art-accent);
}

.art-faq__q-text {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--art-ink);
    line-height: 1.45;
    transition: color .2s;
}

.art-faq__question:hover .art-faq__q-text {
    color: var(--art-accent);
}

.art-faq__item.is-open .art-faq__q-text {
    color: var(--art-ink);
}

.art-faq__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--art-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background .25s, border-color .25s, transform .35s var(--transition-base);
    background: #fff;
}

.art-faq__icon svg {
    width: 14px;
    height: 14px;
    position: absolute;
    color: var(--art-muted);
    transition: opacity .25s, transform .35s var(--transition-base), color .25s;
}

.art-faq__icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.art-faq__icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.art-faq__item.is-open .art-faq__icon {
    background: var(--art-accent);
    border-color: var(--art-accent);
    transform: rotate(0deg);
}

.art-faq__item.is-open .art-faq__icon svg {
    color: #fff;
}

.art-faq__item.is-open .art-faq__icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.art-faq__item.is-open .art-faq__icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.art-faq__question:hover .art-faq__icon:not(.art-faq__item.is-open .art-faq__icon) {
    border-color: var(--art-accent);
    background: rgba(255,107,0,.06);
}

.art-faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s var(--transition-base), opacity .3s ease;
    opacity: 0;
}

.art-faq__answer:not([hidden]) {
    opacity: 1;
}

.art-faq__answer[hidden] {
    display: block !important;
    visibility: hidden;
    pointer-events: none;
}

.art-faq__answer-inner {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #3d3d50;
    padding: 0 28px 26px 64px;
    border-top: 1px solid #f0ede8;
    padding-top: 20px;
}

.art-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 56px;
    padding-top: 0;
    border-top: none;
    position: relative;
}

.art-tags::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--art-border) 20%, var(--art-border) 80%, transparent);
}

.art-tags__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--art-muted);
    flex-shrink: 0;
    margin-right: 4px;
}

.art-tag {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--art-muted);
    background: var(--art-surface);
    border: 1.5px solid var(--art-border);
    padding: 6px 16px;
    border-radius: 100px;
    transition: all .25s var(--transition-base);
    letter-spacing: .3px;
    position: relative;
    overflow: hidden;
}

.art-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--art-gradient);
    opacity: 0;
    transition: opacity .25s;
}

.art-tag:hover {
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,0,.28);
}

.art-tag:hover::before {
    opacity: 1;
}

.art-tag span {
    position: relative;
    z-index: 1;
}

.art-sources {
    margin-top: 40px;
    background: var(--art-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--art-border);
    overflow: hidden;
}
.art-sources__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #fff;
    border-bottom: 1px solid var(--art-border);
}
.art-sources__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--art-muted);
}
.art-sources__label svg {
    width: 13px;
    height: 13px;
    color: var(--art-accent);
}
.art-sources__count {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--art-muted);
    background: rgba(255,107,0,.08);
    border: 1px solid rgba(255,107,0,.18);
    color: var(--art-accent);
    padding: 3px 10px;
    border-radius: 100px;
}
.art-sources__list {
    list-style: none;
}
.art-sources__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--art-border);
    transition: background .2s;
    text-decoration: none;
}
.art-sources__item:last-child { border-bottom: none; }
.art-sources__item:hover { background: #fff; }
.art-sources__num {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    color: var(--art-border);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 22px;
    font-variant-numeric: tabular-nums;
    transition: color .2s;
}
.art-sources__item:hover .art-sources__num { color: var(--art-accent); }
.art-sources__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--art-border);
    flex-shrink: 0;
    transition: background .2s;
}
.art-sources__item:hover .art-sources__dot { background: var(--art-accent); }
.art-sources__content {
    flex: 1;
    min-width: 0;
}
.art-sources__link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--art-ink);
    transition: color .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.art-sources__item:hover .art-sources__link { color: var(--art-accent); }
.art-sources__meta {
    font-family: var(--font-sans);
    font-size: 10.5px;
    color: #b0aaa2;
    margin-top: 2px;
}
.art-sources__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--art-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    flex-shrink: 0;
    transition: all .2s;
}
.art-sources__arrow svg { width: 12px; height: 12px; }
.art-sources__item:hover .art-sources__arrow {
    background: var(--art-accent);
    border-color: var(--art-accent);
    color: #fff;
    transform: translate(2px, -2px);
}

.art-footer-share {
    /* try without art footer share at now */
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(255,107,0,.04) 0%, rgba(255,145,64,.02) 100%);
    border: 1px solid rgba(255,107,0,.1);
    border-radius: 16px;
    flex-wrap: wrap;
}

.art-footer-share__label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--art-ink);
    margin-right: 4px;
    flex-shrink: 0;
}

.art-footer-share__buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.art-footer-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--art-border);
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: all .25s var(--transition-base);
    white-space: nowrap;
}

.art-footer-share__btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.art-footer-share__btn:hover {
    transform: translateY(-2px);
}

.art-footer-share__btn--tg:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,136,204,.25);
}

.art-footer-share__btn--x:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.art-footer-share__btn--copy:hover {
    background: var(--art-accent);
    border-color: var(--art-accent);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255,107,0,.3);
}

.art-footer-share__btn--threads:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.art-footer-share__divider {
    width: 1px;
    height: 28px;
    background: var(--art-border);
    margin: 0 4px;
    flex-shrink: 0;
}

.art-footer-share__stat {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--art-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.art-footer-share__stat svg {
    width: 14px;
    height: 14px;
}

.arc {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding: 14px 20px;
    background: var(--art-surface);
    border: 1.5px solid var(--art-border);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.arc__label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--art-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.arc__btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.arc__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--art-border);
    background: #fff;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--art-muted);
    transition: all .22s var(--transition-base);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    white-space: nowrap;
}

.arc__btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(255,107,0,.3);
}

.arc__btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: stroke .22s;
}

.arc__btn--up:hover:not(.arc__btn--on) {
    border-color: rgba(255,107,0,.5);
    color: var(--art-accent);
    background: rgba(255,107,0,.05);
}

.arc__btn--up:hover:not(.arc__btn--on) svg {
    stroke: var(--art-accent);
}

.arc__btn--down:hover:not(.arc__btn--on) {
    border-color: rgba(99,102,241,.45);
    color: #6366f1;
    background: rgba(99,102,241,.05);
}

.arc__btn--down:hover:not(.arc__btn--on) svg {
    stroke: #6366f1;
}

.arc__btn--up.arc__btn--on {
    background: var(--art-accent);
    border-color: var(--art-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,107,0,.28);
}

.arc__btn--up.arc__btn--on svg {
    stroke: #fff;
    fill: rgba(255,255,255,.2);
}

.arc__btn--down.arc__btn--on {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
    box-shadow: 0 4px 14px rgba(99,102,241,.28);
}

.arc__btn--down.arc__btn--on svg {
    stroke: #fff;
    fill: rgba(255,255,255,.2);
}

.arc__count {
    font-variant-numeric: tabular-nums;
    min-width: 12px;
}

.arc__divider {
    display: flex;
    align-items: center;
}

.arc__bar {
    width: 48px;
    height: 3px;
    background: var(--art-border);
    border-radius: 2px;
    overflow: hidden;
}

.arc__fill {
    height: 100%;
    background: var(--art-gradient);
    border-radius: 2px;
    transition: width .5s var(--transition-base);
}

.arc__stat {
    margin-left: auto;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: #b0aaa2;
    letter-spacing: .2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.arc__toast {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--art-ink);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 100px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
}

.arc__toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.arc__btn.arc--pop {
    animation: arcPop .32s var(--transition-base) both;
}

.arc.arc--loading .arc__btn {
    pointer-events: none;
    opacity: .6;
}

.art-author-box {
    position: relative;
    margin-top: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 -3px 0 0 var(--art-accent), 0 16px 48px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
    background: #fff;
}

.art-author-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255,107,0,.07) 0%, transparent 45%), radial-gradient(circle at 0% 100%, rgba(255,145,64,.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.art-author-box__header {
    position: relative;
    z-index: 1;
    background: var(--art-gradient-dark);
    padding: 18px 32px 21px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.art-author-box__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,107,0,.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.art-author-box__header-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,.12), transparent 70%);
    top: -120px;
    right: -60px;
    filter: blur(60px);
    pointer-events: none;
}

.art-author-box__header-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--art-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.art-author-box__header-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--art-border);
}

.art-author-box__main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 0 36px;
    margin-top: -24px;
    margin-bottom: 24px;
}

.art-author-box__avatar-wrap {
    flex-shrink: 0;
    position: relative;
}

.art-author-box__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--art-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(255,107,0,.3), 0 8px 28px rgba(255,107,0,.3);
    position: relative;
    z-index: 1;
}

.art-author-box__verified-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.art-author-box__verified-icon svg {
    width: 11px;
    height: 11px;
    color: #fff;
}

.art-author-box__title-block {
    flex: 1;
    padding-bottom: 4px;
}

.art-author-box__name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--art-ink);
    line-height: 1.1;
    margin-bottom: 4px;
}

.art-author-box__role {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--art-muted);
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.art-author-box__role::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--art-accent);
    flex-shrink: 0;
}

.art-author-box__profile-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--art-border);
    background: #fff;
    color: var(--art-ink);
    cursor: pointer;
    transition: all .25s var(--transition-base);
    white-space: nowrap;
    margin-bottom: 4px;
    text-decoration: none;
}

.art-author-box__profile-btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform .25s;
}

.art-author-box__profile-btn:hover {
    background: var(--art-ink);
    border-color: var(--art-ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.art-author-box__profile-btn:hover svg {
    transform: translateX(3px);
}

.art-author-box__body {
    position: relative;
    z-index: 1;
    padding: 0 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.art-author-box__bio {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--art-border);
    margin: 0;
}

.art-author-box__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.art-author-box__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.art-cred-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    color: var(--art-muted);
    background: var(--art-surface);
    border: 1px solid var(--art-border);
    padding: 7px 14px;
    border-radius: 100px;
    transition: all .2s;
}

.art-cred-pill:hover {
    background: var(--art-ink);
    border-color: var(--art-ink);
    color: #fff;
}

.art-cred-pill svg {
    width: 12px;
    height: 12px;
    color: var(--art-accent);
    transition: color .2s;
    flex-shrink: 0;
}

.art-cred-pill:hover svg {
    color: var(--art-accent2);
}

.art-author-box__social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.art-author-box__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--art-border);
    color: var(--art-muted);
    transition: all .2s;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.art-author-box__social-link:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
    color: #fff;
    transform: scale(1.1) translateY(-1px);
}

.art-author-box__social-link svg {
    width: 14px;
    height: 14px;
}

.art-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #10b981;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.2);
    padding: 4px 8px;
    border-radius: 100px;
}

.art-verified-badge svg {
    width: 10px;
    height: 10px;
}

.art-notices {
    margin-top: 48px;
    position: relative;
    width: 100%;
    max-width: 760px;
}

.art-notices__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.art-notices__kicker {
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--art-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.art-notices__kicker::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--art-border);
    border-radius: 1px;
}

.art-notices__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--art-border), transparent);
}

.art-notices__card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,.07);
    overflow: hidden;
    box-shadow: 0 1px 0 0 rgba(255,107,0,.12), 0 8px 32px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
    position: relative;
}

.art-notices__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00 0%, #ff9140 40%, transparent 100%);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.art-notices__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.art-notices__item + .art-notices__item {
    border-left: 1px solid #f0ede8;
}

.art-notices__item {
    padding: 28px 30px 26px;
    position: relative;
    transition: background .25s;
    overflow: hidden;
}

.art-notices__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity .3s;
}

.art-notices__item--disclaimer::after {
    background: var(--art-gradient);
}

.art-notices__item--editorial::after {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.art-notices__item:hover {
    background: #faf9f7;
}

.art-notices__item:hover::after {
    opacity: 1;
}

.art-notices__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
    flex-shrink: 0;
}

.art-notices__item--disclaimer .art-notices__icon-wrap {
    background: linear-gradient(135deg, rgba(255,107,0,.1), rgba(255,145,64,.06));
    border: 1px solid rgba(255,107,0,.14);
    color: var(--art-accent);
}

.art-notices__item--editorial .art-notices__icon-wrap {
    background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(139,92,246,.06));
    border: 1px solid rgba(99,102,241,.16);
    color: #6366f1;
}

.art-notices__icon-wrap svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.art-notices__icon-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 1.5px solid currentColor;
    opacity: 0;
    transition: opacity .25s, inset .25s;
}

.art-notices__item:hover .art-notices__icon-wrap::before {
    opacity: .18;
    inset: -6px;
}

.art-notices__title {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--art-ink);
}

.art-notices__badge {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 2px 7px;
    border-radius: 100px;
    text-transform: uppercase;
}

.art-notices__item--disclaimer .art-notices__badge {
    background: rgba(255,107,0,.08);
    color: var(--art-accent);
    border: 1px solid rgba(255,107,0,.18);
}

.art-notices__item--editorial .art-notices__badge {
    background: rgba(99,102,241,.08);
    color: #6366f1;
    border: 1px solid rgba(99,102,241,.18);
}

.art-notices__text {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.72;
    color: #5a5a6a;
}

.art-notices__text a {
    color: var(--art-accent);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    font-style: italic;
    transition: color .2s;
}

.art-notices__item--editorial .art-notices__text a {
    color: #6366f1;
}

.art-notices__text a:hover {
    color: #c94d00;
}

.art-notices__item--editorial .art-notices__text a:hover {
    color: #4f46e5;
}

.art-notices__footer {
    background: #faf9f6;
    border-top: 1px solid #f0ede8;
    padding: 13px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.art-notices__footer-text {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 600;
    color: #b0aaa4;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.art-notices__footer-text svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: #10b981;
}

.art-notices__footer-link {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--art-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s, gap .2s;
}

.art-notices__footer-link svg {
    width: 11px;
    height: 11px;
    transition: transform .2s;
}

.art-notices__footer-link:hover {
    color: var(--art-accent);
    gap: 8px;
}

.art-notices__footer-link:hover svg {
    transform: translateX(2px);
}

.art-pubstamp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    padding: 16px 22px;
    background: var(--art-surface);
    border: 1px solid var(--art-border);
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.art-pubstamp__item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}

.art-pubstamp__item:first-child {
    padding-left: 0;
}

.art-pubstamp__item:last-child {
    padding-right: 0;
}

.art-pubstamp__divider {
    width: 1px;
    height: 32px;
    background: var(--art-border);
    flex-shrink: 0;
}

.art-pubstamp__label {
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--art-muted);
}

.art-pubstamp__val {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--art-ink);
    letter-spacing: .2px;
}

.art-pubstamp__val--updated {
    color: #10b981;
}

.art-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.widget {
    background: var(--art-card);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--art-shadow-sm);
    border: 1px solid var(--art-border);
}

.widget__title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--art-muted);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget__title span {
    width: 24px;
    height: 2px;
    background: var(--art-gradient);
    border-radius: 1px;
}

.sticky-widgets {
    position: sticky;
    top: 170px;
}

.sticky-widgets .widget {
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.poll-divider {
    margin: 0 0 10px;
}

.poll-question {
    margin-bottom: 10px;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.widget-title svg {
    width: clamp(16px,3vw,22px);
    height: clamp(16px,3vw,22px);
    color: var(--art-accent);
    flex-shrink: 0;
}

.art-toc__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.art-toc__item a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--art-muted);
    transition: all .2s;
    line-height: 1.4;
    border-left: 2px solid transparent;
}

.art-toc__item a:hover {
    color: var(--art-accent);
    background: rgba(255,107,0,.05);
    border-left-color: var(--art-accent);
    padding-left: 14px;
}

.art-toc__item.active a {
    color: var(--art-accent);
    border-left-color: var(--art-accent);
    background: rgba(255,107,0,.06);
    padding-left: 14px;
}

.art-popular__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--art-border);
    transition: transform .2s;
}

.art-popular__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.art-popular__item:first-child {
    padding-top: 0;
}

.art-popular__item:hover {
    transform: translateX(5px);
}

.art-popular__num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--art-border);
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.art-popular__info h4 {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--art-ink);
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color .2s;
}

.art-popular__item:hover .art-popular__info h4 {
    color: var(--art-accent);
}

.art-popular__time {
    font-size: 11px;
    color: var(--art-muted);
    font-family: var(--font-sans);
    letter-spacing: .3px;
}

.widget.art-ad.reveal {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid #e8e5df;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 0 0 0.5px rgba(0,0,0,.04);
    cursor: pointer;
    transition: transform .3s var(--transition-base), box-shadow .3s;
    display: none !important;
}

.widget.art-ad.reveal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.10), 0 0 0 0.5px rgba(0,0,0,.04);
}

.art-ad__top-bar {
    height: 2px;
    background: var(--art-gradient-gold);
    background-size: 200% 100%;
    animation: shimmer 3.5s linear infinite;
}

.art-ad__label {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c0bab2;
    background: #f7f5f2;
    border: 1px solid #eae7e1;
    padding: 3px 8px;
    border-radius: 100px;
    pointer-events: none;
}

.art-ad__visual {
    /* try without ad visual at now */
    display: none !important;
}

.art-ad__ring,
.art-ad__logo-wrap,
.art-ad__logo-icon,
.art-ad__footer {
    /* try without ad footer at now */
    display: none !important;
}

.art-ad__body {
    padding: 20px 22px 22px;
}

.art-ad__kicker {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.art-ad__kicker::before {
    content: '';
    display: block;
    width: 16px;
    height: 1.5px;
    background: #ff6b00;
    border-radius: 1px;
    flex-shrink: 0;
}

.art-ad__headline {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: -.2px;
}

.art-ad__sub {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: #8a8680;
    line-height: 1.55;
    margin-bottom: 18px;
}

.art-ad__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
    background: var(--art-gradient);
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all .25s var(--transition-base);
    box-shadow: 0 4px 16px rgba(255,107,0,.28);
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.art-ad__cta svg {
    width: 13px;
    height: 13px;
    transition: transform .25s;
    flex-shrink: 0;
}

.art-ad__cta:hover {
    box-shadow: 0 8px 24px rgba(255,107,0,.38);
    transform: translateY(-1px);
}

.art-ad__cta:hover svg {
    transform: translateX(3px);
}

/* ── Coming Soon Modal ── */
.cs-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(.4,0,.2,1);
}

.cs-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.cs-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 20, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cs-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #0d0f1c 0%, #131629 50%, #0d0f1c 100%);
    border: 1.5px solid rgba(255, 107, 0, .22);
    border-radius: 28px;
    padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 72px);
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(255,107,0,.06),
        0 24px 80px rgba(0,0,0,.6),
        0 0 120px rgba(255,107,0,.08);
    transform: translateY(24px) scale(.96);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    overflow: hidden;
}

.cs-overlay.is-open .cs-card {
    transform: translateY(0) scale(1);
}

/* Фоновые лучи */
.cs-card::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 380px; height: 380px;
    background: radial-gradient(ellipse, rgba(255,107,0,.18) 0%, transparent 65%);
    pointer-events: none;
    animation: cs-breathe 4s ease-in-out infinite;
}

.cs-card::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(ellipse, rgba(139,92,246,.1) 0%, transparent 65%);
    pointer-events: none;
    animation: cs-breathe 6s ease-in-out infinite reverse;
}

@keyframes cs-breathe {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: .7; }
    50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.cs-card::after { transform: none; }
@keyframes cs-breathe-2 {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Верхняя светящаяся полоска */
.cs-glow-line {
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,.9), rgba(255,143,61,1), rgba(255,107,0,.9), transparent);
    border-radius: 2px;
    animation: cs-line-pulse 3s ease-in-out infinite;
}

@keyframes cs-line-pulse {
    0%, 100% { opacity: .5; transform: scaleX(.7); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Иконка */
.cs-icon {
    width: 72px; height: 72px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(255,107,0,.15) 0%, rgba(255,143,61,.08) 100%);
    border: 1.5px solid rgba(255,107,0,.3);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 32px rgba(255,107,0,.15), inset 0 1px 0 rgba(255,107,0,.15);
    animation: cs-icon-float 3s ease-in-out infinite;
}

@keyframes cs-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.cs-icon::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 28px;
    border: 1.5px dashed rgba(255,107,0,.25);
    animation: icon-rotate 10s linear infinite;
}

.cs-icon svg {
    width: 34px; height: 34px;
    color: #ff8f3d;
    filter: drop-shadow(0 0 10px rgba(255,107,0,.55));
}

/* Бейдж */
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,107,0,.1);
    border: 1px solid rgba(255,107,0,.25);
    color: #ff8f3d;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.cs-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff6b00;
    animation: pulse-live 2s ease-in-out infinite;
}

/* Заголовок */
.cs-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe0c8 50%, #ff8f3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Описание */
.cs-desc {
    font-size: clamp(13px, 2vw, 15px);
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Разделитель */
.cs-divider {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    margin: 0 auto 28px;
    box-shadow: 0 0 10px rgba(255,107,0,.4);
}

/* Кнопка закрытия */
.cs-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ff3d00 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 6px 24px rgba(255,107,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
    position: relative;
    z-index: 1;
    letter-spacing: .01em;
}

.cs-close:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 36px rgba(255,107,0,.5);
}

.cs-close:active { transform: scale(.98); }

/* X-кнопка */
.cs-close-x {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    z-index: 2;
}

.cs-close-x:hover { background: rgba(255,107,0,.15); border-color: rgba(255,107,0,.3); }
.cs-close-x svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); }

/* Частицы */
.cs-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 28px;
}

.cs-particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(255,107,0,.6);
    border-radius: 50%;
    animation: cs-particle-float linear infinite;
}

@keyframes cs-particle-float {
    0% { transform: translateY(0) scale(1); opacity: .8; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

.art-related {
    background: #0a0a0d;
    padding: 88px 24px 160px;
    position: relative;
    overflow: hidden;
}

.art-related::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,107,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,107,0,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 80%);
    pointer-events: none;
}

.art-related::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255,107,0,.12) 0%, transparent 70%);
    pointer-events: none;
}

.art-related__container {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.art-related__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 16px;
}

.art-related__kicker {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--art-accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.art-related__kicker::before {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--art-accent);
}

.art-related__title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
}

.art-related__title em {
    font-style: italic;
    background: var(--art-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 5px;
}

.art-related__more {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.art-related__more:hover {
    color: var(--art-accent2);
    border-color: var(--art-accent2);
    gap: 12px;
}

.art-related__more svg {
    width: 14px;
    height: 14px;
}

.art-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.art-rel-card {
    position: relative;
    background: rgba(255,255,255,.025);
    padding: 40px 36px 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background .35s, transform .35s;
    overflow: hidden;
    cursor: pointer;
}

.art-rel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,0,.07), rgba(255,145,64,.03));
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}

.art-rel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 36px;
    right: 36px;
    height: 2px;
    background: var(--art-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--transition-base);
    border-radius: 1px;
}

.art-rel-card:hover {
    background: rgba(255,255,255,.05);
}

.art-rel-card:hover::before {
    opacity: 1;
}

.art-rel-card:hover::after {
    transform: scaleX(1);
}

.art-rel-num {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.06);
    margin-bottom: 24px;
    transition: -webkit-text-stroke .35s;
    user-select: none;
    display: block;
}

.art-rel-card:hover .art-rel-num {
    -webkit-text-stroke-color: rgba(255,107,0,.2);
}

.art-rel-cat {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--art-accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.art-rel-cat::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--art-accent);
}

.art-rel-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.38;
    color: rgba(255,255,255,.8);
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color .25s;
}

.art-rel-card:hover .art-rel-title {
    color: #fff;
}

.art-rel-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,.32);
    margin-bottom: 28px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.art-rel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.art-rel-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.25);
    letter-spacing: .3px;
}

.art-rel-meta svg {
    width: 12px;
    height: 12px;
}

.art-rel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.25);
    flex-shrink: 0;
    transition: all .3s var(--transition-base);
}

.art-rel-arrow svg {
    width: 14px;
    height: 14px;
}

.art-rel-card:hover .art-rel-arrow {
    background: var(--art-accent);
    border-color: var(--art-accent);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(255,107,0,.35);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--transition-base), transform .65s var(--transition-base);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) {
    transition-delay: .08s;
}

.reveal:nth-child(3) {
    transition-delay: .16s;
}

.back-to-top {
    right: 20px;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.08); }
    100% { transform: translate(-15px, 15px) scale(.95); }
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .35; transform: scale(.7); }
}

@keyframes fadeInScroll {
    to { opacity: 1; }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes arcPop {
    0% { transform: scale(1); }
    40% { transform: scale(.88); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================
   RESPONSIVE STYLES - ARTICLE PAGE
   ========================================== */

/* ── LARGE DESKTOP 1500px+ ─────────────────────────────────────────────── */
@media (min-width: 1500px) {
    :root {
        --container: 1360px;
        --col-side: 380px;
    }
    .art-hero__content { grid-template-columns: 1fr 380px; column-gap: 80px; }
    .art-main { padding: 52px 64px 56px 64px; }
    .art-body { font-size: 19px; line-height: 1.88; }
}

/* ── ULTRA-WIDE 1920px+ ─────────────────────────────────────────────────── */
@media (min-width: 1920px) {
    :root { --container: 1480px; }
    .art-hero__content { grid-template-columns: 1fr 400px; column-gap: 100px; }
    .art-layout { grid-template-columns: minmax(0, 1fr) 400px; gap: 36px; }
}

/* ── TABLET 1024–1400px: side share panel ───────────────────────────────── */
@media (max-width: 1400px) {
    .art-share { display: none; }
    .art-footer-share { display: flex; }
}

/* ── TABLET LANDSCAPE 900–1023px ────────────────────────────────────────── */
@media (max-width: 1023px) {
    /* Hero */
    .art-hero { min-height: 380px; }
    .art-hero__content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .art-hero__left {
        grid-column: 1;
        grid-row: 1;
    }
    .art-hero__right {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
        margin-top: 28px;
    }
    .art-keyfacts { max-width: 560px; margin: 0 auto; }
    .art-hero__title { font-size: clamp(28px, 4.5vw, 48px); max-width: 100%; text-align: center; }
    .art-breadcrumbs { justify-content: center; }
    .art-badges { justify-content: center; }
    .art-hero__meta {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    /* Layout → single column, flex с явным порядком */
    .art-layout {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 0;
        padding: 44px 20px 64px 20px;
    }
    .art-sidebar { display: contents; }
    .widget.art-toc { order: -1; margin-bottom: 24px; }
    .art-main { order: 0; padding: 38px 40px 42px 40px; }
    .art-sidebar > .widget:not(.art-toc),
    .sticky-widgets { order: 1; }
    .sticky-widgets { margin-top: 40px; position: static; }
    .widget-trending, .widget-fag { margin-top: 40px; }

    /* Share → горизонтальная полоска */
    .art-share { position: static; width: 100%; margin-bottom: 24px; }
    .art-share__inner {
        position: static; flex-direction: row; justify-content: center;
        padding: 16px; background: var(--art-surface);
        border: 1px solid var(--art-border); border-radius: 12px;
    }
    .art-share__label { writing-mode: horizontal-tb; transform: none; margin-bottom: 0; margin-right: 8px; }
    .art-share__line { display: none; }

    /* Notices центр */
    .art-notices { max-width: 100%; }
    .art-notices__card { text-align: center; }
    .art-notices__title { justify-content: center; }
}

/* ── TABLET PORTRAIT 640–899px ──────────────────────────────────────────── */
@media (max-width: 899px) {
    .art-hero { min-height: 360px; }
    .art-hero__content { padding: 48px 20px; }
    .art-breadcrumbs__current { max-width: 250px; }
    .art-hero__title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 28px; }

    .art-hero__author {
        border-right: none; margin-right: 0; padding-right: 0;
        width: 100%; margin-bottom: 12px; padding-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,.18);
        justify-content: center;
    }
    .art-meta-pills { width: 100%; justify-content: center; }

    .art-layout { padding: 40px 16px 56px 16px; margin-top: -36px; }
    .art-main { padding: 32px 28px 36px 28px; }
    .art-main::after { display: none; }

    .art-share { position: static; width: 100%; margin-bottom: 20px; }
    .art-share__inner {
        position: static; flex-direction: row; justify-content: center; gap: 8px;
        padding: 14px; background: var(--art-surface);
        border: 1px solid var(--art-border); border-radius: 10px;
    }
    .art-share__label { writing-mode: horizontal-tb; transform: none; margin-bottom: 0; font-size: 8px; }
    .art-share__btn { width: 38px; height: 38px; }
    .art-share__btn svg { width: 15px; height: 15px; }
    .art-share__line { display: none; }

    .art-body { font-size: 17px; line-height: 1.8; }
    .art-body p:first-child::first-letter { font-size: 64px; margin: 5px 10px -3px 0; }
    .art-body h2 { font-size: 25px; margin: 44px 0 16px; }
    .art-body h3 { font-size: 18px; margin: 32px 0 10px; }
    .art-body blockquote { font-size: 19px; padding: 28px 32px 28px 48px; margin: 40px 0; }
    .art-body blockquote::before { font-size: 56px; left: 12px; top: 8px; }

    .art-faq__title { font-size: clamp(22px, 2.8vw, 28px); }
    .art-faq__question { padding: 20px 24px 20px 20px; }
    .art-faq__q-text { font-size: 14px; }
    .art-faq__answer-inner { font-size: 15px; padding: 0 24px 24px 54px; padding-top: 16px; }

    .art-author-box__main { padding: 0 28px; gap: 16px; }
    .art-author-box__avatar { width: 70px; height: 70px; font-size: 30px; }
    .art-author-box__name { font-size: 22px; }
    .art-author-box__body { padding: 0 28px 28px; }

    .art-author-box__main {
        margin-top: -18px;
    }

    .art-notices__grid { grid-template-columns: 1fr; }
    .art-notices__item + .art-notices__item { border-left: none; border-top: 1px solid #f0ede8; }
    .art-notices__footer { justify-content: center; align-items: center; text-align: center; flex-wrap: wrap; }

    .art-related { padding: 72px 20px 120px; }
    .art-related__title { font-size: 38px; }
    .art-related__grid { grid-template-columns: repeat(2, 1fr); }
    .art-rel-card:last-child { grid-column: span 2; }
    .art-rel-card { padding: 36px 28px 40px; }
    .art-rel-title { font-size: 19px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE ≤ 639px — ПОЛНАЯ ПЕРЕРАБОТКА
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {

    /* ── Hero ─────────────────────────────────────────────────────────────── */
    .art-hero { min-height: auto; }
    .art-hero__content {
        display: flex;
        flex-direction: column;
        padding: 32px 16px 36px;
        align-items: center;
        gap: 0;
    }
    .art-hero__left { display: contents; }

    /* Явный порядок через order */
    .art-breadcrumbs { order: 1; margin-bottom: 14px; font-size: 11px; gap: 5px; justify-content: center; }
    .art-breadcrumbs svg { width: 10px; height: 10px; }
    .art-breadcrumbs__current { max-width: 180px; font-size: 10.5px; }

    .art-badges { order: 2; margin-bottom: 16px; justify-content: center; gap: 6px; }
    .art-breaking { font-size: 10px; padding: 4px 10px; letter-spacing: 1.2px; }
    .art-badge { font-size: 10px; padding: 4px 12px; letter-spacing: 1.2px; }

    .art-hero__title {
        order: 3;
        font-size: clamp(24px, 6.5vw, 34px);
        margin-bottom: 20px;
        letter-spacing: -.3px;
        text-align: center;
        line-height: 1.18;
    }

    /* Key facts — между заголовком и мета */
    .art-hero__right {
        order: 4;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 22px;
        width: 100%;
    }
    .art-keyfacts {
        width: 100%;
        max-width: 100%;
        padding: 18px 18px 16px;
        border-radius: 14px;
    }
    .art-keyfacts__header {
        font-size: 9px;
        letter-spacing: 2px;
        margin-bottom: 12px;
        justify-content: center;
    }
    .art-keyfacts__list { gap: 10px; }
    .art-keyfacts__item { font-size: 13px; line-height: 1.5; }
    .art-keyfacts__bullet { width: 4px; height: 4px; margin-top: 6px; }
    .art-keyfacts__footer { font-size: 9px; justify-content: center; }

    .art-hero__meta {
        order: 5;
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
    }
    .art-hero__author {
        border-right: none;
        width: 100%;
        margin-bottom: 10px;
        padding-bottom: 10px;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
        justify-content: center;
        gap: 8px;
    }
    .art-avatar { width: 32px; height: 32px; font-size: 13px; }
    .art-author-name { font-size: 12.5px; }
    .art-author-role { font-size: 10.5px; }

    .art-meta-pills { width: 100%; justify-content: center; gap: 0; flex-wrap: wrap; }
    .art-meta-pill { font-size: 10.5px; padding: 3px 8px; }
    .art-meta-pill svg { width: 11px; height: 11px; }
    .art-meta-pill--verified { border-radius: 100px; padding: 4px 10px; }

    .art-scroll-hint { display: none; }

    /* ── Layout ───────────────────────────────────────────────────────────── */
    .art-layout {
        padding: 20px 12px 48px 12px;
        margin-top: -24px;
        gap: 0;
    }
    .art-main {
        padding: 26px 18px 32px 18px;
        border-radius: 16px;
        box-shadow: 0 -4px 0 0 var(--art-accent), 0 8px 32px rgba(0,0,0,.10);
    }
    .art-main::before,
    .art-main::after { display: none; }

    /* Share скрыт на мобиле, показывается footer share */
    .art-share { display: none; }
    .art-footer-share {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 20px;
        padding: 18px 16px;
    }
    .art-footer-share__label {
        width: 100%;
        text-align: center;
        font-size: 10px;
        letter-spacing: 2px;
    }
    .art-footer-share__buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .art-footer-share__btn {
        width: 100%;
        justify-content: center;
        font-size: 12px;
        padding: 10px 12px;
        border-radius: 10px;
    }
    .art-footer-share__btn:last-child {
        grid-column: span 2;
    }

    /* ── Typography ───────────────────────────────────────────────────────── */
    .art-body { font-size: 16px; line-height: 1.78; }
    .art-body p { margin-bottom: 22px; }
    .art-body p:first-child::first-letter {
        font-size: 58px;
        margin: 4px 10px -3px 0;
    }
    .art-body h2 {
        font-size: 22px;
        margin: 40px 0 14px;
        padding-bottom: 14px;
    }
    .art-body h2::before { width: 38px; height: 2px; }
    .art-body h2::after { left: 42px; }
    .art-body h3 { font-size: 17px; margin: 30px 0 10px; }
    .art-body ul li, .art-body ol li { padding-left: 20px; margin-bottom: 10px; font-size: 16px; }
    .art-body blockquote {
        font-size: 17px;
        padding: 22px 22px 22px 42px;
        margin: 36px -4px;
        border-radius: 12px;
        line-height: 1.5;
    }
    .art-body blockquote::before { font-size: 50px; left: 10px; top: 8px; }

    /* ── TOC ──────────────────────────────────────────────────────────────── */
    .widget.art-toc {
        padding: 18px 16px;
        border-radius: 14px;
        margin-bottom: 16px;
    }
    .art-toc__list { gap: 1px; }
    .art-toc__item a { font-size: 12.5px; padding: 8px 10px; line-height: 1.35; }

    /* ── FAQ ──────────────────────────────────────────────────────────────── */
    .art-faq { margin-top: 44px; }
    .art-faq__header { margin-bottom: 20px; }
    .art-faq__title { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 6px; }
    .art-faq__subtitle { font-size: 14px; }
    .art-faq__list { border-radius: 14px; }
    .art-faq__question { padding: 17px 18px 17px 16px; gap: 12px; }
    .art-faq__item.is-open .art-faq__question { padding-left: 20px; }
    .art-faq__q-num { font-size: 10px; min-width: 20px; }
    .art-faq__q-text { font-size: 13.5px; line-height: 1.4; }
    .art-faq__icon { width: 30px; height: 30px; }
    .art-faq__icon svg { width: 13px; height: 13px; }
    .art-faq__answer-inner {
        font-size: 14.5px;
        line-height: 1.75;
        padding: 16px 18px 22px 48px;
    }

    /* ── Tags ─────────────────────────────────────────────────────────────── */
    .art-tags { margin-top: 36px; gap: 6px; }
    .art-tags::before { top: -24px; }
    .art-tags__label { font-size: 9px; letter-spacing: 1.8px; }
    .art-tag { font-size: 11px; padding: 5px 13px; }

    /* ── Sources ──────────────────────────────────────────────────────────── */
    .art-sources { margin-top: 28px; border-radius: 14px; }
    .art-sources__head { padding: 13px 18px; }
    .art-sources__item { padding: 12px 16px; gap: 10px; }
    .art-sources__link { font-size: 12.5px; }
    .art-sources__meta { font-size: 10px; }
    .art-sources__arrow { width: 26px; height: 26px; }

    /* ── Reactions ────────────────────────────────────────────────────────── */
    .arc {
        padding: 16px 16px;
        gap: 0;
        margin-top: 24px;
        border-radius: 14px;
        flex-direction: column;
        align-items: center;
    }
    .arc__label {
        font-size: 12px;
        text-align: center;
        margin-bottom: 14px;
    }
    .arc__btns { gap: 10px; width: 100%; justify-content: center; }
    .arc__btn {
        padding: 10px 20px;
        font-size: 13px;
        gap: 7px;
        flex: 1;
        justify-content: center;
        border-radius: 12px;
    }
    .arc__btn svg { width: 16px; height: 16px; }
    .arc__divider { width: 100%; margin: 14px 0 10px; }
    .arc__bar { width: 100%; height: 4px; border-radius: 3px; }
    .arc__fill { height: 4px; }
    .arc__stat { margin-left: 0; font-size: 11px; text-align: center; }
    .arc__toast { top: -36px; font-size: 11px; }

    /* ── Author box ───────────────────────────────────────────────────────── */
    .art-author-box { margin-top: 36px; border-radius: 20px; }
    .art-author-box__header { padding: 14px 20px 16px; }
    .art-author-box__header-label { font-size: 9px; }
    .art-author-box__social { gap: 6px; }
    .art-author-box__social-link { width: 32px; height: 32px; }

    .art-author-box__main {
        padding: 0 20px;
        margin-top: -10px;
        margin-bottom: 20px;
        gap: 14px;
        flex-wrap: wrap;
        align-items: flex-end;
    }
    .art-author-box__avatar { width: 64px; height: 64px; font-size: 28px; }
    .art-author-box__verified-icon { width: 19px; height: 19px; }
    .art-author-box__name { font-size: 21px; }
    .art-author-box__role { font-size: 11px; }
    .art-author-box__profile-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
        margin-top: 4px;
    }
    .art-author-box__body { padding: 0 20px 24px; gap: 14px; }
    .art-author-box__bio { font-size: 14.5px; line-height: 1.72; padding-bottom: 14px; }
    .art-author-box__footer { flex-direction: column; align-items: stretch; gap: 10px; }
    .art-author-box__credentials { gap: 6px; justify-content: center; flex-wrap: wrap; }
    .art-cred-pill { font-size: 10.5px; padding: 6px 13px; }

    /* ── Notices ──────────────────────────────────────────────────────────── */
    .art-notices { margin-top: 36px; }
    .art-notices__grid { grid-template-columns: 1fr; }
    .art-notices__item { padding: 22px 20px; }
    .art-notices__item + .art-notices__item { border-left: none; border-top: 1px solid #f0ede8; }
    .art-notices__text { font-size: 13px; }
    .art-notices__footer {
        padding: 12px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    /* ── Pubstamp ─────────────────────────────────────────────────────────── */
    .art-pubstamp {
        margin-top: 28px;
        padding: 14px 16px;
        border-radius: 12px;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
    .art-pubstamp__item { padding: 0; flex-direction: row; align-items: center; gap: 8px; }
    .art-pubstamp__label { writing-mode: initial; }
    .art-pubstamp__divider { display: none; }
    .art-pubstamp__val { font-size: 13px; }

    /* ── Sidebar widgets ──────────────────────────────────────────────────── */
    .art-sidebar { margin-top: 28px; }
    .sticky-widgets { margin-top: 24px; }
    .widget { padding: 20px 18px; border-radius: 14px; }
    .widget__title { font-size: 10px; letter-spacing: 1.8px; margin-bottom: 16px; }
    .art-popular__item { padding: 13px 0; gap: 12px; }
    .art-popular__num { font-size: 28px; width: 24px; }
    .art-popular__info h4 { font-size: 13px; margin-bottom: 4px; }
    .art-popular__time { font-size: 10.5px; }

    /* Ad виджет */
    .widget.art-ad.reveal {
        margin-top: 28px;
        max-width: 100%;
        display: none !important;
    }

    /* ── Related ──────────────────────────────────────────────────────────── */
    .art-related { padding: 56px 14px 96px; }
    .art-related__header { margin-bottom: 36px; }
    .art-related__title { font-size: 30px; }
    .art-related__grid {
        grid-template-columns: 1fr;
        border-radius: 18px;
        background: rgba(255,255,255,.04);
    }
    .art-rel-card:last-child { grid-column: auto; }
    .art-rel-card { padding: 28px 22px 32px; }
    .art-rel-num { font-size: 64px; margin-bottom: 14px; }
    .art-rel-cat { font-size: 9px; }
    .art-rel-title { font-size: 18px; margin-bottom: 12px; }
    .art-rel-excerpt { font-size: 13.5px; margin-bottom: 20px; }
    .art-rel-meta { font-size: 10.5px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE ≤ 479px — МАЛЫЕ СМАРТФОНЫ
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 479px) {

    /* ── Hero ─────────────────────────────────────────────────────────────── */
    .art-hero__content { padding: 28px 14px 32px; }
    .art-hero__orb--1 { width: 280px; height: 280px; top: -70px; right: -30px; filter: blur(60px); }
    .art-hero__orb--2 { width: 180px; height: 180px; top: 20px; right: 140px; }
    .art-hero__orb--3 { width: 140px; height: 140px; bottom: 30px; left: 15%; }

    .art-breadcrumbs { font-size: 10px; margin-bottom: 12px; gap: 4px; }
    .art-breadcrumbs__current { max-width: 150px; }
    .art-badges { margin-bottom: 14px; }
    .art-breaking { font-size: 9px; padding: 3px 9px; }
    .art-badge { font-size: 9.5px; padding: 3.5px 10px; }

    .art-hero__title {
        font-size: clamp(21px, 7vw, 30px);
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .art-keyfacts { padding: 16px 16px 14px; border-radius: 12px; }
    .art-keyfacts__item { font-size: 12.5px; }

    .art-avatar { width: 30px; height: 30px; font-size: 12px; }
    .art-author-name { font-size: 12px; }
    .art-meta-pill { font-size: 10px; padding: 3px 7px; }

    /* ── Layout ───────────────────────────────────────────────────────────── */
    .art-layout { padding: 16px 10px 40px 10px; margin-top: -20px; }
    .art-main { padding: 22px 16px 28px 16px; border-radius: 14px; }

    /* Footer share → стэк */
    .art-footer-share { padding: 16px 14px; gap: 10px; }
    .art-footer-share__buttons { grid-template-columns: 1fr; gap: 7px; }
    .art-footer-share__btn { grid-column: auto !important; border-radius: 10px; }

    /* ── Typography ───────────────────────────────────────────────────────── */
    .art-body { font-size: 15.5px; line-height: 1.74; }
    .art-body p { margin-bottom: 20px; }
    .art-body p:first-child::first-letter { font-size: 52px; margin: 3px 8px -2px 0; }
    .art-body h2 { font-size: 20px; margin: 36px 0 12px; padding-bottom: 12px; }
    .art-body h2::before { width: 32px; }
    .art-body h2::after { left: 36px; }
    .art-body h3 { font-size: 16px; margin: 26px 0 9px; }
    .art-body blockquote {
        font-size: 16px;
        padding: 18px 18px 18px 36px;
        margin: 30px -2px;
        border-radius: 10px;
    }
    .art-body blockquote::before { font-size: 44px; left: 8px; top: 6px; }

    /* ── FAQ ──────────────────────────────────────────────────────────────── */
    .art-faq { margin-top: 40px; }
    .art-faq__title { font-size: clamp(19px, 5.5vw, 23px); }
    .art-faq__subtitle { font-size: 13.5px; }
    .art-faq__question { padding: 15px 16px 15px 14px; gap: 10px; }
    .art-faq__q-text { font-size: 13px; }
    .art-faq__icon { width: 28px; height: 28px; }
    .art-faq__icon svg { width: 12px; height: 12px; }
    .art-faq__answer-inner { font-size: 14px; padding: 14px 16px 20px 42px; }

    /* ── Tags ─────────────────────────────────────────────────────────────── */
    .art-tags { margin-top: 32px; gap: 5px; }
    .art-tag { font-size: 10.5px; padding: 5px 12px; }

    /* ── Sources ──────────────────────────────────────────────────────────── */
    .art-sources { border-radius: 12px; }
    .art-sources__head { padding: 12px 16px; }
    .art-sources__item { padding: 11px 14px; gap: 9px; }
    .art-sources__num { font-size: 9px; width: 17px; }
    .art-sources__link { font-size: 12px; }
    .art-sources__meta { font-size: 9.5px; }

    /* ── Reactions ────────────────────────────────────────────────────────── */
    .arc { padding: 14px; border-radius: 12px; }
    .arc__label { font-size: 11.5px; margin-bottom: 12px; }
    .arc__btn { padding: 9px 16px; font-size: 12.5px; border-radius: 10px; }
    .arc__btn svg { width: 15px; height: 15px; }

    /* ── Author box ───────────────────────────────────────────────────────── */
    .art-author-box { border-radius: 18px; }
    .art-author-box__main { padding: 0 18px; margin-top: -10px; }
    .art-author-box__avatar { width: 60px; height: 60px; font-size: 26px; }
    .art-author-box__name { font-size: 19px; }
    .art-author-box__body { padding: 0 18px 22px; }
    .art-author-box__bio { font-size: 14px; line-height: 1.68; }
    .art-cred-pill { font-size: 10px; padding: 5px 11px; }

    /* ── Notices ──────────────────────────────────────────────────────────── */
    .art-notices__item { padding: 20px 18px; }
    .art-notices__icon-wrap { width: 36px; height: 36px; margin-bottom: 12px; }
    .art-notices__icon-wrap svg { width: 16px; height: 16px; }
    .art-notices__title { font-size: 11px; margin-bottom: 8px; }
    .art-notices__text { font-size: 12.5px; line-height: 1.68; }
    .art-notices__footer { padding: 10px 18px; }

    /* ── Pubstamp ─────────────────────────────────────────────────────────── */
    .art-pubstamp { padding: 12px 14px; border-radius: 10px; gap: 8px; }
    .art-pubstamp__item { gap: 6px; }
    .art-pubstamp__val { font-size: 12px; }

    /* ── Sidebar widgets ──────────────────────────────────────────────────── */
    .widget { padding: 18px 16px; border-radius: 12px; }
    .art-popular__num { font-size: 26px; }
    .art-popular__info h4 { font-size: 12.5px; }

    /* ── Related ──────────────────────────────────────────────────────────── */
    .art-related { padding: 48px 12px 80px; }
    .art-related__title { font-size: 27px; }
    .art-rel-card { padding: 24px 18px 28px; }
    .art-rel-num { font-size: 58px; }
    .art-rel-title { font-size: 17px; }
    .art-rel-excerpt { font-size: 13px; }
}

/* ── Очень маленькие экраны ≤ 360px ──────────────────────────────────────── */
@media (max-width: 360px) {
    .art-hero__content { padding: 24px 12px 28px; }
    .art-hero__title { font-size: clamp(19px, 8vw, 26px); }
    .art-main { padding: 18px 14px 24px 14px; }
    .art-body { font-size: 15px; }
    .art-body h2 { font-size: 18.5px; }
    .art-author-box__name { font-size: 18px; }
    .art-footer-share { padding: 14px 12px; }
    .arc { padding: 12px; }
    .arc__label { font-size: 11px; }
    .arc__btn { font-size: 12px; padding: 8px 14px; }
    .art-rel-card { padding: 20px 16px 24px; }
    .art-rel-title { font-size: 16px; }
}

/* ── PRINT ────────────────────────────────────────────────────────────────── */
@media print {
    .art-hero__bg, .art-hero__noise, .art-hero__dots, .art-hero__orb,
    .art-hero__gradient, .art-scroll-hint, .art-share, .art-sidebar,
    .art-related, .art-footer-share, .arc, #reading-progress { display: none !important; }

    .art-hero { background: white !important; min-height: auto !important; padding: 20mm 0 !important; }
    .art-hero__content, .art-layout { display: block !important; padding: 0 !important; margin: 0 !important; }
    .art-main { box-shadow: none !important; border: none !important; border-radius: 0 !important; padding: 0 !important; }
    .art-body { font-size: 12pt !important; line-height: 1.6 !important; color: black !important; }
    .art-body a { color: black !important; text-decoration: underline !important; }
    .art-body h2 { page-break-after: avoid !important; }
}