:root {
  --blue-950: #12306f;
  --blue-900: #173f96;
  --blue-800: #2158b4;
  --blue-100: #dbe7fb;
  --ink-950: #1f2438;
  --ink-700: #5a6077;
  --ink-500: #7b8094;
  --white: #ffffff;
  --paper: #f8fbff;
  --paper-deep: #edf4ff;
  --line: rgba(255, 255, 255, 0.5);
  --shadow-soft: 0 24px 60px rgba(24, 49, 109, 0.12);
  --container: min(1180px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-950);
  background:
    radial-gradient(circle at top, rgba(33, 88, 180, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-frame {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: var(--container);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #9cd2ff, #0d419c 70%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.82rem;
  line-height: 1.05;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.84rem;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 1px;
  background: var(--white);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-button {
  height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.lang-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-select {
  min-width: 110px;
  padding-right: 34px;
  appearance: none;
  cursor: pointer;
}

.lang-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.hero-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 31, 82, 0.9) 0%, rgba(12, 29, 74, 0.42) 34%, rgba(8, 18, 44, 0.2) 100%),
    url("../assets/information/hero.png") center 28% / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding-top: 92px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 500px;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.hero-copy p {
  margin: 18px 0 26px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  color: var(--white);
  font-size: 0.84rem;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.outline-button::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  box-shadow: 5px 0 0 0 currentColor;
}

.outline-button--dark {
  border-color: rgba(18, 48, 111, 0.28);
  color: var(--blue-950);
}

.news-section {
  padding: 46px 0 34px;
}

.news-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-section__title {
  max-width: 780px;
  color: var(--blue-950);
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 0.98;
}

.news-section__blurb {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.8;
}

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

.metric-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(18, 63, 150, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(24, 49, 109, 0.08);
}

.metric-card span {
  display: block;
  color: var(--ink-500);
  font-size: 0.82rem;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}

.featured-news {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.quick-feed {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px 22px 24px;
  border: 1px solid rgba(18, 63, 150, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(219, 231, 251, 0.58) 0%, rgba(255, 255, 255, 0.94) 100%),
    var(--white);
  box-shadow: 0 18px 34px rgba(24, 49, 109, 0.08);
}

.quick-feed__header p:last-child {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.quick-feed__list {
  display: grid;
  gap: 10px;
}

.quick-feed__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(18, 63, 150, 0.1);
}

.quick-feed__item:first-child {
  border-top: none;
  padding-top: 0;
}

.quick-feed__index {
  color: var(--blue-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.quick-feed__item strong {
  display: block;
  color: var(--blue-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.quick-feed__item span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.featured-news__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 14px;
}

.featured-news__content h2 {
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  line-height: 0.96;
}

.featured-news__excerpt {
  margin: 0 0 24px;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.75;
}

.meta-line {
  display: flex;
  gap: 16px;
  margin: 22px 0 20px;
  color: var(--ink-700);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.news-subhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
}

.news-subhead h3 {
  color: var(--blue-950);
  font-size: 2rem;
  line-height: 1;
}

.news-subhead p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.75;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.news-card {
  overflow: hidden;
  border: 1px solid rgba(18, 63, 150, 0.16);
  border-bottom: 5px solid var(--blue-900);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(31, 64, 138, 0.07);
}

.news-card__image {
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  padding: 16px 16px 14px;
}

.news-card__title {
  min-height: 88px;
  font-size: 1.7rem;
  line-height: 0.95;
}

.news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-950);
  font-size: 0.92rem;
}

.news-card__excerpt {
  margin: 14px 0 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.news-card__submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 0.84rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 32px 0 60px;
  color: var(--blue-950);
}

.pagination__button,
.pagination__number {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.pagination__button.is-disabled {
  color: var(--ink-500);
  cursor: default;
}

.pagination__number.is-active {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.news-detail {
  padding: 42px 0 72px;
}

.news-detail__head {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.news-detail__head h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.news-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.news-detail__cover {
  margin-bottom: 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.news-detail__cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.news-detail__body {
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--ink-950);
}

.news-detail__body p,
.news-detail__body li,
.news-detail__body blockquote {
  font-size: 1rem;
  line-height: 1.85;
}

.news-detail__body h1,
.news-detail__body h2,
.news-detail__body h3,
.news-detail__body h4 {
  margin: 28px 0 14px;
  color: var(--blue-950);
  line-height: 1.1;
}

.news-detail__body img {
  width: 100%;
  margin: 24px 0;
  border-radius: 12px;
}

.news-detail__body a {
  color: var(--blue-900);
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--blue-950);
  font-size: 0.95rem;
}

.back-link::before {
  content: "";
  width: 14px;
  height: 14px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
}

.pagination__ellipsis {
  color: var(--ink-500);
}

.site-footer {
  padding: 0 0 44px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
}

.footer-columns h3 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: 1.45rem;
  line-height: 1.1;
}

.footer-columns p {
  margin: 4px 0;
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.5;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(20, 57, 143, 0.18);
  border-radius: 50%;
  color: var(--blue-950);
  font-size: 0.8rem;
}

@media (max-width: 1040px) {
  :root {
    --container: min(100vw - 48px, 920px);
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .featured-news,
  .news-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .news-intro,
  .news-layout,
  .news-metrics {
    grid-template-columns: 1fr;
  }

  .news-subhead {
    align-items: start;
    flex-direction: column;
  }

  .news-card__title {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .site-header {
    top: 14px;
    gap: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    font-size: 0.78rem;
  }

  .hero-section,
  .hero-content {
    min-height: 440px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .featured-news {
    padding: 18px;
  }

  .news-detail__body {
    padding: 22px 18px;
  }
}
