/* ================================================================
   NEWS & EVENTS — news-events.css
   Follows site UI pattern exactly (clip-path, tokens, crimson/navy)
   ================================================================ */

/* ── Page banner ── */
.ne-banner {
  background: var(--primary);
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}
.ne-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(149,3,41,0.15), transparent 60%);
  pointer-events: none;
}
.ne-banner__eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--coral);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.ne-banner__h1 {
  font-family: var(--f-display); font-size: 2.5rem; font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 10px; position: relative; z-index: 1;
}
@media (max-width: 768px) { .ne-banner__h1 { font-size: 1.875rem; } }
.ne-banner__sub { font-size: 1rem; color: rgba(255,255,255,0.75); position: relative; z-index: 1; }

/* ── Shared section ── */
.ne-section { padding: 64px 32px; }
.ne-section--light { background: var(--surface); }
.ne-section--low   { background: var(--surface-low); }

.ne-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--crimson);
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.ne-h2 {
  font-family: var(--f-display); font-size: 1.75rem; font-weight: 700;
  color: var(--primary); margin-bottom: 32px; letter-spacing: -0.01em;
}

/* ── Featured article ── */
.ne-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 64px;
}
@media (max-width: 1024px) { .ne-featured { grid-template-columns: 1fr; } }

.ne-featured__img-wrap {
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  aspect-ratio: 16/9;
}
.ne-featured__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ne-featured__badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--crimson); color: #fff;
  padding: 5px 14px; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.ne-featured__date { font-size: 0.8125rem; color: var(--crimson); font-weight: 600; margin-bottom: 12px; }
.ne-featured__h2 {
  font-family: var(--f-display); font-size: 1.75rem; font-weight: 700;
  color: var(--primary); line-height: 1.25; margin-bottom: 16px;
}
.ne-featured__excerpt { font-size: 1rem; color: var(--on-surface-var); line-height: 1.75; margin-bottom: 28px; }
.ne-featured__link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--primary); color: #fff;
  font-size: 0.875rem; font-weight: 700; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: filter 0.2s;
}
.ne-featured__link:hover { filter: brightness(1.15); }

/* ── News grid ── */
.ne-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .ne-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ne-grid { grid-template-columns: 1fr; } }

.ne-card {
  background: #fff; border: 1px solid var(--outline-var);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ne-card:hover { box-shadow: 0 8px 28px rgba(1,21,80,0.1); transform: translateY(-4px); }

.ne-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.ne-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.ne-card:hover .ne-card__img { transform: scale(1.04); }
.ne-card__cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--crimson); color: #fff;
  padding: 3px 10px; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.ne-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ne-card__date { font-size: 0.8125rem; color: var(--crimson); font-weight: 600; margin-bottom: 8px; }
.ne-card__title {
  font-family: var(--f-display); font-size: 1.0625rem; font-weight: 700;
  color: var(--primary); line-height: 1.35; margin-bottom: 10px; flex: 1;
}
.ne-card__excerpt { font-size: 0.875rem; color: var(--on-surface-var); line-height: 1.65; margin-bottom: 20px; }
.ne-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 700; color: var(--primary); text-decoration: none;
  border-bottom: 2px solid var(--crimson); padding-bottom: 2px;
  transition: color 0.2s; align-self: flex-start;
}
.ne-card__link:hover { color: var(--crimson); }

/* ── Events ── */
.ne-event-list { display: flex; flex-direction: column; gap: 20px; }

.ne-event-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: #fff; border: 1px solid var(--outline-var); padding: 24px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ne-event-card:hover { box-shadow: 0 6px 24px rgba(1,21,80,0.1); transform: translateY(-3px); }
.ne-event-card--past { opacity: 0.75; }

.ne-event-date-box {
  min-width: 68px; text-align: center; flex-shrink: 0;
  background: var(--primary);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  padding: 12px 10px;
}
.ne-event-date-box__day  { font-family: var(--f-display); font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.ne-event-date-box__mon  { font-size: 0.6875rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.ne-event-card--past .ne-event-date-box { background: var(--on-surface-var); }

.ne-event-body { flex: 1; }
.ne-event-cat  { font-size: 0.6875rem; font-weight: 700; color: var(--crimson); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.ne-event-title { font-family: var(--f-display); font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.ne-event-excerpt { font-size: 0.875rem; color: var(--on-surface-var); line-height: 1.65; margin-bottom: 10px; }
.ne-event-venue { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: var(--on-surface-var); }
.ne-event-venue i { color: var(--crimson); font-size: 12px; }

/* ── Empty state ── */
.ne-empty {
  text-align: center; padding: 48px 24px;
  background: var(--surface-low); border: 1px dashed var(--outline-var);
  border-radius: 8px;
}
.ne-empty i { font-size: 2.5rem; color: var(--outline-var); margin-bottom: 16px; display: block; }
.ne-empty p { font-size: 0.9375rem; color: var(--on-surface-var); line-height: 1.65; }
.ne-empty a { color: var(--crimson); font-weight: 600; }

/* ── CTA ── */
.ne-cta {
  padding: 80px 32px; background: var(--primary);
  text-align: center; position: relative; overflow: hidden;
}
.ne-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(149,3,41,0.15), transparent 60%);
  pointer-events: none;
}
.ne-cta__h2 { font-family: var(--f-display); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.ne-cta__sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; position: relative; z-index: 1; }
.ne-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; position: relative; z-index: 1; }
.ne-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--f-body); font-size: 0.875rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.ne-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.ne-btn--crimson { background: var(--crimson); color: #fff; }
.ne-btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); clip-path: none; border-radius: 2px; }
