:root {
  --ink: #0c205c;
  --text: #20242d;
  --muted: #626977;
  --blue: #0b3f9d;
  --blue-2: #073487;
  --green: #4d8a58;
  --green-soft: #e6f0df;
  --lavender: #d8c9f4;
  --lavender-soft: #f1eafd;
  --blue-soft: #e8eefb;
  --gold-soft: #eee6d6;
  --line: rgba(12, 32, 92, 0.16);
  --paper: #fffdf9;
  --white: #fff;
  --shadow: 0 22px 70px rgba(18, 42, 89, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body,
button,
input {
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, 0.86);
  border-bottom: 1px solid rgba(12, 32, 92, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.hero,
.section,
.topic-strip,
.quote-diagram,
.footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.hero h1,
.center-heading h2,
.quote-panel h2,
.profile-copy h2,
.service-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-logo {
  width: clamp(190px, 17vw, 230px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.9rem;
  font-weight: 680;
}

.site-nav a {
  position: relative;
  color: var(--ink);
  padding: 8px 0;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
}

.outline-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 11px 22px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1;
}

.outline-cta svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.outline-cta:hover,
.button.secondary:hover {
  background: var(--blue-soft);
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.82fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 52px) 0 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 4.85vw, 4.45rem);
  font-weight: 500;
  line-height: 0.98;
}

.green-rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 18px 0 18px;
  background: var(--green);
}

.hero-text {
  max-width: 430px;
  color: #2d3340;
  font-size: clamp(1.12rem, 1.55vw, 1.32rem);
}

.location-note {
  margin-top: 10px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.credential {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.seal {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px currentColor, 0 4px 16px rgba(12, 32, 92, 0.08);
}

.seal svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seal-blue {
  color: var(--blue);
}

.seal-green {
  color: var(--green);
}

.credential strong,
.credential span {
  display: block;
}

.credential strong {
  color: #1f2734;
  font-size: 0.98rem;
  line-height: 1.18;
}

.credential span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 63, 157, 0.2);
}

.button:hover {
  background: var(--blue-2);
}

.button.secondary {
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.hero-portrait {
  position: relative;
  min-height: 574px;
  align-self: end;
  display: grid;
  align-items: end;
  justify-items: center;
  gap: 13px;
  overflow: visible;
}

.portrait-blob {
  position: absolute;
  inset: 0 0 72px 8%;
  z-index: 0;
  background: var(--lavender);
  border-radius: 48% 52% 0 0 / 35% 46% 0 0;
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: min(500px, 88%);
  height: 510px;
  object-fit: cover;
  object-position: 52% 24%;
  border-radius: 46% 46% 0 0 / 33% 33% 0 0;
  mix-blend-mode: normal;
}

.circle-line {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(12, 32, 92, 0.13);
  border-radius: 50%;
}

.circle-line.one {
  left: -5%;
  bottom: 18%;
  width: 330px;
  height: 330px;
}

.circle-line.two {
  right: -10%;
  bottom: 4%;
  width: 270px;
  height: 270px;
}

.care-stamp {
  position: relative;
  z-index: 4;
  width: min(500px, 88%);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  padding: 12px 22px;
  border: 1px solid rgba(11, 63, 157, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--blue);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(18, 42, 89, 0.1);
}

.care-stamp svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.topic-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 28px 0 26px;
  border-top: 1px solid rgba(12, 32, 92, 0.08);
  border-bottom: 1px solid rgba(12, 32, 92, 0.08);
}

.topic {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 18px;
  text-align: center;
}

.topic + .topic {
  border-left: 1px solid rgba(12, 32, 92, 0.16);
}

.topic-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.topic-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.topic-icon.lavender {
  background: var(--lavender-soft);
  color: #5f4bc4;
}

.topic-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.topic-icon.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.topic-icon.gold {
  background: var(--gold-soft);
  color: #8a6a32;
}

.topic p {
  color: #263042;
  font-size: 0.95rem;
  line-height: 1.2;
}

.section {
  padding: clamp(52px, 7vw, 82px) 0;
}

.center-heading {
  text-align: center;
  margin-bottom: 22px;
}

.center-heading span,
.section-kicker {
  display: block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.center-heading h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.03;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.service-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: 30px;
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-heading svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-heading h3 {
  margin: 0;
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1.05;
}

.service-heading.blue {
  color: var(--blue);
}

.service-heading.green {
  color: var(--green);
}

.service-heading.purple {
  color: #6b48bd;
}

.service-card p {
  min-height: 76px;
  color: #38404f;
  font-size: 0.98rem;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  object-fit: cover;
  border-radius: 10px;
}

.quote-diagram {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1fr);
  min-height: 380px;
}

