:root {
  --air-wda-blue: #20505f;
  --air-wda-blue-dark: #123743;
  --air-wda-gold: #c47f17;
  --air-wda-ink: #17313a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f2f6f8;
  color: var(--air-wda-ink);
  display: flex;
  flex-direction: column;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  user-select: text;
}

.transition-header {
  min-height: 4.5rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f2f6f8;
  background: #ffffff;
}

.transition-header > img {
  height: 1.35rem;
  width: auto;
}

.transition-page {
  width: min(1100px, calc(100% - 2.5rem));
  margin: auto;
  padding: clamp(3.5rem, 9vh, 7rem) 0 clamp(2.5rem, 7vh, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.transition-page p {
  margin-left: 0;
  margin-right: 0;
}

.transition-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--air-wda-blue);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--air-wda-blue-dark);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.lead {
  margin: 1.5rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 650;
  line-height: 1.45;
}

.body-copy {
  margin: 1rem 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

.reporting-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  margin-top: 2rem;
  padding: 0.85rem 1.35rem;
  border: 2px solid var(--air-wda-blue);
  background: var(--air-wda-blue);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.reporting-cta:hover {
  background: var(--air-wda-blue-dark);
  border-color: var(--air-wda-blue-dark);
  transform: translateY(-2px);
}

.reporting-cta:focus-visible {
  outline: 3px solid var(--air-wda-gold);
  outline-offset: 3px;
}

.update-card {
  border-top: 5px solid var(--air-wda-gold);
  background: #ffffff;
  box-shadow: 0 9px 24px rgb(32 80 95 / 14%);
  padding: 1.75rem;
}

.update-card h2 {
  margin: 0;
  color: var(--air-wda-blue-dark);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.update-card ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.update-card li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-top: 1px solid #d5e2e6;
  font-size: 1rem;
  line-height: 1.35;
}

.update-card li::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0.25rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--air-wda-gold);
}

@media (max-width: 720px) {
  .transition-header {
    min-height: 4rem;
  }

  .transition-page {
    width: min(100% - 2rem, 560px);
    padding-top: 3rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .reporting-cta {
    display: flex;
    width: 100%;
  }
}
