.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, 128, 37, 0.08);
    border: 1px solid rgba(255,107,0,.18);
    color: var(--art-accent-dark);
    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-primary);
    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: #54514e;
    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__btn--wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37,211,102,.25);
}

.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-primary);
    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: #54514e;
    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-reviewer-box {
    margin-top: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, .18);
    background: linear-gradient(135deg, rgba(16,185,129,.04), rgba(16,185,129,.02));
    overflow: hidden;
}

.art-reviewer-box__label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #10b981;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(16,185,129,.12);
    background: rgba(16,185,129,.05);
}

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

.art-reviewer-box__main {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
}

.art-reviewer-box__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(16,185,129,.25);
    box-shadow: 0 0 0 3px rgba(16,185,129,.08);
    flex-shrink: 0;
}

.art-reviewer-box__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
}

.art-reviewer-box__info {
    flex: 1;
    min-width: 0;
}

.art-reviewer-box__name {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--art-ink);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.art-reviewer-box__name:hover {
    color: #10b981;
}

.art-reviewer-box__title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--art-muted);
    margin-top: 3px;
    letter-spacing: .2px;
}

.art-reviewer-box__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-sans);
    font-size: 10px;
    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: 5px 10px;
    border-radius: 100px;
}

.art-reviewer-box__badge svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.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: #6b6866;
    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-primary);
}

.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;
}

@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; }
}

.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);
}

@media (max-width: 1023px) {
    .art-notices { max-width: 100%; }
    .art-notices__card { text-align: center; }
    .art-notices__title { justify-content: center; }
}

@media (max-width: 899px) {
    .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; }
}

@media (max-width: 639px) {
    .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;
    }

    .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; }

    .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; }

    .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; }

    .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; }

    .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;
    }

    .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; }
    .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; }
}

@media (max-width: 479px) {
    .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; }
    .art-tags { margin-top: 32px; gap: 5px; }
    .art-tag { font-size: 10.5px; padding: 5px 12px; }

    .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; }

    .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; }

    .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; }

    .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; }

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

    .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; }
}

@media (max-width: 429px) {
    .art-reviewer-box__badge {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .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; }
}

@media print {
    .art-share, .art-related, .art-footer-share, .arc { display: none !important; }
}