.quote-panel {
  padding: clamp(40px, 6vw, 70px);
  background: linear-gradient(135deg, #eee5ff, #fbf7ff);
}

.quote-mark {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.7;
}

.quote-panel h2 {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--blue);
  font-size: clamp(2.05rem, 3.4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.quote-panel h2 em {
  font-style: italic;
}

.quote-panel p {
  max-width: 470px;
  color: #3c4350;
}

.podcast-card {
  width: min(470px, 100%);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 63, 157, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.podcast-card:hover {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(18, 42, 89, 0.08);
}

.podcast-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.podcast-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.podcast-card small,
.podcast-card strong {
  display: block;
}

.podcast-card small {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.podcast-card strong {
  margin-top: 3px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.diagram-panel {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  background: #fffbf4;
  overflow: hidden;
}

.diagram-panel::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(12, 32, 92, 0.22);
  border-radius: 50%;
}

.diagram-center {
  position: relative;
  z-index: 2;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.08;
  text-align: center;
}

.diagram-center span {
  display: block;
  font-size: 0.98rem;
}

.diagram-node {
  position: absolute;
  z-index: 3;
  max-width: 130px;
  color: #394252;
  font-size: 0.84rem;
  text-align: center;
}

.diagram-node::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px rgba(77, 138, 88, 0.25);
}

.diagram-node.n1 {
  left: 18%;
  top: 25%;
}

.diagram-node.n2 {
  right: 13%;
  top: 20%;
}

.diagram-node.n3 {
  right: 14%;
  bottom: 20%;
}

.diagram-node.n4 {
  bottom: 10%;
  left: 48%;
  transform: translateX(-50%);
}

.diagram-node.n5 {
  left: 8%;
  bottom: 24%;
}

.seo-resources {
  padding-top: clamp(46px, 6vw, 74px);
}

.resource-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-link-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.resource-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(18, 42, 89, 0.08);
}

.resource-link-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-link-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.08;
}

.resource-link-card p {
  color: #3f4654;
  font-size: 0.98rem;
}

.resource-link-card strong {
  margin-top: 6px;
  color: var(--blue);
  font-size: 0.94rem;
}

.profile-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.article-page {
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 201, 244, 0.5), transparent 28rem),
    radial-gradient(circle at 8% 20%, rgba(230, 240, 223, 0.7), transparent 24rem),
    var(--paper);
}

.article-shell {
  width: min(960px, calc(100% - 44px));
  margin: 0 auto;
}

.article-hero {
  padding: clamp(56px, 8vw, 92px) 0 clamp(34px, 5vw, 56px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
}

.article-hero h1,
.article-body h2,
.faq-section h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.article-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5.2vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.article-lead {
  max-width: 760px;
  margin-top: 24px;
  color: #2d3340;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(11, 63, 157, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
  padding-bottom: clamp(58px, 8vw, 92px);
}

.article-body {
  display: grid;
  gap: 30px;
}

.article-section {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.article-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.08;
}

.article-section h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.article-section p,
.article-section li {
  color: #353d4c;
  font-size: 1.02rem;
}

.article-section p + p {
  margin-top: 14px;
}

.article-section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-note {
  border-left: 4px solid var(--green);
  padding: 14px 18px;
  background: var(--green-soft);
}

.article-note strong {
  color: var(--ink);
}

.faq-section {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.06rem;
}

.article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.aside-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.aside-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.46rem;
  font-weight: 500;
  line-height: 1.08;
}

.aside-card p {
  color: #3f4654;
  font-size: 0.95rem;
}

.aside-links {
  display: grid;
  gap: 10px;
}

.aside-links a {
  color: var(--blue);
  font-weight: 720;
}

.profile-copy h2 {
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
}

.profile-copy p {
  max-width: 680px;
  color: #333b4b;
  font-size: 1.06rem;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.profile-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--lavender-soft);
}

.profile-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 28%;
}

.contact-box {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  display: grid;
  gap: 3px;
  color: var(--ink);
}

.contact-links strong {
  color: var(--blue);
  font-size: 0.96rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1060px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: clamp(220px, 24vw, 270px);
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-portrait {
    min-height: 520px;
  }

  .topic-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

  .topic:nth-child(4) {
    border-left: 0;
  }

  .service-cards,
  .resource-link-grid,
  .quote-diagram,
  .profile-contact,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .service-card + .service-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .nav-wrap,
  .hero,
  .section,
  .topic-strip,
  .quote-diagram,
  .footer {
    width: calc(100vw - 24px);
  }

  .nav-wrap {
    min-height: 0;
    padding: 14px 0;
    gap: 14px;
  }

  .brand-logo {
    width: clamp(142px, 42vw, 190px);
  }

  .outline-cta {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .site-nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.84rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 3.65rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-portrait {
    min-height: 500px;
  }

  .portrait-blob {
    inset: 0 0 70px 0;
  }

  .hero-portrait img {
    width: min(420px, 92%);
    height: 430px;
  }

  .care-stamp {
    width: min(420px, 94%);
    min-height: 58px;
    padding: 10px 14px;
    gap: 10px;
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .care-stamp svg {
    width: 27px;
    height: 27px;
  }

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

  .topic {
    padding: 0 10px;
  }

  .topic:nth-child(odd) {
    border-left: 0;
  }

  .topic:nth-child(4) {
    border-left: 1px solid rgba(12, 32, 92, 0.16);
  }

  .topic p {
    font-size: 0.86rem;
  }

  .service-card {
    padding: 22px;
  }

  .quote-panel {
    padding: 34px 24px;
  }

  .article-shell {
    width: calc(100vw - 24px);
  }

  .article-section,
  .aside-card {
    padding: 22px;
  }

  .diagram-panel {
    min-height: 430px;
  }

  .diagram-panel::before {
    width: 280px;
    height: 280px;
  }

  .diagram-center {
    width: 132px;
    height: 132px;
  }

  .diagram-node {
    max-width: 112px;
    font-size: 0.75rem;
  }

  .diagram-node::before {
    width: 42px;
    height: 42px;
  }

  .diagram-node.n1 {
    left: 7%;
  }

  .diagram-node.n2 {
    right: 5%;
  }

  .diagram-node.n3 {
    right: 4%;
  }

  .diagram-node.n5 {
    left: 3%;
  }
}
