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

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

body {
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  font-feature-settings: 'ss01', 'cv11';
}

:root {
  --pillar-i: #00aec7;
  --pillar-ii: #ffd900;
  --pillar-iii: #9dc52a;
  --pillar-iv: #e40050;
}

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

h1,
h2,
h3,
p,
li {
  overflow-wrap: break-word;
}

/* Type scale: 2 headings + 3 body sizes.
   Decorative sizes (hero, pillar numerals, giant pillar letters)
   stay inline and are not part of this scale. */
.t-h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.t-h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.t-lead {
  font-size: 1.25rem;
  line-height: 1.5;
}
.t-body {
  font-size: 1.0625rem;
  line-height: 1.65;
}
.t-caption {
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Body prose used inside principle sections */
.prose-body,
.prose-body p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1c1c1f;
}
.prose-body p + p {
  margin-top: 1.1em;
}
@media (min-width: 768px) {
  .prose-body,
  .prose-body p {
    font-size: 1.2rem;
    line-height: 1.78;
  }
}

.prose-lead {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.55;
  color: #1c1c1f;
  font-weight: 500;
}
@media (min-width: 768px) {
  .prose-lead {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* Why it matters: left rule, no panel */
.why-it-matters {
  border-left: 3px solid var(--pillar, #64d46c);
  padding: 0.25rem 0 0.25rem 1.25rem;
}

/* Entails list: typography, no panel */
.entails-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.entails-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1c1c1f;
}
.entails-list li + li {
  margin-top: 1rem;
}
.entails-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.6rem;
  height: 2px;
  background: var(--pillar, #041f60);
}
@media (min-width: 768px) {
  .entails-list li {
    font-size: 1.125rem;
  }
}

/* In-practice prompts: light warm block, no border */
.practice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.practice-list li {
  position: relative;
  padding-left: 2.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333332;
}
.practice-list li + li {
  margin-top: 0.85rem;
}
.practice-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: -0.05em;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(4, 31, 96, 0.08);
  color: #041f60;
  font-weight: 800;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}

/* Pillar nav active marker */
.nav-link {
  position: relative;
  transition: color 0.18s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  height: 3px;
  width: 0;
  transform: translateX(-50%);
  background: var(--accent, #041f60);
  border-radius: 999px;
  transition: width 0.18s ease;
}
.nav-link.is-active {
  color: #041f60;
}
.nav-link.is-active::after {
  width: 1.5rem;
}
.nav-link:hover {
  color: #041f60;
}

.hover\:text-wlc-navy:hover {
  color: #041f60;
}

.hover\:text-wlc-ink:hover {
  color: #1c1c1f;
}

.hover\:bg-wlc-warm\/60:hover {
  background-color: rgb(245 241 234 / 0.6);
}

.hover\:bg-wlc-ink:hover {
  background-color: #1c1c1f;
}

/* Section divider rule */
.rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(28, 28, 31, 0.12) 12%,
    rgba(28, 28, 31, 0.12) 88%,
    transparent
  );
}

