
/* Euroasia News Page */
.news-body {
  margin: 0;
  background: var(--euroasia-white);
}

.news-page,
.news-page * {
  box-sizing: border-box;
}

.news-page {
  font-family: Montserrat, Arial, sans-serif;
  color: #203a47;
}

.news-container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

/* Intro */
.news-intro {
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 88% 15%, rgba(17,147,212,.085), transparent 27%),
    linear-gradient(180deg, #f4fbff 0%, #eef8fc 100%);
}

.news-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: end;
  gap: 82px;
}

.news-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--euroasia-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.news-intro h1 {
  margin: 0;
  color: #1f3845;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.news-intro-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
}

.news-intro-copy p {
  max-width: 570px;
  margin: 0;
  color: #6f828c;
  font-size: 14px;
  line-height: 1.8;
}

.news-count {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* Archive */
.news-archive {
  padding: 64px 0 92px;
  background: var(--euroasia-white);
}

.news-archive-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px 17px;
  border-bottom: 1px solid rgba(34, 65, 81, .10);
  color: #1795d4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.news-archive-list {
  border-bottom: 1px solid rgba(34, 65, 81, .10);
}

.news-archive-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 18px;
  border-bottom: 1px solid rgba(34, 65, 81, .085);
  background: var(--euroasia-white);
  transition:
    background 170ms ease,
    transform 170ms ease,
    box-shadow 170ms ease;
}

.news-archive-item:last-child {
  border-bottom: 0;
}

.news-index {
  color: #a0afb6;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.news-archive-item h2 {
  margin: 0;
  color: #294652;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.012em;
}

.news-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  justify-self: end;
  border-radius: 50%;
  background: rgba(17,147,212,.07);
  color: var(--euroasia-accent);
  transition:
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.news-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Subtle editorial hover without pretending the rows are links */
@media (hover:hover) {
  .news-archive-item:hover {
    z-index: 1;
    background: #f4fbff;
    box-shadow: 0 10px 26px rgba(21, 70, 95, .055);
    transform: translateX(3px);
  }

  .news-archive-item:hover .news-index {
    color: var(--euroasia-accent);
  }

  .news-archive-item:hover .news-arrow {
    background: var(--euroasia-accent);
    color: var(--euroasia-white);
    transform: translateX(2px);
  }
}

/* Footer spacing */
.news-body footer {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .news-intro {
    padding: 64px 0 58px;
  }

  .news-intro-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .news-intro-copy {
    align-items: flex-start;
  }

  .news-archive {
    padding-top: 46px;
  }
}

@media (max-width: 680px) {
  .news-container {
    width: calc(100% - 28px);
  }

  .news-intro {
    padding: 48px 0 44px;
  }

  .news-intro h1 {
    font-size: 43px;
  }

  .news-intro-copy {
    flex-direction: column;
    gap: 14px;
  }

  .news-intro-copy p {
    font-size: 13px;
    line-height: 1.7;
  }

  .news-archive {
    padding: 34px 0 60px;
  }

  .news-archive-head {
    padding-inline: 8px;
  }

  .news-archive-head span:last-child {
    display: none;
  }

  .news-archive-item {
    grid-template-columns: 34px minmax(0,1fr) 36px;
    gap: 10px;
    min-height: 84px;
    padding: 15px 8px;
  }

  .news-archive-item h2 {
    font-size: 13px;
    line-height: 1.45;
  }

  .news-arrow {
    width: 30px;
    height: 30px;
  }

  .news-arrow svg {
    width: 15px;
    height: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-page *,
  .news-page *::before,
  .news-page *::after {
    transition: none !important;
  }
}


.news-archive-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-archive-link:focus-visible {
  outline: 2px solid var(--euroasia-accent);
  outline-offset: 4px;
}


.news-general-hero {
  padding: 29px 0 34px !important;
  background: var(--euroasia-accent) !important;
}

.news-general-title {
  margin: 0 !important;
  color: var(--euroasia-white) !important;
  font-family: Montserrat, Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1.16 !important;
  letter-spacing: -.03em !important;
}

.news-general-hero .news-kicker,
.news-general-hero .eyebrow,
.news-general-hero p {
  color: rgba(255,255,255,.84) !important;
}

@media (max-width: 680px) {
  .news-general-title {
    font-size: 28px !important;
  }
}


.news-list article,
.news-archive article,
.news-item,
.news-archive-item {
  border-bottom: 1px solid #eceff1;
}

.news-list article:last-child,
.news-archive article:last-child,
.news-item:last-child,
.news-archive-item:last-child {
  border-bottom: 0;
}


/* The repeating unit is the link, not the nested article. */
.news-archive-list > .news-archive-link {
  display: block;
  border-bottom: 1px solid rgba(34, 65, 81, .085) !important;
  text-decoration: none;
  color: inherit;
}

.news-archive-list > .news-archive-link:last-child {
  border-bottom: 0 !important;
}

/* Prevent nested article rules from creating/removing competing borders. */
.news-archive-list > .news-archive-link > .news-archive-item {
  border-bottom: 0 !important;
}


.news-article-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--euroasia-accent) !important;
}

.news-article-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}


/* Mobile News list — article titles only */
@media (max-width: 680px) {
  .news-archive-item h2 {
    font-size: 16px !important;
    line-height: 1.42 !important;
  }
}
