/* ============================================================
   NEWS PAGE STYLES
   ============================================================ */

/* PAGE INTRO — "Go back" + "News" heading */
#news-intro {
  background: var(--black);
  padding: 130px 40px 40px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

#news-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.88;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* NEWS LIST */
#news-list {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px 40px;
}

.news-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.news-row a.news-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 800px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey);
  text-decoration: none;
  color: inherit;
}

.news-img {
  width: 180px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--black-3);
  border-radius: 2px;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-text {
  flex: 1;
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: var(--offwhite);
  opacity: 0.7;
}

.news-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 0.9;
  letter-spacing: -0.48px;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.news-summary {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.36px;
  color: var(--offwhite);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  #news-intro {
    padding: 90px 16px 20px;
  }

  #news-list {
    padding: 0 16px 20px;
  }

  .news-row a.news-inner {
    max-width: 100%;
    padding: 6px 0;
    border-bottom-width: 0.471px;
  }

  .news-img {
    width: 84.797px;
    height: 47.109px;
    border-radius: 1px;
  }

  .news-text {
    padding: 6px;
    gap: 1.413px;
  }

  .news-date {
    font-size: 8px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-summary {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