/* Pillar accent number — decorative */
.pillar-numeral {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (min-width: 768px) {
  .pillar-numeral {
    font-size: 7rem;
  }
}

.display-tight {
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.pillar-principle-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(28, 28, 31, 0.1);
}
@media (min-width: 768px) {
  .pillar-principle-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.pillar-principle-links a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0.9rem;
  border-bottom: 1px solid rgba(28, 28, 31, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: #1c1c1f;
  transition: background-color 0.25s ease;
}
@media (min-width: 768px) {
  .pillar-principle-links a {
    border-right: 1px solid rgba(28, 28, 31, 0.1);
    padding: 1.2rem 1rem;
  }
  .pillar-principle-links li:nth-child(2n) > a {
    border-right: 0;
  }
}
.pillar-principle-links a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--pillar, #041f60);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pillar-principle-links a:hover {
  background: rgba(255, 255, 255, 0.5);
}
.pillar-principle-links a:hover::before {
  transform: scaleX(1);
}
.pillar-principle-links a:hover .pillar-principle-link__num {
  transform: translateY(-3px);
}
.pillar-principle-link__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-size: 2.4rem;
  -webkit-text-stroke: 1.5px var(--pillar, #041f60);
  color: transparent;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-width: 2.2ch;
}
.pillar-principle-link__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
@media (min-width: 768px) {
  .pillar-principle-link__num {
    font-size: 2.8rem;
  }
  .pillar-principle-link__name {
    font-size: 1.05rem;
  }
}

.principle-detail-cta {
  text-decoration: underline;
  text-decoration-color: var(--pillar, #041f60);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.ask-input {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(28, 28, 31, 0.25);
  padding: 0.85rem 0.25rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.18s ease;
  width: 100%;
}
.ask-input:focus {
  border-bottom-color: #041f60;
}
.ask-submit {
  background: transparent;
  color: #041f60;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 0.25rem;
  white-space: nowrap;
  transition: color 0.18s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
.ask-submit:hover {
  color: #1c1c1f;
}

/* Hero: four large pillar entries dominate the top of the page,
   the prose lives below the fold. */
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5b5b5e;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #1c1c1f;
}
.hero-pillar-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(28, 28, 31, 0.1);
  border-bottom: 1px solid rgba(28, 28, 31, 0.1);
}
@media (min-width: 768px) {
  .hero-pillar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero-pillar {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 0.65rem;
  padding: 1.85rem 1.4rem;
  min-height: 0;
  border-bottom: 1px solid rgba(28, 28, 31, 0.1);
  overflow: hidden;
  transition: background-color 0.25s ease;
  opacity: 0;
  transform: translateY(0.4em);
  animation: hero-pillar-in 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--d, 0ms);
}
.hero-pillar:last-child {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .hero-pillar {
    padding: 2.1rem 1.45rem 1.95rem;
    border-bottom: 0;
    border-right: 1px solid rgba(28, 28, 31, 0.1);
  }
  .hero-pillar:last-child {
    border-right: 0;
  }
}
.hero-pillar::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--col, #000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-pillar:hover {
  background: rgba(245, 241, 234, 0.6);
}
.hero-pillar:hover::before {
  transform: scaleX(1);
}
.hero-pillar:hover .hero-pillar__num {
  transform: translateY(-4px);
}
@keyframes hero-pillar-in {
  0% {
    opacity: 0;
    transform: translateY(0.6em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-pillar__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-size: clamp(5rem, 12vw, 9rem);
  -webkit-text-stroke: 2px var(--col, #000);
  color: transparent;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-pillar__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.15rem, 2.6vw, 1.38rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #1c1c1f;
}
.hero-aside {
  max-width: 56rem;
  margin-top: 4rem;
}
.hero-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #5b5b5e;
}
.hero-cue::after {
  content: '↓';
  animation: hero-cue-bounce 1.8s ease-in-out infinite;
}
@keyframes hero-cue-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pillar {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-cue::after {
    animation: none;
  }
}

.contact-cta {
  display: inline-flex;
  margin-top: 1rem;
  border-radius: 999px;
  background: #041f60;
  color: #fffdfa;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  padding: 0.95rem 1.2rem;
  text-transform: uppercase;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}
.contact-cta:hover {
  background: #1c1c1f;
  transform: translateY(-1px);
}
.contact-cta:focus-visible {
  outline: 3px solid var(--pillar, #00aec7);
  outline-offset: 3px;
}

.chat-modal[hidden] {
  display: none;
}
.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  min-height: 100dvh;
  padding: 0;
}
.chat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 31, 0.62);
  backdrop-filter: blur(10px);
}
.chat-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: #fffdfa;
  color: #1c1c1f;
}
.chat-modal__log {
  min-height: 0;
  overflow-y: auto;
  background: rgb(245 241 234 / 0.55);
  padding: 1rem;
}
.chat-modal__form {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  border-top: 1px solid rgba(28, 28, 31, 0.12);
  background: #fffdfa;
  padding: 1rem;
}
.chat-modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  min-height: 100dvh;
  padding: 0;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 31, 0.62);
  backdrop-filter: blur(10px);
}
.contact-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: #fffdfa;
  color: #1c1c1f;
}
.contact-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(28, 28, 31, 0.12);
  padding: 1.25rem;
}
.contact-modal__close {
  border-radius: 999px;
  background: #f5f1ea;
  color: #1c1c1f;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 0.55rem 1rem;
  text-transform: uppercase;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}
