:root {
  --abte-navy: #102944;
  --abte-navy-deep: #091c30;
  --abte-navy-mid: #183c5a;
  --abte-teal: #087f82;
  --abte-teal-dark: #075f64;
  --abte-teal-pale: #e7f3f2;
  --abte-gold: #d4a94e;
  --abte-gold-light: #f1d78e;
  --abte-ink: #172438;
  --abte-copy: #526173;
  --abte-mist: #f2f5f7;
  --abte-line: #d9e0e6;
  --abte-white: #fff;
  --abte-serif: Georgia, "Times New Roman", serif;
  --abte-sans: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--abte-ink);
  background: var(--abte-white);
  font-family: var(--abte-sans);
  font-size: 16px;
  line-height: 1.65;
}

body.abte-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--abte-gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

svg {
  display: block;
}

.abte-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.screen-reader-text,
.abte-skip-link:not(:focus) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.abte-skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  color: var(--abte-navy);
  background: white;
  border: 2px solid var(--abte-gold);
}

.abte-utility-bar {
  color: #dbe7ee;
  background: #0b2037;
  font-size: 12px;
  letter-spacing: .02em;
}

.abte-utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.abte-utility-inner p {
  margin: 0;
}

.abte-utility-list,
.abte-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abte-utility-list a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.abte-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(16, 41, 68, .13);
  box-shadow: 0 4px 18px rgba(16, 41, 68, .05);
  backdrop-filter: blur(12px);
}

.admin-bar .abte-site-header {
  top: 32px;
}

.abte-header-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.abte-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--abte-navy);
  flex: 0 0 auto;
}

.abte-brand .custom-logo-link {
  display: flex;
}

.abte-brand .custom-logo {
  width: auto;
  max-width: 230px;
  max-height: 66px;
}

.abte-seal {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--abte-teal);
}

.abte-seal svg {
  width: 100%;
  height: 100%;
}

.abte-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.abte-brand-copy strong {
  font-family: var(--abte-serif);
  font-size: 17px;
}

.abte-brand-copy span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.abte-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.abte-nav-list {
  gap: clamp(16px, 2vw, 27px);
  color: #273b50;
  font-size: 14px;
  font-weight: 700;
}

.abte-nav-list > li > a {
  position: relative;
  display: inline-flex;
  padding-block: 12px;
}

.abte-nav-list > li:not(.abte-nav-verify) > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--abte-teal);
  transition: right .18s ease;
}

.abte-nav-list > li:not(.abte-nav-verify) > a:hover::after {
  right: 0;
}

.abte-nav-verify a {
  min-height: 44px;
  align-items: center;
  padding: 10px 16px !important;
  color: white;
  background: var(--abte-teal);
  border-radius: 3px;
}

.abte-nav-verify a:hover {
  background: var(--abte-teal-dark);
}

.abte-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--abte-navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.abte-menu-button svg {
  width: 26px;
}

.abte-close-icon {
  display: none;
}

.abte-menu-button.is-active .abte-menu-icon {
  display: none;
}

.abte-menu-button.is-active .abte-close-icon {
  display: block;
}

.abte-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: radial-gradient(circle at 18% 22%, rgba(21, 130, 132, .3), transparent 430px), linear-gradient(128deg, #0e2945 0%, #133b58 58%, #0e5961 100%);
}

.abte-hero-pattern {
  position: absolute;
  inset: 0 0 0 52%;
  opacity: .17;
  background-image: linear-gradient(60deg, transparent 48%, rgba(255,255,255,.65) 49%, transparent 50%), linear-gradient(-60deg, transparent 48%, rgba(255,255,255,.4) 49%, transparent 50%);
  background-size: 88px 88px;
  mask-image: linear-gradient(to right, transparent, black 28%);
}

.abte-hero-grid {
  position: relative;
  min-height: 624px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-block: 86px 108px;
}

.abte-hero-copy {
  max-width: 720px;
}

