.news-site-page {
  background: #f6f5f1;
  color: #17352f;
}

.news-site-page main {
  overflow: hidden;
}

.news-archive-hero {
  padding: 142px 0 78px;
  background:
    radial-gradient(circle at 88% 8%, rgba(111, 177, 232, .28), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(86, 159, 133, .2), transparent 35%),
    linear-gradient(135deg, #102a45 0%, #173f52 55%, #1d514b 100%);
  color: #fff;
}

.news-archive-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: end;
}

.news-archive-hero .site-eyebrow,
.news-article-header .site-eyebrow {
  color: #8bc8ff;
}

.news-archive-hero h1 {
  max-width: 850px;
  margin: .16em 0 .28em;
  color: #fff;
  font-size: clamp(3.1rem, 5.7vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.news-archive-intro {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.65;
}

.news-archive-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.news-archive-stats span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 700;
}

.news-search {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(4,18,31,.22);
  backdrop-filter: blur(14px);
  border-radius: 18px;
}

.news-search label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.76);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.news-search > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.news-search input[type="text"],
.news-search input:not([type]) {
  min-width: 0;
  height: 58px;
  padding: 0 18px;
  border: 0;
  background: #fff;
  color: #17352f;
  font: inherit;
  border-radius: 10px 0 0 10px;
}

.news-search button {
  min-width: 116px;
  border: 0;
  background: #72b9f2;
  color: #09233c;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
}

.news-topic-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: -30px;
  padding: 26px 30px;
  border: 1px solid rgba(23,53,47,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(20,48,42,.11);
}

.news-topic-nav .site-eyebrow {
  margin: 0 0 2px;
}

.news-topic-nav h2 {
  margin: 0;
  font-size: 1.28rem;
  white-space: nowrap;
}

.news-topic-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.news-topic-nav nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(23,53,47,.12);
  border-radius: 999px;
  color: #34524b;
  font-size: .86rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.news-topic-nav nav a:hover,
.news-topic-nav nav a.is-active {
  border-color: #245f78;
  background: #173f52;
  color: #fff;
}

.news-topic-nav nav a span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(95,167,217,.14);
  color: #276b8c;
  font-size: .72rem;
}

.news-topic-nav nav a.is-active span,
.news-topic-nav nav a:hover span {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.news-featured-wrap {
  padding-top: clamp(58px, 7vw, 92px);
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  min-height: 520px;
  margin-top: 22px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(20,48,42,.1);
  border-radius: 20px;
  overflow: hidden;
}

.news-featured-image {
  display: block;
  min-height: 520px;
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-featured:hover .news-featured-image img {
  transform: scale(1.025);
}

.news-featured > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 74px);
}

.news-featured h2 {
  margin: .5em 0 .55em;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.news-featured h2 a,
.news-card h2 a,
.news-related-grid h2 a {
  color: inherit;
}

.news-featured p,
.news-card p {
  color: #65736f;
  line-height: 1.72;
}

.news-featured .site-button {
  align-self: flex-start;
  margin-top: 18px;
}

.news-card-meta,
.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  color: #6f7d79;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.news-card-meta span,
.news-article-meta span {
  position: relative;
  padding-left: 18px;
}

.news-card-meta span::before,
.news-article-meta span::before {
  position: absolute;
  left: 0;
  content: "•";
  color: #5da8e4;
}

.news-results {
  padding-top: clamp(68px, 8vw, 112px);
  padding-bottom: clamp(84px, 10vw, 140px);
}

.news-results-head,
.news-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.news-results-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.news-results-head a,
.news-related-head a {
  color: #276b8c;
  font-weight: 750;
}

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

.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 18px 55px rgba(20,48,42,.075);
  transition: transform .22s ease, box-shadow .22s ease;
  border: 1px solid rgba(23,53,47,.06);
  border-radius: 16px;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(20,48,42,.12);
}

.news-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce4df;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.035);
}

.news-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 30px;
}

.news-topic-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f2f7;
  color: #276b8c;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1;
  text-transform: uppercase;
}

.news-topic-label + .news-card-meta {
  margin-top: 16px;
}

.news-topic-label-on-dark {
  margin-top: 16px;
  border: 1px solid rgba(139,200,255,.28);
  background: rgba(139,200,255,.12);
  color: #a9d7ff;
}

.news-card h2 {
  margin: .75em 0 .55em;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -.018em;
}

.news-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-read-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  color: #215f78;
  font-weight: 800;
}

.news-read-more span {
  font-size: 1.35rem;
}

.news-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(23,53,47,.14);
}

.news-pagination a:last-child {
  justify-self: end;
}

.news-pagination strong {
  color: #6d7976;
  font-size: .86rem;
}

.news-empty-state,
.news-not-found {
  padding: clamp(70px, 9vw, 130px) 0;
  text-align: center;
}