.contact-modal__close:hover {
  background: #1c1c1f;
  color: #fffdfa;
}
.contact-modal__form {
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem;
}
.contact-modal__grid {
  display: grid;
  gap: 1rem;
}
.contact-field {
  display: block;
  margin-top: 1rem;
}
.contact-field:first-child,
.contact-modal__grid .contact-field {
  margin-top: 0;
}
.contact-field span {
  display: block;
  color: #55555a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  margin-top: 0.5rem;
  border: 0;
  border-radius: 1rem;
  background: rgb(245 241 234 / 0.72);
  color: #1c1c1f;
  font: inherit;
  line-height: 1.5;
  outline: none;
  padding: 0.9rem 1rem;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}
.contact-field textarea {
  min-height: 10rem;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  background: #f5f1ea;
  box-shadow: 0 0 0 3px rgba(4, 31, 96, 0.14);
}
.contact-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}
.contact-modal__status {
  min-height: 1.4rem;
  color: #55555a;
  font-size: 0.92rem;
  line-height: 1.45;
}
.contact-modal__status[data-kind='success'] {
  color: #5e7f00;
}
.contact-modal__status[data-kind='warning'] {
  color: #8a6c00;
}
.contact-modal__status[data-kind='error'] {
  color: #e40050;
}
.contact-submit {
  align-self: flex-start;
  border-radius: 999px;
  background: #041f60;
  color: #fffdfa;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  transition:
    background-color 0.18s ease,
    opacity 0.18s ease;
}
.contact-submit:hover {
  background: #1c1c1f;
}
.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.contact-modal-open {
  overflow: hidden;
}

.chat-markdown {
  line-height: 1.65;
}
.chat-markdown > * + * {
  margin-top: 0.8rem;
}
.chat-markdown p,
.chat-markdown ul,
.chat-markdown ol,
.chat-markdown blockquote,
.chat-markdown pre {
  margin-bottom: 0;
}
.chat-markdown ul,
.chat-markdown ol {
  padding-left: 1.25rem;
}
.chat-markdown ul {
  list-style: disc;
}
.chat-markdown ol {
  list-style: decimal;
}
.chat-markdown li + li {
  margin-top: 0.35rem;
}
.chat-markdown a {
  color: #041f60;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}
.chat-markdown code {
  border-radius: 0.35rem;
  background: rgba(28, 28, 31, 0.08);
  padding: 0.1rem 0.3rem;
  font-size: 0.88em;
}
.chat-markdown pre {
  overflow-x: auto;
  border-radius: 0.9rem;
  background: #1c1c1f;
  padding: 0.9rem 1rem;
  color: #fffdfa;
}
.chat-markdown pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
.chat-markdown blockquote {
  border-left: 4px solid #00a9e0;
  padding-left: 0.9rem;
  color: #4a4a4f;
}
.chat-markdown h1,
.chat-markdown h2,
.chat-markdown h3,
.chat-markdown h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.15;
}
.chat-markdown h1 {
  font-size: 1.25rem;
}
.chat-markdown h2 {
  font-size: 1.12rem;
}
.chat-markdown h3,
.chat-markdown h4 {
  font-size: 1rem;
}
.chat-markdown sup {
  font-size: 0.72em;
  line-height: 0;
  vertical-align: super;
  margin-left: 0.1em;
}
.chat-markdown sup a {
  font-weight: 700;
  text-decoration: none;
  padding: 0 0.2em;
  border-radius: 0.3rem;
  background: rgba(4, 31, 96, 0.08);
}
.chat-markdown sup a:hover {
  background: rgba(4, 31, 96, 0.18);
}
.chat-markdown .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;
}
.chat-markdown .footnotes {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(28, 28, 31, 0.12);
  font-size: 0.85rem;
  color: #4a4a4f;
}
.chat-markdown .footnotes ol {
  padding-left: 1.5rem;
}
.chat-markdown .footnotes li {
  margin-top: 0.35rem;
}
.chat-markdown .footnotes li:first-child {
  margin-top: 0;
}
.chat-markdown .footnotes li:target {
  background: rgba(0, 169, 224, 0.12);
  border-radius: 0.4rem;
}
.chat-markdown .footnotes a[aria-label^='Back to reference'] {
  margin-left: 0.25rem;
  text-decoration: none;
  font-weight: 400;
}

