body {
    background: #050506;
    margin: 0;
    color: #fff;
    font-family: "Murecho", sans-serif;
}

body::before {
    content: none;
}

body::after {
    content: none;
}

.news-page {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 80px;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.news-header__logo img {
    width: min(280px, 34vw);
    display: block;
}

.news-header__social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-button {
    display: inline-flex;
    width: 30px;
    height: 30px;
    color: #fff;
    transition: opacity 0.2s ease;
}

.social-button:hover {
    opacity: 0.75;
}

.news-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 36px 0 28px;
}

.article {
    padding: 0;
    margin: 60px 0;
}

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

.article__tag {
    display: inline-flex;
    min-height: 24px;
    padding: 2px 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff8c1a 0%, #f15f2c 100%);
    font-size: 12px;
    font-weight: 600;
}

.article__date {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    margin: 0;
}

.article__title {
    margin: 20px 0 60px;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.05;
    text-transform: uppercase;
}

.article__cover {
    width: 100%;
    border-radius: 12px;
    margin: 24px 0;
    display: block;
}

.article p:not(.article__date),
.article li {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(220, 220, 220, 0.9);
    font-family: "PT Serif", serif;
}

.article h2 {
    margin-top: 70px;
    margin-bottom: 32px;
    font-size: 50px;
    line-height: 1.15;
}

.article h3 {
    margin-top: 40px;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.2;
}

.article ul {
    margin: 14px 0 50px 20px;
    padding-left: 24px;
}

.article li {
    margin: 14px 0;
}

.article-media {
    margin: 40px 0;
}

.article-media img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.article-caption {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    text-align: center;
    font-family: "Murecho", sans-serif;
}

.article-separator {
    margin: 24px 0;
    color: rgba(160, 160, 160, 0.45);
    font-size: 26px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.12em;
}

.article-slider {
    margin: 20px 0 8px;
    position: relative;
}

.article-slider .swiper {
    overflow: hidden;
    border-radius: 10px;
}

.article-slider .swiper-slide img {
    width: 100%;
    display: block;
}

.article-slider__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
}

.article-slider__button--prev {
    left: 10px;
}

.article-slider__button--next {
    right: 10px;
}

.article-slider__pagination {
    text-align: center;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.article-media--slider-caption .article-slider__pagination {
    position: static;
    margin-top: 10px;
}

.article-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.article-slider .swiper-pagination-bullet-active {
    background: #ff8c1a;
}

.article a {
    color: #ff8c1a;
}

@media (max-width: 768px) {
    .news-page {
        width: calc(100% - 24px);
        padding-top: 16px;
    }

    .news-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-header__logo img {
        width: min(220px, 60vw);
    }

    .news-divider {
        margin-top: 16px;
    }

    .article {
        padding: 18px 14px;
    }

    .article p:not(.article__date),
    .article li {
        font-size: 18px;
    }

    .article h2 {
        font-size: 24px;
    }

    .article h3 {
        font-size: 20px;
    }
}
