:root {
  --bg: #f7f7f3;
  --surface: #ffffff;
  --ink: #121a23;
  --muted: #475468;
  --line: #d5dde6;
  --brand: #0d3b66;
  --brand-dark: #0a2c4a;
  --accent: #b8a06a;
  --max: 1160px;
  --space-xs: 0.5rem;
  --space-sm: 0.8rem;
  --space-md: 1.1rem;
  --space-lg: 1.8rem;
  --space-xl: 3rem;
  --space-2xl: 4.25rem;
  --radius: 12px;
  --shadow: 0 10px 24px rgba(10, 44, 74, 0.08);
}

* {
  box-sizing: border-box;
}

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

section[id] {
  scroll-margin-top: 6.2rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.58;
  letter-spacing: -0.005em;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 160, 106, 0.12), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(13, 59, 102, 0.1), transparent 35%),
    var(--bg);
}

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

h1,
h2,
h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
  color: #0d1f33;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
}

.hero-copy-overlay h1,
main > section > .container > h2,
.footer-brand {
  font-family: "Spectral", Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

p {
  margin: 0 0 var(--space-md);
  color: var(--ink);
}

a {
  color: var(--brand);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: var(--space-sm);
  z-index: 1000;
}

.skip-link:focus {
  left: var(--space-sm);
  top: var(--space-sm);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: none;
}

.section-pad {
  padding: var(--space-2xl) 0;
}

[data-include="header"] {
  display: block;
  min-height: 86px;
}

.site-header {
  position: sticky;
  top: 0.65rem;
  z-index: 60;
  border-top: 1px solid #d7e0ea;
  border-bottom: 1px solid #d7e0ea;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(9, 40, 68, 0.14);
  width: 100%;
  margin: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: 4.65rem;
  padding: 0.28rem 0.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.24rem 0.48rem;
  box-shadow: none;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.brand img {
  width: clamp(150px, 21vw, 230px);
  border-radius: 8px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
}

.primary-nav {
  position: absolute;
  inset: 4.95rem 0.45rem auto 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem;
  display: none;
  box-shadow: var(--shadow);
}

.primary-nav.open {
  display: grid;
  gap: 0.3rem;
}

.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.16rem 0.34rem;
  border-radius: 6px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-nav .nav-briefing-button {
  background: #0d3b66;
  color: #fff;
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-weight: 700;
}

.primary-nav .nav-briefing-button:hover {
  background: #1a4d7d;
  color: #fff;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: rgba(13, 59, 102, 0.1);
  color: var(--brand-dark);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-link img {
  display: block;
}

.social-link-header img {
  border-radius: 4px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: var(--space-sm);
}

.hero {
  padding: 0;
}

.journal-page .hero.section-pad {
  padding-top: calc(var(--space-2xl) + 1rem);
}

.hero-shell {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
}

.hero-copy {
  padding-top: clamp(1.4rem, 3.5vw, 4.5rem);
  padding-right: clamp(1.2rem, 3vw, 3rem);
  padding-bottom: clamp(1.4rem, 3.5vw, 4.5rem);
  padding-left: max(1rem, calc((100vw - var(--max)) / 2 + 1rem));
  max-width: 760px;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #1f3144;
}

.hero-image-wrap {
  margin: 0;
  overflow: hidden;
  min-height: calc(100vh - 5rem);
  min-height: calc(100svh - 5rem);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 5rem);
  min-height: calc(100svh - 5rem);
  object-fit: cover;
  object-position: center;
}

.hero-copy-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(90deg, rgba(10, 46, 88, 0.82) 0%, rgba(10, 46, 88, 0.62) 42%, rgba(10, 46, 88, 0.28) 72%, rgba(10, 46, 88, 0.1) 100%);
  animation: heroFadeIn 720ms ease both;
}

.hero-copy-overlay h1,
.hero-copy-overlay p,
.hero-copy-overlay .eyebrow {
  color: #f3f8ff;
}

.hero-copy-overlay .button {
  background: #f3f8ff;
  color: #0d2f4f;
}

.hero-copy-overlay .button:hover {
  background: #dbe9f9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: var(--space-sm);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.button:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(9, 40, 68, 0.22);
}

.button-light {
  background: #fff;
  color: var(--brand-dark);
}

.tone {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(229, 237, 244, 0.6));
}

