:root {
  --navy-950: #001a3d;
  --navy-900: #002957;
  --navy-800: #14396b;
  --gold: #d0a024;
  --gold-dark: #c28f00;
  --blue: #0c89ff;
  --ink: #1a1a1a;
  --text: #4a5568;
  --muted: #8b9095;
  --line: #e2e8f0;
  --white: #fff;
  --bg: #f6f9fc;
  --font:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --font-en: Inter, "Helvetica Neue", Arial, sans-serif;
  --container: 1400px;
  --gutter: 24px;
  --shadow-sm: 0 4px 14px rgba(0, 26, 61, 0.06);
  --shadow-md: 0 14px 36px rgba(0, 26, 61, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 160ms;
  --normal: 320ms;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font: 14px/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 3px solid rgba(12, 137, 255, 0.45);
  outline-offset: 3px;
}
.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.page-main {
  min-height: 45vh;
  padding: 28px 0 80px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 9px 14px;
  color: #fff;
  background: var(--navy-950);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
}
.section-heading {
  margin-bottom: 40px;
}
.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font: 700 12px/1.5 var(--font-en);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 20px;
  height: 2px;
  content: "";
  background: var(--gold);
}
.section-heading h1,
.section-heading h2 {
  margin-top: 8px;
  color: var(--navy-950);
  font-size: 34px;
  line-height: 1.25;
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
}
.more-link::after {
  content: "→";
  transition: transform var(--normal) var(--ease);
}
.more-link:hover::after {
  transform: translateX(4px);
}
.date-badge {
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  color: #fff;
  background: linear-gradient(145deg, #1264a0, #064778);
  border-radius: 5px;
  text-align: center;
}
.date-badge strong {
  display: block;
  font: 700 25px/1 var(--font-en);
}
.date-badge span {
  display: block;
  margin-top: 5px;
  font: 600 8px/1 var(--font-en);
  letter-spacing: 0.04em;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}
[data-reveal="left"] {
  transform: translateX(-28px);
}
[data-reveal="right"] {
  transform: translateX(28px);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] {
  transition-delay: 80ms;
}
[data-delay="2"] {
  transition-delay: 160ms;
}
[data-delay="3"] {
  transition-delay: 240ms;
}
[data-delay="4"] {
  transition-delay: 320ms;
}
[data-delay="5"] {
  transition-delay: 400ms;
}
.ripple-host {
  position: relative;
  overflow: hidden;
}
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  transform: scale(0);
  animation: ripple 600ms ease-out forwards;
}
@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  :root {
    --gutter: 20px;
  }
}
@media (max-width: 768px) {
  :root {
    --gutter: 15px;
  }
  body {
    font-size: 13px;
  }
  .page-main {
    padding: 22px 0 52px;
  }
  .breadcrumb {
    margin-bottom: 24px;
    font-size: 12px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .section-heading h1,
  .section-heading h2 {
    font-size: 25px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section-heading--row {
    align-items: center;
  }
  .date-badge {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }
  .date-badge strong {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .section-heading--row {
    gap: 12px;
  }
  .section-heading h1,
  .section-heading h2 {
    font-size: 22px;
  }
  .more-link {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
