.news-preview,
.news-page,
.news-detail-page {
    background: #fffaf3;
}

.news-preview {
    padding: clamp(44px, 6vw, 78px) 0;
}

.news-section-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.news-section-head h2 {
    color: #2f241c;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
}

.news-section-head__eyebrow,
.news-hero__eyebrow {
    color: #8b4b2f;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-section-head__link,
.news-card__more,
.news-detail__back {
    color: #6f2f1f;
    font-weight: 700;
}

.news-section-head__link:hover,
.news-card__more:hover,
.news-detail__back:hover {
    color: #a2482e;
}

.news-page {
    display: block;
    width: 100%;
    min-height: 60vh;
}

.news-hero {
    padding: 80px 0 45px;
    text-align: center;
}

.news-hero .container {
    max-width: 900px;
}

.news-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.news-hero__title,
.news-hero h1 {
    margin: 0;
    color: #2f241c;
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 800;
    line-height: 0.95;
}

.news-hero__subtitle,
.news-hero p {
    max-width: 620px;
    margin: 22px auto 0;
    color: #5d5047;
    font-size: 18px;
    line-height: 1.55;
    opacity: 0.9;
}

.news-list-section {
    padding: 30px 0 90px;
}

.news-list-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.news-grid--preview {
    max-width: 1180px;
    margin: 0 auto;
}

.news-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(111, 47, 31, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(58, 35, 23, 0.08);
}

.news-card__image-link,
a.news-card__image {
    position: relative;
    display: block;
    height: 255px;
    overflow: hidden;
    background: #ead9c6;
}

.news-card__image-link .news-card__image,
a.news-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card__image-link .news-card__image,
.news-card:hover a.news-card__image img {
    transform: scale(1.04);
}

.news-card__pin,
.news-card__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #7a3b2e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.news-card__pin {
    position: absolute;
    top: 14px;
    left: 14px;
}

.news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.news-card__date,
.news-card time {
    color: #8b4b2f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    opacity: 0.72;
}

.news-card__title,
.news-card h2,
.news-card h3 {
    margin: 0 0 12px;
    color: #2f241c;
    font-size: 24px;
    line-height: 1.15;
}

.news-card__title a,
.news-card h2 a,
.news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.news-card__text,
.news-card p {
    margin: 0 0 22px;
    color: #5d5047;
    font-size: 16px;
    line-height: 1.55;
}

.news-card__more {
    margin-top: auto;
    text-decoration: none;
}

.news-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 46px 38px;
    border: 1px solid rgba(111, 47, 31, 0.12);
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 14px 40px rgba(58, 35, 23, 0.08);
}

.news-empty h2 {
    margin: 0 0 10px;
    color: #2f241c;
    font-size: 30px;
    line-height: 1.15;
}

.news-empty p {
    margin: 0;
    color: #5d5047;
    font-size: 17px;
}

.news-detail {
    position: static;
    padding: 70px 0 90px;
    backdrop-filter: none;
}

.news-detail .container {
    position: static;
    max-width: 1180px;
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
    backdrop-filter: none;
}

.news-detail__back {
    display: inline-flex;
    margin-bottom: 28px;
    color: #6f2f1f;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.news-detail__header {
    position: static;
    top: auto;
    max-width: 900px;
    margin-bottom: 34px;
    background: transparent;
    backdrop-filter: none;
}

.news-detail__meta {
    position: static;
    top: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    backdrop-filter: none;
}

.news-detail__date {
    position: static;
    top: auto;
    display: inline-block;
    color: #8b4b2f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.78;
    backdrop-filter: none;
}

.news-detail__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #7a3b2e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.news-detail__title {
    position: static;
    top: auto;
    max-width: 900px;
    margin: 0;
    color: #2f241c;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 0.98;
    backdrop-filter: none;
}

.news-detail__lead {
    position: static;
    top: auto;
    max-width: 760px;
    margin-top: 20px;
    color: #5d5047;
    font-size: 19px;
    line-height: 1.55;
    backdrop-filter: none;
}

.news-detail__image-wrap {
    margin: 34px 0 42px;
    overflow: hidden;
    border-radius: 24px;
    background: #ead9c6;
    box-shadow: 0 20px 48px rgba(47, 36, 28, 0.12);
}

.news-detail__image {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.news-detail__content {
    max-width: 850px;
    color: #2f241c;
    font-size: 18px;
    line-height: 1.75;
}

.news-detail__content p {
    margin: 0 0 20px;
}

.news-gallery {
    max-width: 1180px;
    margin: 56px auto 0;
}

.news-gallery__title {
    margin: 0 0 24px;
    color: #2f241c;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.05;
}

.news-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-gallery__item {
    margin: 0;
}

.news-gallery__item img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    background: #ead9c6;
}

.news-gallery__item figcaption {
    margin-top: 8px;
    color: #5d5047;
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.78;
}

@media (min-width: 768px) {
    .news-section-head {
        align-items: end;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .news-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .news-detail {
        padding: 42px 0 64px;
    }

    .news-detail .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .news-detail__back {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .news-detail__header {
        margin-bottom: 28px;
    }

    .news-detail__date {
        font-size: 13px;
    }

    .news-detail__title {
        font-size: 36px;
        line-height: 1.05;
    }

    .news-detail__lead {
        font-size: 17px;
    }

    .news-detail__image-wrap {
        margin: 28px 0 34px;
        border-radius: 18px;
    }

    .news-detail__image {
        max-height: 320px;
    }

    .news-detail__content {
        font-size: 16px;
    }
}

@media (max-width: 680px) {
    .news-hero {
        padding: 48px 0 28px;
        text-align: left;
    }

    .news-hero__inner {
        align-items: flex-start;
    }

    .news-hero__subtitle,
    .news-hero p {
        margin-right: 0;
        margin-left: 0;
        font-size: 17px;
    }

    .news-list-section {
        padding: 24px 0 70px;
    }

    .news-list-section .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card {
        border-radius: 18px;
    }

    .news-card__image-link,
    a.news-card__image {
        height: 220px;
    }

    .news-card__body {
        padding: 20px;
    }

    .news-empty {
        padding: 32px 20px;
        text-align: left;
    }
}

@media (max-width: 620px) {
    .news-gallery__grid {
        grid-template-columns: 1fr;
    }

    .news-gallery__item img {
        height: 220px;
        border-radius: 18px;
    }
}