.abte-eyebrow {
  margin-bottom: 16px;
  color: var(--abte-teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.abte-eyebrow--light {
  color: var(--abte-gold-light);
}

.abte-hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-family: var(--abte-serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .99;
}

.abte-hero-intro {
  max-width: 690px;
  margin-bottom: 32px;
  color: #e0ebf1;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
}

.abte-hero-actions,
.abte-about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.abte-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.abte-button svg,
.abte-text-link svg {
  width: 17px;
  height: 17px;
}

.abte-button--gold {
  color: var(--abte-navy);
  background: var(--abte-gold);
}

.abte-button--gold:hover {
  background: #e1bd69;
}

.abte-button--outline-light {
  color: white;
  background: transparent;
  border-color: rgba(255,255,255,.55);
}

.abte-button--outline-light:hover {
  color: var(--abte-navy);
  background: white;
}

.abte-button--outline {
  margin-top: 16px;
  color: var(--abte-teal-dark);
  background: transparent;
  border-color: var(--abte-teal);
}

.abte-button--outline:hover {
  color: white;
  background: var(--abte-teal);
}

.abte-button--navy {
  color: white;
  background: var(--abte-navy);
}

.abte-button--navy:hover {
  background: var(--abte-teal-dark);
}

.abte-mission-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px 0 0;
  padding: 0;
  color: #dbe7ed;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.abte-mission-points li,
.abte-public-copy li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.abte-mission-points svg,
.abte-public-copy li svg {
  width: 17px;
  color: var(--abte-gold-light);
}

.abte-start-card {
  padding: 32px 34px 23px;
  color: var(--abte-ink);
  background: white;
  border-top: 5px solid var(--abte-gold);
  box-shadow: 0 24px 60px rgba(2, 17, 31, .32);
}

.abte-card-kicker {
  margin-bottom: 4px;
  color: var(--abte-teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.abte-start-card h2 {
  margin-bottom: 18px;
  font-family: var(--abte-serif);
  font-size: 26px;
  line-height: 1.2;
}

.abte-start-card > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding-block: 16px;
  border-top: 1px solid var(--abte-line);
}

.abte-start-card > a > svg:first-child {
  width: 21px;
  color: var(--abte-teal);
}

.abte-start-card > a > svg:last-child,
.abte-quick-grid > a > svg,
.abte-education-links a > svg:last-child {
  width: 16px;
  color: #7c8995;
  transition: transform .18s ease;
}

.abte-start-card > a:hover > svg:last-child,
.abte-quick-grid > a:hover > svg,
.abte-education-links a:hover > svg:last-child {
  color: var(--abte-teal);
  transform: translateX(4px);
}

.abte-start-card a span,
.abte-quick-grid a > span:nth-child(2),
.abte-education-links a span {
  display: flex;
  flex-direction: column;
}

.abte-start-card a strong,
.abte-quick-grid strong,
.abte-education-links strong {
  font-size: 15px;
}

.abte-start-card a small,
.abte-quick-grid small,
.abte-education-links small {
  color: var(--abte-copy);
  font-size: 12px;
  line-height: 1.45;
}

.abte-resource-search {
  position: relative;
  z-index: 4;
  margin-top: -32px;
}

.abte-search-panel {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: 48px;
  padding: 32px 36px;
  background: #fbfcfd;
  border: 1px solid var(--abte-line);
  border-top: 4px solid var(--abte-teal);
  box-shadow: 0 14px 42px rgba(16, 41, 68, .13);
}

.abte-search-panel .abte-eyebrow {
  margin-bottom: 5px;
}

.abte-search-panel h2 {
  margin: 0;
  font-family: var(--abte-serif);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.25;
}

.abte-search-panel form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.abte-search-panel form > svg {
  position: absolute;
  left: 16px;
  z-index: 1;
  width: 20px;
  color: #667381;
}

.abte-search-panel input {
  width: 100%;
  height: 56px;
  padding: 8px 14px 8px 48px;
  color: var(--abte-ink);
  background: white;
  border: 1px solid #cbd5df;
  border-radius: 3px 0 0 3px;
  font: inherit;
  font-size: 15px;
}

.abte-search-panel button {
  height: 56px;
  padding-inline: 23px;
  color: white;
  background: var(--abte-teal);
  border: 1px solid var(--abte-teal);
  border-radius: 0 3px 3px 0;
  font-weight: 800;
  cursor: pointer;
}

.abte-search-panel button:hover {
  background: var(--abte-teal-dark);
}

.abte-quick-links {
  padding: 58px 0 75px;
  background: white;
}

.abte-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--abte-line);
}

.abte-quick-grid > a {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 19px;
  border-right: 1px solid var(--abte-line);
  transition: background .18s ease;
}

.abte-quick-grid > a:last-child {
  border-right: 0;
}

.abte-quick-grid > a:hover {
  background: var(--abte-teal-pale);
}

.abte-icon-box {
  width: 42px;
  height: 42px;
  display: grid !important;
  place-items: center;
  color: var(--abte-teal-dark);
  background: var(--abte-teal-pale);
}

.abte-icon-box svg {
  width: 21px;
}

.abte-quick-grid small {
  margin-top: 4px;
}

.abte-section {
  padding-block: clamp(80px, 9vw, 128px);
}

.abte-section-heading h2,
.abte-public-copy h2,
.abte-education-copy h2,
.abte-about-copy h2,
.abte-contact-inner h2,
.abte-page-heading h1,
.abte-empty-state h1 {
  margin-bottom: 20px;
  font-family: var(--abte-serif);
  font-size: clamp(36px, 4vw, 57px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.abte-section-heading > p:not(.abte-eyebrow),
.abte-education-copy > p,
.abte-about-copy > p,
.abte-contact-inner > div > p:not(.abte-eyebrow) {
  color: var(--abte-copy);
  font-size: 16px;
  line-height: 1.75;
}

.abte-standards-section,
.abte-education-section {
  background: var(--abte-mist);
}

.abte-standards-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
}

.abte-standards-grid .abte-section-heading {
  position: sticky;
  top: 145px;
}

.abte-standards-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid #cbd5dc;
}

.abte-standards-list article:last-child {
  border-bottom: 1px solid #cbd5dc;
}

.abte-standards-list article > span {
  color: var(--abte-teal);
  font-family: var(--abte-serif);
  font-size: 27px;
}

.abte-standards-list h3 {
  margin-bottom: 8px;
  font-family: var(--abte-serif);
  font-size: 23px;
  line-height: 1.25;
}

.abte-standards-list p {
  margin: 0;
  color: var(--abte-copy);
  line-height: 1.7;
}

.abte-section-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 51px;
}

