.page-news-view .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 18px 70px;
}

.news-header {
    text-align: left;
    margin-bottom: 30px;
}

.news-title {
    font-family: "e-UkraineHead", "e-Ukraine", sans-serif;
    font-size: 38px;
    margin: 0;
    line-height: 1.2;
    overflow-wrap: anywhere;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    white-space: normal;
    overflow: visible;
    min-height: 0;
}

.main-image-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-1);
    margin-bottom: 30px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 30px;
}

.news-meta-left {
    color: var(--muted);
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.meta-divider {
    color: var(--border);
}

.news-author-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.author-text {
    text-align: right;
    line-height: 1.2;
}

.news-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    object-fit: cover;
}

.content-area {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

.content-text {
    margin-bottom: 22px;
    color: var(--muted);
}

.content-image-wrapper {
    margin: 16px 0;
}

.content-image {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.tweet-wrapper {
    display: flex;
    justify-content: center;
    margin: 18px 0;
}

.tweet-wrapper .twitter-tweet {
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin: 24px 0;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.content-spoiler {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin: 20px 0;
}

.content-spoiler summary {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 700;
    color: var(--brand);
}

.spoiler-body {
    padding: 12px 16px;
    color: var(--muted);
}

.content-quote {
    margin: 24px 0;
    padding: 18px 20px;
    background: var(--surface-2);
    border-left: 3px solid var(--brand);
    border-radius: 12px;
}

.review-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.article-carousel {
    margin: 24px 0 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    width: 100%;
    aspect-ratio: 16 / 9;
}

.article-carousel .splide__track,
.article-carousel .splide__list,
.article-carousel .splide__slide {
    height: 100%;
}

.article-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.splide__arrow {
    background: rgba(252, 189, 0, 0.9);
    opacity: 1;
}

.splide__arrow svg {
    fill: #111;
}

.splide__pagination__page.is-active {
    background: var(--brand);
}

.review-col {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.reactions-container {
    max-width: 900px;
    margin: 40px auto 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.reaction-btn {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.reaction-btn:hover {
    border-color: rgba(252, 189, 0, 0.6);
    color: var(--text);
}

.reaction-btn.active {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(252, 189, 0, 0.1);
}

.comments-section {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.comment-form-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 30px;
}

.reply-status {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
}

.btn-cancel-reply {
    color: #ff8f9b;
    cursor: pointer;
    font-weight: 700;
}

.static-textarea {
    width: 100%;
    background: var(--bg-1);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px;
    border-radius: 12px;
    resize: none;
}

.btn-comment {
    background: var(--brand);
    color: #111;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.comment-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 12px;
}

.comment-item {
    margin-bottom: 16px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    object-fit: cover;
}

.comment-text {
    color: var(--muted);
}

.author-name {
    font-weight: 700;
    color: var(--text);
}

.author-label {
    display: block;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.author-link:hover .author-name {
    color: var(--brand);
}

.action-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
}

.action-btn:hover {
    color: var(--brand);
}

.btn-load-more {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
}

.btn-load-replies {
    background: transparent;
    border: none;
    color: var(--brand);
    cursor: pointer;
    font-weight: 600;
}

.nested-comments {
    margin-left: 20px;
    border-left: 1px solid var(--border);
    padding-left: 12px;
    margin-top: 12px;
}

.nested-comments.no-indent {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
}

@media (max-width: 700px) {
    .news-title {
        font-size: 28px;
    }
    .news-info-bar {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .news-author-link {
        margin-left: auto;
    }
    .author-name {
        font-size: 13px;
    }
}
