:root {
  --navy: #03162d;
  --navy-soft: #0a2340;
  --gold: #d9aa43;
  --gold-light: #f0c65b;
  --paper: #f8f8f6;
  --ink: #304158;
  --muted: #68778a;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.container {
  width: min(calc(100% - 104px), var(--max-width));
  margin: 0 auto;
}

.page-header {
  position: relative;
  z-index: 20;
  background: var(--navy);
  border-bottom: 1px solid rgba(240, 198, 91, .22);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  width: 184px;
  align-items: center;
  flex: 0 0 auto;
}

.brand img { display: block; width: 225px; height: auto; }

.page-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: .9rem;
}

.page-header nav > a,
.solutions-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #f6f3ea;
}

.menu-toggle { display: none; }

.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;
}

.article-hero {
  padding: 86px 0 78px;
  color: #fff;
  background: linear-gradient(120deg, #03162d 0%, #0a294a 100%);
}

.article-hero-inner { max-width: 940px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.article-intro {
  max-width: 700px;
  margin: 28px 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.12rem;
  line-height: 1.65;
}

.article-hero time { color: rgba(255, 255, 255, .64); font-size: .92rem; }

.article-layout { padding: 74px 0 88px; }

.article-body { max-width: 760px; margin: 0 auto; }

.article-body p {
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.82;
}

.article-body section { margin-top: 58px; }

.article-body h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.article-body blockquote {
  margin: 46px 0 8px;
  padding: 27px 30px;
  border-left: 4px solid var(--gold);
  background: #fff;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.42;
}

.article-cta {
  padding: 70px 0;
  color: #fff;
  background: var(--navy);
}

.article-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.article-cta h2 {
  max-width: 650px;
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.article-cta p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .72); line-height: 1.7; }

.article-cta-actions { display: flex; flex-shrink: 0; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-light); }
.button-outline { border-color: rgba(240, 198, 91, .75); color: #fff; }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--gold-light); color: var(--gold-light); }

.button:focus-visible,
.page-header a:focus-visible,
.menu-toggle:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 900px) {
  .container { width: min(calc(100% - 48px), var(--max-width)); }
  .page-header nav { gap: 16px; }
  .article-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 36px); }
  .header-inner { min-height: 72px; justify-content: space-between; }
  .brand { width: 158px; }
  .brand img { width: 185px; }
  .page-header nav { display: none; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    padding: 8px;
    border: 1px solid rgba(240, 198, 91, .55);
    border-radius: 3px;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; background: currentColor; }
  .article-hero { padding: 58px 0 54px; }
  .article-hero h1 { font-size: clamp(2.25rem, 11vw, 3.3rem); }
  .article-intro { font-size: 1rem; }
  .article-layout { padding: 54px 0 66px; }
  .article-body p { font-size: 1rem; line-height: 1.75; }
  .article-body section { margin-top: 46px; }
  .article-body blockquote { margin-top: 36px; padding: 22px 20px; }
  .article-cta { padding: 54px 0; }
  .article-cta-actions { width: 100%; flex-direction: column; }
  .article-cta-actions .button { width: 100%; }
}





.article-cover{max-width:960px;margin:0 auto;padding-top:56px}.article-cover img{display:block;width:100%;height:auto;border-radius:3px}@media(max-width:680px){.article-cover{padding-top:34px}}