.outcomes-grid,
.cards-grid,
.clients-grid,
.about-grid {
  display: grid;
  gap: var(--space-md);
}

.outcomes-grid article,
.card,
.clients-grid article,
.about-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: 0 4px 12px rgba(13, 59, 102, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.client-segment-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.idea-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto 0.65rem;
}

.card-subhead {
  color: var(--muted);
  margin-top: -0.4rem;
}

ul {
  padding-left: 1.1rem;
  margin: 0;
}

li {
  margin-bottom: var(--space-xs);
}

.plain-list {
  list-style: none;
  padding-left: 0;
}

.cta {
  background: linear-gradient(150deg, #0d3b66, #092844);
  color: #f4f8fc;
}

.cta h2,
.cta p,
.cta .eyebrow {
  color: #f4f8fc;
}

.journal {
  border-top: 1px solid var(--line);
}

.text-link {
  font-weight: 600;
}

.journal-controls {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.journal-control {
  display: grid;
  gap: 0.35rem;
}

.journal-control span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3b4c;
}

.journal-control input,
.journal-control select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.58rem 0.7rem;
  font: inherit;
  background: #fff;
}

.journal-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #35506d;
  margin: 0 0 0.45rem;
}

.related-posts {
  margin-top: 1.8rem;
}

.related-posts h3 {
  margin-bottom: 0.9rem;
}

.site-footer {
  border-top: 1px solid #d5dde6;
  background: #f5f8fc;
  color: #1f3044;
}

.mobile-briefing-cta {
  display: none;
}

.footer-wrap {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  .nav-wrap {
    min-height: 4.5rem;
    gap: 0.5rem;
  }

  .brand {
    margin-bottom: 0;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.22rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-left: auto;
  }

  .hero-copy-overlay {
    width: min(68%, 820px);
  }

  .outcomes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid,
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .journal-controls {
    grid-template-columns: 1fr 220px;
    align-items: end;
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: 4.3rem;
  }

  .brand {
    margin-bottom: 0;
    padding: 0.16rem 0.3rem;
  }

  .brand img {
    width: clamp(130px, 40vw, 188px);
  }

  html {
    scroll-padding-top: 4.8rem;
  }

  section[id] {
    scroll-margin-top: 5.3rem;
  }

  .section-pad {
    padding: 3.1rem 0;
  }

  .hero-copy {
    padding: 1.2rem 1rem 1.6rem;
    max-width: 100%;
  }

  .hero-copy-overlay {
    background: linear-gradient(180deg, rgba(10, 46, 88, 0.82) 0%, rgba(10, 46, 88, 0.62) 55%, rgba(10, 46, 88, 0.25) 100%);
  }

  .hero-copy-overlay h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.14;
  }

  .lead {
    font-size: 1.03rem;
    line-height: 1.5;
  }

  .card,
  .clients-grid article,
  .outcomes-grid article {
    padding: 1rem;
  }

  .touch-button {
    font-size: 1.15rem;
    padding: 0.72rem 0.9rem;
  }

  .mobile-briefing-cta {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.7rem;
    z-index: 85;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    padding: 0.78rem 1rem;
    color: #fff;
    background: #0d3b66;
    box-shadow: 0 12px 24px rgba(9, 40, 68, 0.28);
  }
}

@media (min-width: 1080px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .people-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .people-grid .person-card:nth-last-child(2) {
    grid-column: 2;
  }

  .people-grid .person-card:last-child {
    grid-column: 3;
  }
}

