/* Public /news list + detail */

.news-main {
    padding: 2rem 0 4rem;
    min-height: 50vh;
}

.news-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-muted, #7F8F78);
}

.news-crumbs a {
    color: var(--accent-hover, #91AB7C) !important;
    text-decoration: none !important;
}

.news-crumbs a:hover {
    text-decoration: underline !important;
}

.news-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-hover, #91AB7C);
    margin-bottom: 0.35rem;
}

.news-h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary, #F1F4EE);
    line-height: 1.2;
}

.news-lead {
    margin: 0 0 2rem;
    max-width: 40rem;
    color: var(--text-secondary, #B7C4B0);
    font-size: 1rem;
    line-height: 1.55;
}

.news-list-head {
    margin-bottom: 1.75rem;
}

.news-empty {
    color: var(--text-muted, #7F8F78);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

@media (min-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.news-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid var(--border-strong, rgba(148, 168, 132, 0.28));
    background: linear-gradient(145deg, var(--surface-elevated, #222B24), var(--surface, #1A211C));
    overflow: hidden;
    min-height: 100%;
}

.news-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    background: #0f1411;
    overflow: hidden;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(122, 147, 104, 0.18), transparent 55%),
        var(--background-secondary, #131916);
}

.news-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem 1.2rem 1.35rem;
    flex: 1;
}

.news-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.news-card__title a {
    color: var(--text-primary, #F1F4EE) !important;
    text-decoration: none !important;
}

.news-card__title a:hover {
    color: var(--accent-hover, #91AB7C) !important;
}

.news-card__teaser {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary, #B7C4B0);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__more {
    align-self: flex-start;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-hover, #91AB7C) !important;
    text-decoration: none !important;
}

.news-card__more:hover {
    text-decoration: underline !important;
}

/* Detail */
.news-article {
    max-width: 48rem;
}

.news-article__meta {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted, #7F8F78);
}

.news-article__media {
    margin: 1.25rem 0 1.5rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-strong, rgba(148, 168, 132, 0.22));
    background: #fff;
}

.news-article__media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
}

.news-article__body {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-secondary, #B7C4B0);
}

.news-article__body br + br {
    content: '';
    display: block;
    margin-top: 0.65rem;
}

.news-article__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.15rem;
    border-radius: 10px;
    background: var(--accent, #7A9368);
    color: var(--background, #0E1210) !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none !important;
    border: 1px solid transparent;
}

.news-btn:hover {
    background: var(--accent-hover, #91AB7C);
}

.news-btn--ghost {
    background: transparent;
    color: var(--text-primary, #F1F4EE) !important;
    border-color: var(--border-strong, rgba(148, 168, 132, 0.28));
}

.news-btn--ghost:hover {
    border-color: var(--accent, #7A9368);
    background: var(--accent-soft, rgba(122, 147, 104, 0.12));
}
