/* =============================================================================
   LibParl v3 — news-style.css
   ============================================================================= */

.lp-news-page { max-width: 1200px; margin: 0 auto; padding: 48px 24px 64px; }
.lp-news-page__head { margin-bottom: 40px; border-bottom: 1px solid #f0f0f1; padding-bottom: 24px; }
.lp-news-page__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 8px; }
.lp-news-page__title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: #1d2327; letter-spacing: -.02em; margin: 0; }

.lp-news-featured {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
    border-radius: 14px; overflow: hidden; border: 1px solid #e8e8e8;
    margin-bottom: 40px; text-decoration: none; transition: box-shadow .2s;
}
.lp-news-featured:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); text-decoration: none; }
@media (max-width: 700px) { .lp-news-featured { grid-template-columns: 1fr; } }
.lp-news-featured__img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; background: #f0f0f1; }
.lp-news-featured__img--placeholder { min-height: 280px; background: linear-gradient(135deg, rgba(var(--lp-accent-rgb),.13), rgba(var(--lp-accent-rgb),.05)); }
.lp-news-featured__body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.lp-news-featured__cat { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 10px; }
.lp-news-featured__title { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; color: #1d2327; line-height: 1.3; margin-bottom: 12px; letter-spacing: -.01em; }
.lp-news-featured__excerpt { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 20px; }
.lp-news-featured__meta { font-size: 12px; color: #787c82; margin-bottom: 20px; }
.lp-news-featured__read { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--lp-accent); }

.lp-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
@media (max-width: 900px) { .lp-news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-news-grid { grid-template-columns: 1fr; } }

.lp-news-card { display: block; text-decoration: none; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; background: #fff; transition: transform .15s, box-shadow .15s; }
.lp-news-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.09); text-decoration: none; }
.lp-news-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #f0f0f1; }
.lp-news-card__img--placeholder { aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(var(--lp-accent-rgb),.13), rgba(var(--lp-accent-rgb),.05)); }
.lp-news-card__body { padding: 16px 18px 20px; }
.lp-news-card__cat { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 6px; }
.lp-news-card__title { font-size: 15px; font-weight: 600; color: #1d2327; line-height: 1.4; margin-bottom: 8px; }
.lp-news-card__excerpt { font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 12px; }
.lp-news-card__date { font-size: 12px; color: #787c82; }