
















.art .container {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
    padding-inline: 24px;
}

.art {
    

    padding-top: 64px;
    padding-bottom: 80px;
}


.art-head {
    position: relative;
    overflow: hidden;
    padding: 42px 0 30px;
}




.art-head__glow {
    position: absolute;
    top: -180px;
    left: 50%;
    width: 620px;
    height: 380px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, var(--accent-glow), transparent 72%);
    opacity: .5;
    pointer-events: none;
}

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

.art-crumbs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--subtle);
    font-size: .76rem;
}

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

.art-crumbs a:hover { color: var(--accent-light); }

.art-head h1 {
    margin: 12px 0 0;
    font-family: var(--font-display);
    

    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.035em;
    color: #fff;
}

.art-lead {
    max-width: 62ch;
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.62;
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0;
    color: var(--subtle);
    font-size: .78rem;
}


.art-toc {
    margin: 8px 0 0;
    padding: 18px 22px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: linear-gradient(150deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
}

.art-toc__title {
    margin: 0 0 12px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}



.art-toc ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
    columns: 2;
    column-gap: 26px;
}

.art-toc li {
    margin-bottom: 7px;
    
    break-inside: avoid;
    counter-increment: toc;
}

.art-toc li::before {
    content: counter(toc);
    margin-right: 8px;
    color: var(--subtle);
    font-size: .74rem;
    font-variant-numeric: tabular-nums;
}

.art-toc a {
    color: var(--text-secondary);
    font-size: .86rem;
    text-decoration: none;
    transition: color .18s ease;
}

.art-toc a:hover { color: var(--accent-light); }


.art-text {
    

    counter-reset: art;
}

.art-section {
    

    scroll-margin-top: 82px;
    margin-top: 44px;
}

.art-section > h2 {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.1vw, 1.6rem);
    font-weight: 780;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #fff;
}




.art-section--num > h2::before {
    content: counter(art);
    flex: none;
    min-width: 30px;
    padding-bottom: 1px;
    border-bottom: 2px solid var(--accent-dark);
    color: var(--accent);
    font-size: .82em;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.art-section--num { counter-increment: art; }

.art-p {
    margin: 0 0 15px;
    color: var(--text-secondary);
    font-size: .98rem;
    line-height: 1.68;
}

.art-p a,
.art-list a,
.art-note__text a {
    color: var(--accent-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(169, 142, 239, .32);
    transition: border-color .18s ease, color .18s ease;
}

.art-p a:hover,
.art-list a:hover,
.art-note__text a:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

.art-p strong,
.art-list strong { color: #ece9f4; font-weight: 680; }


.art-list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.art-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: .96rem;
    line-height: 1.62;
}

.art-list li::before {
    content: '';
    position: absolute;
    top: .62em;
    left: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-dark);
}


.art-list--num { counter-reset: step; }

.art-list--num li {
    padding-left: 30px;
    counter-increment: step;
}

.art-list--num li::before {
    content: counter(step) '.';
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--accent);
    font-size: .9rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}


.art-note {
    position: relative;
    margin: 0 0 17px;
    padding: 15px 18px 16px 46px;
    border: 1px solid var(--line);
    border-left: 2px solid var(--border-strong);
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, .022);
}

.art-note::before {
    position: absolute;
    top: 15px;
    left: 16px;
    font-size: 1rem;
    line-height: 1.3;
}

.art-note__title {
    margin: 0 0 5px;
    color: #fff;
    font-family: var(--font-display);
    font-size: .92rem;
    font-weight: 720;
    letter-spacing: -.01em;
}

.art-note__text {
    margin: 0;
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.6;
}


.art-note--tip {
    border-left-color: var(--success);
    background: rgba(52, 211, 153, .05);
}
.art-note--tip::before { content: '💡'; }


.art-note--warn {
    border-left-color: var(--warning);
    background: rgba(251, 191, 36, .05);
}
.art-note--warn::before { content: '⚠️'; }



.art-note--pick {
    border-left-color: var(--accent-dark);
    background: linear-gradient(120deg, rgba(169, 142, 239, .1), rgba(169, 142, 239, .03));
}
.art-note--pick::before { content: '🎬'; }


.art-films {
    margin: 0 0 17px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.art-film {
    padding: 14px 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, .025);
}

.art-film__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 3px;
}

.art-film__title {
    color: #fff;
    font-family: var(--font-display);
    font-size: .98rem;
    font-weight: 720;
    letter-spacing: -.015em;
}

.art-film__year {
    flex: none;
    color: var(--subtle);
    font-size: .78rem;
    font-variant-numeric: tabular-nums;
}

.art-film__meta {
    margin: 0 0 7px;
    color: var(--accent);
    font-size: .74rem;
    letter-spacing: .02em;
}

.art-film__why {
    margin: 0;
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.56;
}




.art-table__wrap {
    margin: 0 0 17px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    -webkit-overflow-scrolling: touch;
}

.art-table__wrap:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.art-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    font-size: .86rem;
}

.art-table th,
.art-table td {
    padding: 11px 14px;
    text-align: left;
    vertical-align: top;
}

.art-table thead th {
    border-bottom: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, .035);
    color: #fff;
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 720;
    letter-spacing: .01em;
    white-space: nowrap;
}

.art-table tbody tr + tr td { border-top: 1px solid var(--line-soft); }

.art-table tbody td {
    color: var(--text-secondary);
    line-height: 1.5;
}


.art-table tbody td:first-child {
    color: #ece9f4;
    font-weight: 650;
}


.art-related {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.art-related a {
    display: block;
    padding: 14px 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, .025);
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease;
}

.art-related a:hover {
    border-color: rgba(169, 142, 239, .32);
    background: rgba(255, 255, 255, .045);
}

.art-related__label {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: -.015em;
}

.art-related__note {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}





.art-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: linear-gradient(140deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
}

.art-author__logo {
    flex: none;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
}

.art-author__logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.art-author__name {
    margin: 0 0 3px;
    color: #fff;
    font-family: var(--font-display);
    font-size: .98rem;
    font-weight: 750;
    letter-spacing: -.015em;
}

.art-author__text {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.55;
}

.art-author__text a {
    color: var(--accent-light);
    text-decoration: none;
}

.art-author__text a:hover { color: #fff; }


@media (max-width: 640px) {
    .art { padding-top: 56px; }          
    .art .container { padding-inline: 16px; }
    .art-head { padding: 30px 0 22px; }
    .art-section { margin-top: 34px; }

    

    .art-toc ol { columns: 1; }
    .art-toc { padding: 16px 17px 17px; }

    .art-section > h2 { gap: 9px; }
    .art-section--num > h2::before { min-width: 24px; }

    .art-note { padding: 14px 15px 15px 42px; }
    .art-note::before { left: 14px; }

    .art-author {
        gap: 13px;
        padding: 16px 17px;
    }
    .art-author__logo { width: 44px; height: 44px; border-radius: 12px; }
    .art-author__logo img { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .art-toc a,
    .art-related a,
    .art-p a { transition: none; }
}
