/* === Публичные страницы новостей === */

.news-page {
    padding: 32px 0 0;
}

.news-list {
    padding-top: 16px;
}

/* .news-list, */
.news-show {
    font-family: 'Jost-Regular', sans-serif;
    margin: 0 auto;
    color: var(--darkBlue);
}

.news-list__breadcrumbs,
.news-show__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--textPrimary);
    margin-bottom: 16px;
}

.news-list__breadcrumbs a,
.news-show__breadcrumbs a {
    color: var(--textPrimary);
    text-decoration: none;
}

.news-list__breadcrumbs a:hover,
.news-show__breadcrumbs a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.news-list__breadcrumbs-sep,
.news-show__breadcrumbs-sep {
    color: var(--line);
}

.news-show__breadcrumbs-current {
    color: var(--ink);
    max-width: 60ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list__grid {
    font-family: 'Jost-Regular', sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: clamp(32px, 5vw, 50px);
}

.news-list__empty {
    padding: 48px 0;
    text-align: center;
    color: var(--textPrimary);
}

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

.news-card__excerpt {
    margin: 0;
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--darkBlue);
    line-height: 130%;
}

/* === Пагинация === */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.news-pagination__link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: transparent;
    color: var(--darkBlue);
    opacity: 0.5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.12s ease, color 0.12s ease;
}

.news-pagination__link:hover {
    background: rgba(64, 99, 59, 0.08);
}

.news-pagination__link.is-active {
    opacity: 1;
    color: var(--brown);
    cursor: default;
}

.news-pagination__link.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.news-pagination__link--nav {
    color: var(--textPrimary);
}

/* === Страница одной новости === */

.news-show {
    max-width: 891px;
    padding: 16px 0 0;
}

.news-show__title {
    margin: 0 0 21px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 130%;
    color: var(--darkBlue);
    font-weight: 500;
}

.news-show__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
    color: var(--brown);
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 5%;
}

.news-show__meta-date {
    padding: 4px 8px;
    background-color: var(--white);
    border-radius: 16px;
}

.news-show__meta-status {
    padding: 4px 10px;
    border-radius: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-show__meta-status--draft {
    background-color: #f3e0b6;
    color: #6b4a00;
}

.news-show__meta-author {
    color: var(--darkBlue);
    font-size: clamp(16px, 1.5vw, 18px);
}

.news-show__lead {
    margin-bottom: 22px;
}

.news-show__cover {
    margin: 0 0 24px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 8.5;
    /* background: linear-gradient(0deg, rgba(33, 33, 45, 0.8) 0%, rgba(33, 33, 45, 0) 100%); */
}

.news-show__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-show__cover--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-show__cover--placeholder span {
    font-family: "Book Antiqua", "Palatino Linotype", serif;
    font-size: 96px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.news-show__body {
    line-height: 1.65;
    color: var(--ink);
    font-size: 16px;
}

.news-show__body p {
    margin: 0 0 14px;
}

.news-show__body h2,
.news-show__body h3,
.news-show__body h4 {
    font-family: "Book Antiqua", "Palatino Linotype", serif;
    color: var(--ink);
    margin: 24px 0 12px;
    line-height: 1.3;
}

.news-show__body h2 { font-size: 22px; }
.news-show__body h3 { font-size: 19px; }
.news-show__body h4 { font-size: 17px; }

.news-show__body a {
    color: var(--textPrimaryBase);
    text-decoration: underline;
}

.news-show__body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px 0;
    border-radius: 10px;
}

.news-show__body blockquote {
    margin: 16px 0;
    padding: 12px 18px;
    border-left: 3px solid var(--textPrimaryBase);
    background: rgba(64, 99, 59, 0.06);
    color: var(--textPrimary);
    font-style: italic;
}

.news-show__body ul,
.news-show__body ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

.news-show__body li {
    margin-bottom: 6px;
}

.news-show__related {
    margin-top: 56px;
}

.news-show__related-title {
    margin: 0 0 18px;
    font-family: "Book Antiqua", "Palatino Linotype", serif;
    font-size: 22px;
    color: var(--ink);
}

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

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

@media (max-width: 600px) {
    .news-list__grid,
    .news-show__related-grid {
        grid-template-columns: 1fr;
    }
}


/* === Карточка === */
.news-card {
    border-radius: 24px;
}

.home-news__card,
.news-card__top {
    font-family: 'Jost-Regular', sans-serif;
    position: relative;
    height: 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    padding: 12px 12px 16px 16px;
}

.home-news__card:hover,
.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(34, 27, 18, 0.1);
}

.home-news__cover,
.news-card__cover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.home-news__cover img,
.news-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news__placeholder,
.news-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: rgba(255, 255, 255, 0.3);
    background-color: var(--darkBlue)
}

.news-card__bg,
.home-news__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(33, 33, 45, 0.8) 0%, rgba(33, 33, 45, 0) 100%);
}

.home-news__date,
.news-card__date {
    margin-left: auto;
    width: fit-content;
    z-index: 1;
    background-color: var(--white);
    color: var(--brown);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5%;
    line-height: 130%;
    padding: 2px 8px;
    border-radius: 1rem;
}

.home-news__card-title,
.news-card__title {
    z-index: 1;
    font-size: clamp(20px, 3vw, 1.5rem);
    font-weight: 500;
    line-height: 130%;
    color: var(--white);
}


@media (width < 1400px) {
    .home-news__card {
        flex: 0 0 280px
    }
}

@media (max-width: 720px) {
    .home-news__card {
        flex: 0 0 80%;
    }
}