.abte-section-intro-row h2 {
  margin-bottom: 0;
}

.abte-section-intro-row > p {
  margin: 0;
  color: var(--abte-copy);
  line-height: 1.75;
}

.abte-pathway-grid,
.abte-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.abte-pathway-card {
  min-height: 448px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: white;
  border: 1px solid var(--abte-line);
  border-top: 4px solid var(--abte-teal);
  box-shadow: 0 13px 36px rgba(16, 41, 68, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.abte-pathway-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(16, 41, 68, .12);
}

.abte-pathway-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.abte-pathway-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--abte-navy);
}

.abte-pathway-icon svg {
  width: 25px;
}

.abte-pathway-label {
  color: var(--abte-teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.abte-pathway-card h3 {
  margin: 35px 0 14px;
  font-family: var(--abte-serif);
  font-size: 29px;
  line-height: 1.2;
}

.abte-pathway-card > p {
  margin-bottom: 26px;
  color: var(--abte-copy);
  line-height: 1.7;
}

.abte-pathway-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
  color: #31475b;
  background: var(--abte-mist);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.abte-pathway-detail svg {
  flex: 0 0 auto;
  width: 16px;
  color: var(--abte-teal);
}

.abte-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  color: var(--abte-teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.abte-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.abte-certification-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--abte-line);
  border-bottom: 1px solid var(--abte-line);
}

.abte-certification-steps div {
  min-height: 160px;
  display: grid;
  padding: 24px;
  border-right: 1px solid var(--abte-line);
}

.abte-certification-steps div:last-child {
  border-right: 0;
}

.abte-certification-steps span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: white;
  background: var(--abte-teal);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.abte-certification-steps strong {
  font-family: var(--abte-serif);
  font-size: 17px;
}

.abte-certification-steps small {
  margin-top: 4px;
  color: var(--abte-copy);
  line-height: 1.45;
}

.abte-public-section {
  color: white;
  background: linear-gradient(90deg, rgba(8,127,130,.12) 1px, transparent 1px), linear-gradient(rgba(8,127,130,.12) 1px, transparent 1px), #0d2944;
  background-size: 48px 48px;
}

.abte-public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  align-items: center;
  gap: clamp(64px, 9vw, 128px);
}

.abte-public-copy > p:not(.abte-eyebrow) {
  max-width: 610px;
  color: #d7e4ea;
  font-size: 17px;
  line-height: 1.75;
}

.abte-public-copy ul {
  display: grid;
  gap: 13px;
  margin: 29px 0 0;
  padding: 0;
  color: #edf5f7;
  list-style: none;
}

.abte-verify-card {
  padding: 36px;
  color: var(--abte-ink);
  background: white;
  border-top: 5px solid var(--abte-gold);
  box-shadow: 0 24px 60px rgba(3, 16, 29, .35);
}