@media (min-width: 768px) {
  .contact-modal {
    place-items: center;
    padding: 2rem;
  }
  .contact-modal__panel {
    width: min(52rem, 100%);
    min-height: 0;
    max-height: calc(100dvh - 4rem);
    border-radius: 1.5rem;
    box-shadow: 0 30px 90px rgb(0 0 0 / 0.28);
  }
  .contact-modal__header,
  .contact-modal__form {
    padding: 1.5rem;
  }
  .contact-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-modal__actions {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  .chat-modal {
    place-items: center;
    padding: 2rem;
  }
  .chat-modal__panel {
    width: min(68rem, 100%);
    min-height: 0;
    height: min(48rem, calc(100dvh - 4rem));
    border-radius: 1.5rem;
    box-shadow: 0 30px 90px rgb(0 0 0 / 0.28);
  }
  .chat-modal__log {
    padding: 1.5rem;
  }
  .chat-modal__form {
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
}

/* Source-document panel: surfaces the underlying PDF on detail pages. */
.source-doc {
  --source-accent: var(--pillar, #041f60);
  border-left: 3px solid var(--source-accent);
  background: rgb(245 241 234 / 0.55);
  padding: 1.4rem 1.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
}
.source-doc__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--source-accent);
}
.source-doc__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #1c1c1f;
  margin-top: 0.5rem;
}
.source-doc__meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #5b5b5e;
  margin-top: 0.35rem;
}
.source-doc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.source-doc__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.source-doc__btn--primary {
  background: #041f60;
  color: #ffffff;
}
.source-doc__btn--primary:hover {
  background: #1c1c1f;
}
.source-doc__btn--ghost {
  border: 1.5px solid rgba(4, 31, 96, 0.35);
  color: #041f60;
  background: transparent;
}
.source-doc__btn--ghost:hover {
  border-color: #041f60;
  background: rgba(4, 31, 96, 0.06);
}
@media (min-width: 768px) {
  .source-doc {
    padding: 1.6rem 1.85rem;
  }
  .source-doc__title {
    font-size: 1.25rem;
  }
}

/* Related practical guides: list of cross-referenced practical PDFs. */
.related-guides {
  border-top: 1px solid rgba(28, 28, 31, 0.1);
  padding-top: 1.5rem;
}
.related-guides__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pillar, #041f60);
}
.related-guides__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.related-guides__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(28, 28, 31, 0.1);
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.5);
  text-decoration: none;
  color: #1c1c1f;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.related-guides__item:hover {
  border-color: var(--pillar, #041f60);
  background: rgb(255 255 255 / 0.85);
}
.related-guides__icon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(4, 31, 96, 0.08);
  color: #041f60;
}
.related-guides__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.35;
}
.related-guides__arrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--pillar, #041f60);
}
