/* Isolated profession illustrations on the comparison's continuous midnight canvas. */
.review.theme-v4 .section.na-section {
  --na-night: #0b0e28;
  --na-ink: #f5f1ed;
  --na-accent: #b8a8f3;
  color: var(--na-ink);
  background: var(--na-night);
  padding-block: 48px 66px;
  container-type: inline-size;
}
.review.theme-v4 .section.na-section > .wrap {
  inline-size: min(1252px, calc(100% - 112px));
  padding-block-end: 0;
  border: 0;
}
.na-section .na-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-block-end: 0;
}
.na-section .na-kicker {
  font: 500 13px/1.6 var(--body);
  letter-spacing: .22em;
  color: var(--na-accent);
  margin: 0 0 16px;
}
.review.theme-v4 .na-section h2 {
  font: 400 clamp(38px, 4.5vw, 62px)/1.12 var(--title);
  letter-spacing: -.035em;
  max-inline-size: 610px;
  margin: 0 auto;
  text-wrap: balance;
}
.na-section .na-subtitle {
  color: var(--na-accent);
  font-size: 19px;
  line-height: 1.5;
  margin: 18px 0 0;
  text-wrap: balance;
}
.na-section .na-professions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px 34px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.na-section .na-profession {
  grid-column: span 2;
  min-inline-size: 0;
  margin: 0;
}
.na-section .na-featured {
  grid-column: span 3;
}
.na-section .na-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  outline-offset: 7px;
  border-radius: 4px;
}
.na-section .na-illustration {
  aspect-ratio: 3 / 2;
  isolation: isolate;
  display: grid;
  place-items: center;
  margin-inline: -8px;
  margin-block: -10px -16px;
  background: var(--na-night);
}
.na-section .na-featured .na-illustration {
  margin-block: -18px -36px;
}
.na-section .na-illustration img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  mix-blend-mode: lighten;
  transition: transform 220ms ease;
}
.na-section .na-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.review.theme-v4 .na-section h3 {
  font: 500 clamp(20px, 1.65vw, 23px)/1.3 var(--body);
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}
.review.theme-v4 .na-section .na-featured h3 {
  font: 400 clamp(28px, 2.4vw, 32px)/1.2 var(--title);
  letter-spacing: -.026em;
}
.na-section .na-label > .icon {
  inline-size: 23px;
  block-size: 23px;
  flex: 0 0 23px;
  color: var(--na-accent);
  align-self: center;
  transition: transform 200ms ease;
}
.na-section .na-example {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.5;
  color: var(--na-accent);
  margin: 5px 0 0;
  text-wrap: pretty;
}
.na-section .na-featured .na-example {
  font-size: 18px;
}
.na-section .na-contact {
  border-block-start: 1px solid #786ba5;
  margin-block-start: 40px;
  padding-block-start: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.na-section .na-contact > p {
  font: 400 25px/1.4 var(--title);
  margin: 0;
}
.na-section .na-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--na-accent);
  font-size: 17px;
  line-height: 1.5;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  padding-block: 8px;
}
.na-section .na-link:focus-visible,
.na-section .na-contact-link:focus-visible {
  outline: 2px solid #cabbff;
  outline-offset: 7px;
}
.na-section .na-contact-link .icon {
  flex: 0 0 20px;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .na-section .na-link:hover .na-illustration img {
    transform: translateY(-3px) scale(1.012);
  }
  .na-section .na-link:hover .na-label > .icon {
    transform: translateX(3px);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .na-section .na-entering .na-illustration {
    animation: na-illustration-arrive 520ms cubic-bezier(.2, .65, .3, 1) both;
  }
}
@keyframes na-illustration-arrive {
  from {
    opacity: .65;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .na-section * {
    animation: none !important;
    transition: none !important;
  }
}
@container (max-width: 1023px) {
  .review.theme-v4 .section.na-section > .wrap {
    inline-size: calc(100% - 64px);
  }
  .na-section .na-professions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .na-section .na-profession {
    grid-column: auto;
  }
  .review.theme-v4 .na-section h2 {
    max-inline-size: 560px;
  }
  .review.theme-v4 .na-section .na-featured h3 {
    font-size: 28px;
  }
  .na-section .na-example,
  .na-section .na-featured .na-example {
    font-size: 17px;
  }
}
@container (max-width: 599px) {
  .review.theme-v4 .section.na-section > .wrap {
    inline-size: calc(100% - 48px);
  }
  .na-section .na-copy {
    margin-block-end: 14px;
  }
  .review.theme-v4 .na-section h2 {
    font-size: 38px;
    max-inline-size: 420px;
  }
  .na-section .na-kicker {
    font-size: 12px;
    letter-spacing: .18em;
    margin-block-end: 14px;
  }
  .na-section .na-subtitle {
    font-size: 17px;
    margin-block-start: 16px;
  }
  .na-section .na-professions {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .na-section .na-illustration {
    margin-inline: -6px;
  }
  .review.theme-v4 .na-section .na-featured h3 {
    font-size: 29px;
  }
  .review.theme-v4 .na-section h3 {
    font-size: 23px;
  }
  .na-section .na-example,
  .na-section .na-featured .na-example {
    font-size: 17px;
  }
  .na-section .na-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-block-start: 32px;
    padding-block-start: 22px;
  }
  .na-section .na-contact > p {
    font-size: 24px;
  }
}