.abte-verify-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.abte-verify-heading > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--abte-teal);
}

.abte-verify-heading svg {
  width: 26px;
}

.abte-verify-heading p {
  margin-bottom: 2px;
  color: var(--abte-teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.abte-verify-heading h3 {
  margin: 0;
  font-family: var(--abte-serif);
  font-size: 25px;
  line-height: 1.2;
}

.abte-verify-card > p {
  color: var(--abte-copy);
  font-size: 14px;
}

.abte-status-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid var(--abte-line);
  font-size: 12px !important;
}

.abte-status-note svg {
  width: 16px;
  color: var(--abte-teal);
}

.abte-education-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
  gap: clamp(64px, 8vw, 112px);
}

.abte-feature-resource {
  min-height: 496px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: white;
  box-shadow: 0 18px 55px rgba(16, 41, 68, .11);
}

.abte-feature-art {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 27px;
  color: white;
  background: linear-gradient(150deg, var(--abte-teal), var(--abte-navy));
}

.abte-feature-art > span {
  position: relative;
  z-index: 2;
  font-family: var(--abte-serif);
  font-size: 32px;
  letter-spacing: .15em;
}

.abte-feature-art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255,255,255,.38);
  stroke-width: 2;
}

.abte-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.abte-feature-copy h3 {
  margin-bottom: 18px;
  font-family: var(--abte-serif);
  font-size: clamp(29px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.15;
}

.abte-feature-copy > p:not(.abte-eyebrow) {
  color: var(--abte-copy);
  line-height: 1.7;
}

.abte-education-copy > p:not(.abte-eyebrow) {
  margin-bottom: 32px;
}

.abte-education-links {
  border-top: 1px solid #cbd5dc;
}

.abte-education-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding-block: 18px;
  border-bottom: 1px solid #cbd5dc;
}

.abte-education-links a > svg:first-child {
  width: 24px;
  color: var(--abte-teal);
}

.abte-updates-heading {
  align-items: center;
}

.abte-updates-heading > a {
  justify-self: end;
  margin-top: 0;
}

.abte-updates-grid article,
.abte-post-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--abte-line);
}

.abte-update-art {
  position: relative;
  overflow: hidden;
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: white;
}

.abte-update-art::after {
  content: "";
  position: absolute;
  width: 192px;
  height: 192px;
  right: -48px;
  top: -80px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255,255,255,.07), 0 0 0 50px rgba(255,255,255,.06);
}