.people-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.person-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  box-shadow: 0 4px 12px rgba(13, 59, 102, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.35rem;
}

.person-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.45rem;
}

.person-card h3 span {
  display: block;
}

.person-card h3 .degree {
  display: inline;
  font-size: 0.72em;
}

.person-name-hidden {
  visibility: hidden;
}

.person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 0.85rem;
  object-fit: cover;
  border: 4px solid #edf2f8;
}

.person-photo-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d6e0ec, #f3f7fb);
  color: #35506d;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.person-card .role {
  color: var(--muted);
  font-weight: 600;
  margin-top: -0.45rem;
}

.person-card .bio {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #2f3d4f;
}

.bio-read-more {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bio-read-more:hover {
  text-decoration: underline;
}

.card-linkedin {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.card-linkedin img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.card-linkedin:hover {
  text-decoration: underline;
}

.card-linkedin-muted {
  color: #6a7787;
  font-weight: 500;
}

.person-divider {
  border: 0;
  border-top: 1px solid var(--line);
  width: 120px;
  margin: 0.9rem auto 1rem;
}

.person-link {
  display: inline-flex;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.person-link:hover {
  background: #0f1720;
  color: #fff;
  transform: translateY(-1px);
}

.person-card-profile {
  padding: 2rem;
}

.person-photo-large {
  width: 210px;
  height: 210px;
}

.person-card-profile .bio {
  text-align: justify;
  margin-bottom: 1rem;
}

.muted-note {
  color: var(--muted);
}

.post-byline {
  margin: 0.45rem 0 0;
  color: #4a5a6e;
  font-size: 0.95rem;
  font-weight: 600;
}

.post-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg);
  max-width: 78ch;
  margin: 0 auto;
}

.post-content img {
  border-radius: 8px;
  margin: 1rem auto;
}

.journal-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.journal-card-image-contain {
  object-fit: contain;
  background: #f5f7fa;
  padding: 0.4rem;
}

.journal-title-link {
  color: inherit;
  text-decoration: none;
}

.journal-title-link:hover {
  text-decoration: underline;
}

.journal-date {
  margin: -0.25rem 0 0.65rem;
  color: #4a5a6e;
  font-size: 0.9rem;
  font-weight: 600;
}

.post-featured-image {
  width: 100%;
  border-radius: 12px;
  margin: 0 0 1.1rem;
  object-fit: cover;
}

.post-featured-image-contain {
  object-fit: contain;
  background: #f5f7fa;
  max-height: 520px;
  padding: 0.5rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 1.4rem;
}

.post-content p,
.post-content li {
  color: var(--ink);
  line-height: 1.72;
}

.post-content p {
  margin-bottom: 1.35rem;
}

.post-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.share-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #c2cfdf;
  background: #fff;
  color: #17324e;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.42rem 0.78rem;
}

.share-link:hover {
  border-color: #8ea6c2;
  background: #f5f8fc;
}

.post-pagination {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.8rem;
}

.post-nav-link {
  text-decoration: none;
  display: grid;
  gap: 0.18rem;
  border: 1px solid #cfd9e7;
  border-radius: 8px;
  padding: 0.72rem 0.85rem;
  color: #17324e;
  background: #fff;
}

.post-nav-link:hover {
  border-color: #9cb2cc;
  background: #f7fafe;
}

.post-nav-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #496383;
}

.post-nav-link-disabled {
  opacity: 0.58;
  pointer-events: none;
}

@media (min-width: 860px) {
  .post-pagination {
    grid-template-columns: 1fr 1fr;
  }
}

body.modal-open {
  overflow: hidden;
}

.contact-float {
  position: fixed;
  right: max(1rem, calc((100vw - var(--max)) / 2 + 1rem));
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 700;
  z-index: 70;
}

