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

.lp-nl-hero { background: #fff; padding: 48px 24px 30px; border-bottom: 1px solid #eeecea; }
.lp-nl-hero__inner { max-width: 1200px; margin: 0 auto; }
.lp-nl-hero__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 10px; }
.lp-nl-hero__title { font-family: 'Nunito Sans', sans-serif; font-size: clamp(28px, 4.5vw, 44px); font-weight: 900; color: #16181d; letter-spacing: -.03em; line-height: 1.05; margin: 0 0 10px; }
.lp-nl-hero__title::after { content: ''; display: block; width: 34px; height: 4px; background: var(--lp-accent); border-radius: 2px; margin-top: 14px; }
.lp-nl-hero__desc { font-size: 15px; color: #5c6066; max-width: 620px; margin-top: 10px; }

.lp-nl-empty { text-align: center; padding: 64px 24px; color: #787c82; }
.lp-nl-empty__icon { font-size: 40px; margin-bottom: 12px; }
.lp-nl-empty__title { font-size: 16px; font-weight: 600; color: #1d2327; margin-bottom: 6px; }
.lp-nl-empty__link { display: inline-block; margin-top: 16px; padding: 10px 20px; background: var(--lp-accent); color: #fff; border-radius: 6px; text-decoration: none; font-size: 13px; font-weight: 600; }
.lp-nl-empty__link:hover { opacity: .9; }

.lp-nl { max-width: 1200px; margin: 0 auto; padding: 48px 24px 72px; }
.lp-nl__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
@media (max-width: 900px) { .lp-nl__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-nl__grid { grid-template-columns: 1fr; } }

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

.lp-nl__list { list-style: none; margin: 0; padding: 0; }
.lp-nl__list-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #f0f0f1; gap: 16px; }
.lp-nl__list-item:last-child { border-bottom: none; }
.lp-nl__list-title { font-size: 14px; font-weight: 500; color: #1d2327; text-decoration: none; flex: 1; }
.lp-nl__list-title:hover { color: var(--lp-accent); }
.lp-nl__list-date { font-size: 12px; color: #787c82; flex-shrink: 0; }