.abte-update-art--1 { background: linear-gradient(135deg, #096e73, #102944); }
.abte-update-art--2 { background: linear-gradient(135deg, #3f5f78, #102944); }
.abte-update-art--3 { background: linear-gradient(135deg, #9b7430, #5a3f14); }

.abte-update-art span {
  position: relative;
  z-index: 1;
  font-family: var(--abte-serif);
  font-size: 37px;
}

.abte-update-copy,
.abte-post-card__copy {
  padding: 26px;
}

.abte-update-copy > p,
.abte-post-card__copy > p {
  margin-bottom: 10px;
  color: var(--abte-teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.abte-update-copy h3,
.abte-post-card h2 {
  margin-bottom: 13px;
  font-family: var(--abte-serif);
  font-size: 23px;
  line-height: 1.3;
}

.abte-update-copy > span,
.abte-post-card__copy > p:not(:first-child) {
  display: block;
  color: var(--abte-copy);
  font-size: 14px;
  line-height: 1.65;
}

.abte-about-section {
  padding-block: clamp(80px, 9vw, 120px);
  color: white;
  background: var(--abte-navy);
}

.abte-about-grid {
  display: grid;
  grid-template-columns: .45fr 1fr;
  align-items: center;
  gap: clamp(64px, 10vw, 144px);
}

.abte-about-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #dfeaf0;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.abte-seal--large {
  width: 136px;
  height: 136px;
  color: var(--abte-gold-light);
}

.abte-about-copy > p:not(.abte-eyebrow) {
  max-width: 768px;
  color: #d9e5eb;
}

.abte-about-links {
  gap: 32px;
}

.abte-about-links .abte-text-link {
  color: var(--abte-gold-light);
}

.abte-contact-section {
  padding-block: 69px;
  background: var(--abte-teal-pale);
  border-bottom: 1px solid #c7dedd;
}

.abte-contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}

.abte-contact-inner h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 48px);
}

.abte-contact-inner > div > p:not(.abte-eyebrow) {
  max-width: 768px;
  margin: 0;
}

.abte-site-footer {
  padding-top: 64px;
  color: #cbd8df;
  background: var(--abte-navy-deep);
}

.abte-footer-main {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, .7fr);
  gap: 48px;
  padding-bottom: 48px;
}

.abte-brand--footer {
  color: white;
}

.abte-brand--footer .abte-seal {
  color: var(--abte-gold-light);
}

.abte-footer-brand > p {
  max-width: 368px;
  margin: 19px 0 0;
  color: #aebfca;
  font-size: 14px;
}

.abte-footer-main h2 {
  margin-bottom: 16px;
  color: white;
  font-family: var(--abte-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.abte-footer-main > div:not(.abte-footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.abte-footer-main > div:not(.abte-footer-brand) a {
  color: #b9c8d1;
  font-size: 13px;
}

.abte-footer-main a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.abte-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-block: 21px 29px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.abte-footer-bottom p {
  max-width: 784px;
  margin: 0;
  color: #91a6b3;
  font-size: 11px;
  line-height: 1.55;
}

.abte-footer-bottom div {
  display: flex;
  gap: 19px;
  white-space: nowrap;
  font-size: 12px;
}

.abte-content-area {
  min-height: 55vh;
  padding-block: clamp(70px, 8vw, 110px);
  background: var(--abte-mist);
}

.abte-content-shell,
.abte-article {
  max-width: 1180px;
}

.abte-article {
  width: min(860px, calc(100% - 48px));
}

.abte-page-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.abte-page-heading h1 {
  margin-bottom: 0;
}

.abte-page-heading .search-form {
  display: flex;
  margin-top: 26px;
}

.abte-page-heading .search-field {
  min-height: 48px;
  padding: 8px 13px;
  border: 1px solid var(--abte-line);
}

.abte-page-heading .search-submit {
  padding-inline: 20px;
  color: white;
  background: var(--abte-teal);
  border: 0;
}

.abte-entry-content {
  padding: clamp(28px, 5vw, 60px);
  background: white;
  box-shadow: 0 15px 45px rgba(16, 41, 68, .08);
}

.abte-entry-content > *:first-child { margin-top: 0; }
.abte-entry-content > *:last-child { margin-bottom: 0; }
.abte-entry-content h2,
.abte-entry-content h3 { font-family: var(--abte-serif); }
.abte-entry-content h2 { margin-top: 2em; font-size: clamp(28px, 4vw, 38px); }
.abte-entry-content h3 { margin-top: 1.7em; font-size: 24px; }
.abte-entry-content a { color: var(--abte-teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.abte-entry-content blockquote { margin: 32px 0; padding: 24px 28px; border-left: 4px solid var(--abte-gold); background: var(--abte-teal-pale); }

.abte-featured-image {
  margin-bottom: 32px;
}

.abte-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abte-post-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.navigation.pagination {
  grid-column: 1 / -1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.page-numbers {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 7px 11px;
  background: white;
  border: 1px solid var(--abte-line);
}

.page-numbers.current {
  color: white;
  background: var(--abte-teal);
}

.abte-empty-state {
  max-width: 760px;
  text-align: center;
}

.abte-empty-state .abte-button {
  margin-top: 20px;
}

@media (max-width: 1120px) {
  .abte-menu-button { display: grid; }
  .abte-header-inner { position: relative; }
  .abte-primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: none;
    align-items: stretch;
    padding: 16px 24px 24px;
    background: white;
    border-bottom: 1px solid var(--abte-line);
    box-shadow: 0 14px 25px rgba(16,41,68,.12);
  }
  .abte-primary-nav.is-open { display: block; }
  .abte-nav-list { align-items: stretch; flex-direction: column; gap: 0; }
  .abte-nav-list > li > a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--abte-line); }
  .abte-nav-list > li:not(.abte-nav-verify) > a::after { display: none; }
  .abte-nav-verify a { justify-content: center; margin-top: 16px; border-bottom: 0 !important; }
  .abte-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr); gap: 48px; }
  .abte-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .abte-quick-grid > a:nth-child(2) { border-right: 0; }
  .abte-quick-grid > a:nth-child(-n+2) { border-bottom: 1px solid var(--abte-line); }
  .abte-footer-main { grid-template-columns: 1.5fr repeat(3, .7fr); gap: 32px; }
}

@media (max-width: 900px) {
  .abte-utility-inner > p { display: none; }
  .abte-utility-inner { justify-content: flex-end; }
  .abte-hero-grid,
  .abte-standards-grid,
  .abte-public-grid,
  .abte-education-grid,
  .abte-about-grid { grid-template-columns: 1fr; }
  .abte-hero-grid { min-height: auto; padding-block: 72px 80px; }
  .abte-start-card { max-width: 640px; }
  .abte-hero-pattern { inset: 45% 0 0; mask-image: linear-gradient(to bottom, transparent, black 35%); }
  .abte-search-panel { grid-template-columns: 1fr; gap: 24px; }
  .abte-standards-grid .abte-section-heading { position: static; }
  .abte-section-intro-row { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .abte-pathway-grid,
  .abte-updates-grid,
  .abte-post-grid { grid-template-columns: 1fr; }
  .abte-pathway-card { min-height: 0; }
  .abte-certification-steps { grid-template-columns: repeat(2, 1fr); }
  .abte-certification-steps div:nth-child(2) { border-right: 0; }
  .abte-certification-steps div:nth-child(-n+2) { border-bottom: 1px solid var(--abte-line); }
  .abte-public-grid,
  .abte-about-grid { gap: 48px; }
  .abte-verify-card { max-width: 672px; }
  .abte-education-grid { gap: 64px; }
  .abte-about-mark { align-items: flex-start; text-align: left; }
  .abte-contact-inner { grid-template-columns: 1fr; gap: 24px; }
  .abte-footer-main { grid-template-columns: repeat(3, 1fr); }
  .abte-footer-brand { grid-column: 1 / -1; margin-bottom: 16px; }
}

@media (max-width: 782px) {
  .admin-bar .abte-site-header { top: 46px; }
}

@media (max-width: 680px) {
  .abte-shell { width: min(100% - 32px, 1180px); }
  .abte-utility-bar { display: none; }
  .abte-header-inner { min-height: 84px; }
  .abte-seal { width: 51px; height: 51px; }
  .abte-brand-copy strong { font-size: 15px; }
  .abte-brand-copy span { font-size: 10px; }
  .abte-hero-grid { padding-block: 59px 72px; }
  .abte-hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .abte-mission-points { flex-direction: column; gap: 10px; }
  .abte-start-card { padding: 24px 22px 16px; }
  .abte-resource-search { margin-top: -24px; }
  .abte-search-panel { padding: 24px 20px; }
  .abte-search-panel form { grid-template-columns: 1fr; gap: 10px; }
  .abte-search-panel input,
  .abte-search-panel button { border-radius: 3px; }
  .abte-search-panel button { width: 100%; }
  .abte-quick-grid { grid-template-columns: 1fr; }
  .abte-quick-grid > a,
  .abte-quick-grid > a:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--abte-line); }
  .abte-quick-grid > a:last-child { border-bottom: 0; }
  .abte-section { padding-block: 72px; }
  .abte-standards-list article { grid-template-columns: 42px 1fr; gap: 13px; }
  .abte-standards-list article > span { font-size: 22px; }
  .abte-pathway-card { padding: 24px; }
  .abte-certification-steps { grid-template-columns: 1fr; }
  .abte-certification-steps div,
  .abte-certification-steps div:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--abte-line); }
  .abte-certification-steps div:last-child { border-bottom: 0; }
  .abte-verify-card { padding: 24px; }
  .abte-feature-resource { grid-template-columns: 1fr; }
  .abte-feature-art { min-height: 192px; }
  .abte-feature-copy { padding: 27px; }
  .abte-updates-heading > a { justify-self: start; }
  .abte-footer-main { grid-template-columns: 1fr 1fr; }
  .abte-footer-main > div:last-child { grid-column: 1 / -1; }
  .abte-footer-bottom { flex-direction: column; gap: 19px; }
  .abte-article { width: min(100% - 32px, 860px); }
}

@media (max-width: 430px) {
  .abte-brand-copy span { max-width: 190px; line-height: 1.2; }
  .abte-hero-actions { flex-direction: column; }
  .abte-hero-actions .abte-button { width: 100%; }
  .abte-start-card > a { grid-template-columns: auto 1fr; }
  .abte-start-card > a > svg:last-child { display: none; }
  .abte-footer-main { grid-template-columns: 1fr; }
  .abte-footer-main > div:last-child { grid-column: auto; }
  .abte-footer-bottom div { flex-wrap: wrap; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