.contact-float:hover {
  background: #000;
}

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 16, 0.5);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 90;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal-panel {
  width: min(100%, 560px);
  max-height: 92vh;
  overflow: auto;
  background: #e5e5e5;
  border: 1px solid #d0d0d0;
  padding: 1.1rem;
  position: relative;
}

.contact-modal-panel h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin-bottom: 0.45rem;
}

.contact-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 1px solid #111;
  background: #fff;
  padding: 0.25rem 0.5rem;
  font: inherit;
}

.contact-helper {
  color: #6e6e6e;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #1d1d1d;
  background: transparent;
  padding: 0.58rem 0.66rem;
  font: inherit;
  color: #111;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2b57ff;
  box-shadow: 0 0 0 4px rgba(43, 87, 255, 0.35);
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.bio-page .section-pad {
  padding-top: 2.25rem;
}

.bio-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.bio-main .role {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #4c5663;
  font-weight: 600;
  font-size: 1rem;
}

.bio-main .bio {
  text-align: left;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.58;
  color: #37414d;
  margin-bottom: 1.1rem;
}

.bio-main h1 {
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.16;
  margin-bottom: 0.35rem;
}

.bio-rule {
  border: 0;
  border-top: 2px solid #2a2f36;
  margin: 1rem 0 1.2rem;
}

.bio-kicker {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  font-weight: 700;
  color: #121a23;
  margin-bottom: 0.75rem;
}

.bio-side {
  position: sticky;
  top: 6.2rem;
}

.touch-button {
  width: 100%;
  border: 0;
  background: #2f53ea;
  color: #fff;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.touch-button:hover {
  background: #2745c5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 69, 197, 0.35);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 980px) {
  .bio-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 3rem;
  }
}

.footer-grid {
  display: grid;
  gap: 1.1rem 2rem;
  padding: 2rem 0;
  align-items: start;
}

.footer-brand {
  margin: 0 0 0.35rem;
  color: #10243a;
  font-family: "Spectral", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  color: #4e6278;
  max-width: 40ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.footer-links a {
  color: #294460;
  text-decoration: none;
  font-size: 0.98rem;
}

.footer-links .footer-briefing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  background: var(--brand-dark);
  border: 1px solid var(--brand-dark);
  color: #fff;
  font-weight: 700;
}

.footer-links a:hover {
  color: #10243a;
  text-decoration: underline;
}

.footer-links .footer-briefing-button:hover {
  background: #1a4d7d;
  border-color: #1a4d7d;
  color: #fff;
  text-decoration: none;
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.footer-legal-links a {
  color: #294460;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-legal-links a:hover {
  color: #10243a;
  text-decoration: underline;
}

.footer-social {
  justify-self: start;
}

.social-link-footer img {
  border-radius: 4px;
}

.footer-legal {
  margin: 0;
  color: #5a6f86;
}

@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr auto;
    grid-template-areas:
      "brand links social"
      "meta meta social";
  }

  .footer-brand-block {
    grid-area: brand;
  }

  .footer-links {
    grid-area: links;
    justify-content: flex-start;
  }

  .footer-meta {
    grid-area: meta;
  }

  .footer-social {
    grid-area: social;
    justify-self: end;
    align-self: start;
  }
}

.linkedin-link {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #0a66c2;
  font-weight: 600;
}

.linkedin-link img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.linkedin-link:hover {
  text-decoration: underline;
}

.person-card-cta {
  margin: 1.35rem auto 0;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #000;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  border: 1px solid #000;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  margin-top: auto;
}

.person-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  background: #111;
}

.person-card-cta-disabled {
  opacity: 0.42;
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}

/* Non-clickable button variants should never "lift" on hover. */
.person-card-cta-disabled:hover,
.person-card-cta.person-card-cta-disabled:hover,
.button[aria-disabled="true"]:hover,
.button:disabled:hover {
  transform: none;
  box-shadow: none;
}

.bio-main {
  text-align: left;
}

.bio-main .person-photo-large {
  margin: 0 0 1.05rem;
  border-width: 3px;
}
