/* ============================================================
   NEWS & EVENTS
============================================================ */
.news-events {
  background: var(--white);
  padding: var(--section-gap) 0;
}

.news-events__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.news-events__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 10px;
}

.news-events__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.news-events__view-all {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

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

/* News Card */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--outline-var);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card__img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__img { transform: scale(1.04); }

.news-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__date {
  color: var(--outline);
  margin-bottom: 8px;
}

.news-card__title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card__title a:hover { color: var(--primary-mid); }

.news-card__excerpt {
  font-size: 0.88rem;
  color: var(--on-surface-var);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.news-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.news-card__readmore:hover { gap: 10px; }

.news-events__empty {
  color: var(--on-surface-var);
  text-align: center;
  padding: 40px 0;
}

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

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-events__header { flex-direction: column; gap: 8px; }
}