.news-article-header {
  padding: 158px 0 0;
  background: linear-gradient(145deg, #102a45 0%, #173f52 52%, #1b4a43 100%);
  color: #fff;
}

.news-article-heading {
  max-width: 1040px;
  padding-bottom: 66px;
}

.news-back-link {
  display: inline-flex;
  margin-bottom: 58px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

.news-article-heading h1 {
  max-width: 1000px;
  margin: .23em 0 .32em;
  color: #fff;
  font-size: clamp(2.8rem, 5.7vw, 5.7rem);
  line-height: .99;
  letter-spacing: -.05em;
}

.news-article-lead {
  max-width: 820px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.news-article-meta {
  margin-top: 34px;
  color: rgba(255,255,255,.65);
}

.news-article-cover {
  position: relative;
  bottom: -72px;
  height: min(58vw, 690px);
  min-height: 420px;
  margin-top: -10px;
}

.news-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(6,24,33,.25);
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 350px);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
  padding-top: 150px;
  padding-bottom: clamp(90px, 11vw, 150px);
}

.news-language-note {
  margin-bottom: 32px;
  padding: 19px 22px;
  border-left: 4px solid #67b7ef;
  background: #eaf4fa;
  color: #385c69;
  line-height: 1.6;
}

.news-article-body {
  color: #2d403b;
  font-size: 1.08rem;
  line-height: 1.86;
}

.news-article-body > p:first-child {
  font-size: 1.2rem;
  color: #253d37;
}

.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
  margin: 1.55em 0 .52em;
  color: #153b34;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.news-article-body h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.news-article-body h3 { font-size: clamp(1.55rem, 2.7vw, 2.15rem); }
.news-article-body p { margin: 0 0 1.4em; }
.news-article-body ul,
.news-article-body ol { margin: 0 0 1.7em; padding-left: 1.35em; }
.news-article-body li { margin: .55em 0; padding-left: .25em; }
.news-article-body a { color: #166b92; text-decoration: underline; text-underline-offset: 3px; }
.news-article-body blockquote {
  margin: 2em 0;
  padding: 24px 30px;
  border-left: 4px solid #6db7e8;
  background: #edf4f5;
  color: #31564e;
  font-size: 1.15rem;
}

.news-contact-card {
  position: sticky;
  top: 118px;
  padding: 34px;
  background: #173f52;
  color: #fff;
  box-shadow: 0 22px 70px rgba(16,42,69,.14);
}

.news-contact-card .site-eyebrow { color: #8bc8ff; }
.news-contact-card h2 { margin: .35em 0 .55em; color: #fff; font-size: 1.75rem; line-height: 1.18; }
.news-contact-card p:not(.site-eyebrow) { color: rgba(255,255,255,.76); line-height: 1.65; }
.news-contact-card .site-button { margin-top: 14px; background: #72b9f2; color: #09233c; }

.news-related-section {
  padding: clamp(78px, 9vw, 128px) 0;
  background: #e8ece8;
}

.news-related-head .site-eyebrow { margin: 0; }

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

.news-related-grid article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-related-grid time {
  display: block;
  margin-top: 20px;
  color: #6e7b77;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.news-related-grid h2 {
  margin: .45em 0 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .news-archive-hero-grid,
  .news-featured,
  .news-article-layout {
    grid-template-columns: 1fr;
  }
  .news-featured { min-height: 0; }
  .news-featured-image { min-height: 430px; }
  .news-card-grid,
  .news-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-contact-card { position: static; }
  .news-topic-nav { grid-template-columns: 1fr; gap: 20px; }
  .news-topic-nav nav { justify-content: flex-start; }
}

@media (max-width: 650px) {
  .news-archive-hero { padding: 118px 0 60px; }
  .news-archive-hero-grid { gap: 38px; }
  .news-archive-hero h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .news-search { padding: 20px; }
  .news-search > div { grid-template-columns: 1fr; }
  .news-search input[type="text"],
  .news-search input:not([type]) { border-radius: 10px 10px 0 0; }
  .news-search button { height: 52px; border-radius: 0 0 10px 10px; }
  .news-topic-nav { margin-top: -22px; padding: 22px 20px; }
  .news-topic-nav nav {
    margin: 0 -20px;
    padding: 0 20px 4px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .news-topic-nav nav::-webkit-scrollbar { display: none; }
  .news-featured-image { min-height: 280px; }
  .news-featured > div { padding: 30px 24px 36px; }
  .news-card-grid,
  .news-related-grid { grid-template-columns: 1fr; }
  .news-card-copy { padding: 25px 22px 27px; }
  .news-pagination { grid-template-columns: 1fr 1fr; }
  .news-pagination strong { grid-column: 1 / -1; grid-row: 1; text-align: center; }
  .news-article-header { padding-top: 126px; }
  .news-article-heading { padding-bottom: 40px; }
  .news-back-link { margin-bottom: 42px; }
  .news-article-heading h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .news-article-cover { bottom: -38px; min-height: 260px; height: 68vw; }
  .news-article-layout { padding-top: 92px; padding-bottom: 82px; }
  .news-article-body { font-size: 1.02rem; }
  .news-contact-card { padding: 28px 24px; }
  .news-results-head,
  .news-related-head { align-items: flex-start; flex-direction: column; }
}
