.page-back-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.page-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-back-link:hover {
    transform: translateY(-1px);
    border-color: rgba(126, 231, 255, 0.28);
    box-shadow: 0 0 22px rgba(37, 99, 235, 0.16);
}

.page-back-link--secondary {
    background: transparent;
    color: rgba(219, 234, 254, 0.88);
}

.news-page,
.news-article {
    padding: 76px 0 88px;
}

.news-page__container,
.news-article__container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.news-page__header,
.news-article__header {
    max-width: 860px;
    margin-bottom: 42px;
}

.news-page__eyebrow {
    font-size: 14px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #7ee7ff;
    margin-bottom: 18px;
    font-weight: 700;
}

.news-page__title,
.news-article__title {
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 0 18px rgba(255, 255, 255, 0.30),
        0 0 34px rgba(255, 255, 255, 0.12);
}

.news-page__intro,
.news-article__excerpt {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(219, 234, 254, 0.86);
    max-width: 780px;
}

.news-page__list {
    display: grid;
    gap: 28px;
}

.news-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    padding: 22px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 0 34px rgba(37, 99, 235, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    border-color: rgba(126, 231, 255, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 42px rgba(37, 99, 235, 0.16);
}

.news-card__media-link,
.news-card__video-wrap {
    display: block;
}

.news-card__image,
.news-card__video {
    width: 100%;
    display: block;
    border-radius: 20px;
    background: #020617;
    overflow: hidden;
}

.news-card__content {
    padding-top: 4px;
}

.news-card__date {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7ee7ff;
    margin-bottom: 12px;
    font-weight: 700;
}

.news-card__title {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 900;
    text-transform: uppercase;
}

.news-card__title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.news-card__title a:hover {
    color: #ffffff;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.26);
}

.news-card__excerpt {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(219, 234, 254, 0.82);
}

.news-article__image,
.news-article__video {
    width: 100%;
    display: block;
    border-radius: 24px;
    margin-bottom: 32px;
    background: #020617;
    overflow: hidden;
    box-shadow: 0 0 36px rgba(37, 99, 235, 0.12);
}

.news-article__body {
    color: rgba(219, 234, 254, 0.90);
    font-size: 18px;
    line-height: 1.9;
    max-width: 900px;
}

.news-article__body h2,
.news-article__body h3 {
    color: #ffffff;
    margin-top: 34px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.news-article__body p {
    margin-bottom: 18px;
}

.news-article__body a {
    color: #7ee7ff;
}

.news-article__body ul,
.news-article__body ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .news-card {
        grid-template-columns: 1fr;
    }

    .news-page__title,
    .news-article__title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .news-page,
    .news-article {
        padding: 52px 0 60px;
    }

    .news-page__container,
    .news-article__container {
        width: min(100% - 32px, 1180px);
    }

    .page-back-links {
        margin-bottom: 22px;
    }

    .news-card {
        padding: 18px;
        gap: 18px;
    }

    .news-card__title {
        font-size: 26px;
    }

    .news-page__title,
    .news-article__title {
        font-size: 36px;
    }

    .news-page__intro,
    .news-article__excerpt,
    .news-card__excerpt,
    .news-article__body {
        font-size: 16px;
    }
}