.news-page {
  background: #173a33;
  color: #252422;
}
.news-page .site-header {
  color: #f8f1e8;
}
.news-page .header-cta {
  border-color: rgba(248, 241, 232, 0.62);
}
.news-index-hero {
  min-height: 58svh;
  padding: 10rem var(--pad) 5rem;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 146, 24, 0.3), transparent 28%),
    linear-gradient(125deg, #15382f 0%, #24564c 58%, #5c5134 100%);
  color: #f8f1e8;
}
.news-index-hero > p,
.news-article header > p {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a9530f;
}
.news-index-hero h1 {
  max-width: 900px;
  margin: 1rem 0;
  font: 400 clamp(4.5rem, 8vw, 9rem)/0.84 var(--display);
  letter-spacing: -0.05em;
}
.news-index-hero h1 em {
  font-weight: 400;
}
.news-index-hero > span {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: #d7ded9;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
  padding: clamp(4rem, 7vw, 7rem) var(--pad);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #173a33;
  background-size: 70px 70px;
}
.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #f8f2e9;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 22px 55px rgba(4, 22, 18, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: #ff9218;
}
.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(4, 22, 18, 0.38);
}
.news-card img,
.news-card-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.news-card:hover img,
.news-card:focus-visible img {
  transform: scale(1.025);
}
.news-card--document img {
  padding: 1.2rem;
  object-fit: contain;
  background: #e9e4da;
}
.news-card--document:hover img,
.news-card--document:focus-visible img {
  transform: none;
}
.news-card-placeholder {
  display: grid;
  place-items: center;
  background: #dceae0;
  font: 400 5rem var(--display);
}
.news-card article {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.4rem, 2.5vw, 2.3rem);
}
.news-card time {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #a9530f;
}
.news-card h2 {
  margin: 0.8rem 0;
  font: 400 clamp(2rem, 3vw, 3rem)/0.95 var(--display);
}
.news-card p {
  color: #675f57;
  line-height: 1.7;
}
.news-card b {
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a9530f;
}
.news-article {
  padding: 10rem var(--pad) 8rem;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 146, 24, 0.28), transparent 24%),
    linear-gradient(145deg, #15382f 0%, #214b42 48%, #4d4935 100%);
}
.news-article header {
  max-width: 1050px;
  margin: 0 auto 4rem;
  text-align: center;
  color: #f8f1e8;
}
.news-article h1 {
  margin: 1rem 0;
  font: 400 clamp(4rem, 8vw, 8.5rem)/0.9 var(--display);
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.news-article header strong {
  display: block;
  max-width: 750px;
  margin: auto;
  color: #d7ded9;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}
.news-byline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 1.5rem;
  color: #cbd7d1;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-article figure {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  background: #f8f2e9;
  box-shadow: 0 30px 80px rgba(4, 22, 18, 0.35);
}
.news-article figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.news-article figure.news-document {
  max-width: 900px;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: #ded8ce;
}
.news-article figure.news-document img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 18px 45px rgba(4,22,18,.2);
}
.news-article--document {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  grid-template-rows: auto auto 1fr;
  gap: 0 clamp(2.5rem, 6vw, 7rem);
  align-items: start;
  padding-left: max(var(--pad), calc((100vw - 1440px) / 2));
  padding-right: max(var(--pad), calc((100vw - 1440px) / 2));
}
.news-article--document header {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding-top: clamp(2rem, 5vw, 5rem);
  text-align: left;
}
.news-article--document h1 {
  font-size: clamp(4rem, 6vw, 7rem);
}
.news-article--document header strong {
  margin: 0;
}
.news-article--document .news-byline {
  justify-content: flex-start;
}
.news-article--document figure.news-document {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  max-width: 760px;
  margin: 0;
}
.news-article--document .news-body {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin: 2.5rem 0 0;
  padding: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: #f8f1e8;
  box-shadow: none;
}
.news-article--document .news-body p {
  margin: 0 0 1rem;
  color: #d7ded9;
  font-size: .98rem;
  line-height: 1.75;
}
.news-article--document .news-body strong {
  color: #fff;
}
.news-article--document .news-back {
  grid-column: 1;
  grid-row: 3;
  width: 100%;
  margin: 2rem 0 0;
}
.news-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) max(clamp(1.5rem, 8vw, 8rem), calc((100% - 760px) / 2));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
  background: #f8f2e9;
  box-shadow: 0 35px 80px rgba(4, 22, 18, 0.35);
}
.news-body p {
  font-size: 1.05rem;
  line-height: 1.9;
}
.news-body h2 {
  margin: 3rem 0 1rem;
  font: 400 2.7rem/1 var(--display);
}
.news-back {
  display: block;
  max-width: 760px;
  margin: 4rem auto 0;
  color: #f8f1e8;
}
.news-empty-page {
  min-height: 70svh;
  padding: 12rem var(--pad);
}
.news-empty-page h1 {
  font: 400 clamp(4rem, 8vw, 8rem)/0.9 var(--display);
}
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-article--document {
    display: block;
  }
  .news-article--document header {
    padding-top: 0;
    text-align: center;
  }
  .news-article--document header strong {
    margin: auto;
  }
  .news-article--document .news-byline {
    justify-content: center;
  }
  .news-article--document figure.news-document {
    margin: 3rem auto 0;
  }
  .news-article--document .news-body {
    max-width: 760px;
    margin: 2rem auto 0;
  }
  .news-article--document .news-back {
    max-width: 760px;
    margin: 3rem auto 0;
  }
}
@media (max-width: 600px) {
  .news-index-hero {
    padding: 8rem 1.25rem 4rem;
  }
  .news-index-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.5rem);
    line-height: 0.9;
  }
  .news-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }
  .news-article {
    padding: 8rem 1.25rem 5rem;
  }
  .news-article h1 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
    line-height: 0.95;
  }
}
