/* ──────────────────────────────────────────
   NEWS SECTION
   3-column grid of news cards. Each card: image, category, title, date.
   To add a card, copy any <a class="news-card"> in index.html.
─────────────────────────────────────────── */
.news-section {
  position: relative;
  background: var(--dark);
  padding: 100px 0 140px;
  z-index: 50;
}
.news-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}
.news-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: 0.005em;
  color: var(--light);
  line-height: 1;
  margin: 0;
}

/* ──────────────────────────────────────────
   GRID
─────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ──────────────────────────────────────────
   NEWS CARD
─────────────────────────────────────────── */
.news-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.6s var(--ease-out-quint);
}
.news-card:hover { transform: translateY(-8px); }

.news-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.6s var(--ease-out-quint);
}
.news-card:hover .news-image {
  box-shadow: 0 32px 64px -20px rgba(0, 0, 0, 0.7);
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-quint);
  display: block;
}
.news-card:hover .news-image img { transform: scale(1.06); }

.news-category {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin-bottom: 12px;
}
.news-card-title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  color: var(--light);
  line-height: 1.4;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}
.news-card:hover .news-card-title { color: var(--light); }
.news-date {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--light-dim);
  letter-spacing: 0.12em;
}

/* ──────────────────────────────────────────
   "ALL NEWS →" LINK
   Lives in the .news-header alongside the section title,
   pushed to the right by the header's space-between flex layout.
─────────────────────────────────────────── */
.news-see-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-dim);
  text-decoration: none;
  transition: color 0.4s ease;
  flex-shrink: 0;
}
.news-see-all:hover { color: var(--light); }
.news-see-all svg {
  width: 14px;
  height: 14px;
  transition: transform 0.5s var(--ease-out-quint);
}
.news-see-all:hover svg { transform: translateX(4px); }
