:root {
  --button-color-outline: var(--color-border-tertiary);
  --button-color-text: var(--color-text-button);
  --button-color-text-hover: var(--color-text-secondary);
  --button-color-background-hover: var(--color-surface-secondary);
  --button-color-highlight-text: var(--button-color-text);
  --button-highlight-background: var(--color-surface-highlight);
  --button-highlight-color-background-hover: var(--button-color-background-hover);
  --button-highlight-color-text-hover: var(--button-color-text-hover);
}

.block__anatomy-multi-block {
  display: flex;
  justify-content: center;
  padding: var(--spacing-lg) 0;
  --color-heading: var(--color-text-heading);
}
.block__anatomy-multi-block.bg-white, .block__anatomy-multi-block.bg- {
  background: var(--color-surface-primary);
}
.block__anatomy-multi-block.bg-white + .block__anatomy-multi-block.bg-white, .block__anatomy-multi-block.bg-white + .block__anatomy-multi-block.bg-, .block__anatomy-multi-block.bg- + .block__anatomy-multi-block.bg-white, .block__anatomy-multi-block.bg- + .block__anatomy-multi-block.bg- {
  padding-top: 0;
}
.block__anatomy-multi-block.bg-green, .block__anatomy-multi-block.bg-dark {
  color: var(--color-text-secondary);
  --color-heading: var(--color-text-secondary);
  --button-color-background-hover: var(--color-brand-white);
  --button-color-outline: var(--color-brand-white);
  --button-color-text: var(--color-brand-white);
  --button-color-text-hover: var(--color-text-primary);
  --button-color-highlight-text: var(--color-text-primary);
}
.block__anatomy-multi-block.bg-green {
  background: var(--color-surface-secondary);
}
.block__anatomy-multi-block.bg-green + .block__anatomy-multi-block.bg-green {
  padding-top: 0;
}
.block__anatomy-multi-block.bg-dark {
  background: var(--color-surface-dark);
}
.block__anatomy-multi-block.bg-dark + .block__anatomy-multi-block.bg-dark {
  padding-top: 0;
}
.block__anatomy-multi-block.bg-off-white {
  background: var(--color-surface-tertiary);
}
.block__anatomy-multi-block.bg-off-white + .block__anatomy-multi-block.bg-off-white {
  padding-top: 0;
}
.block__anatomy-multi-block.bg-light-green {
  background: var(--color-brand-mid-green);
  --button-highlight-background: var(--color-surface-secondary);
  --button-color-highlight-text: var(--color-text-secondary);
  --button-highlight-color-text-hover: var(--color-text-primary);
  --button-highlight-color-background-hover: var(--color-brand-white);
}
.block__anatomy-multi-block.bg-light-green + .block__anatomy-multi-block.bg-light-green {
  padding-top: 0;
}
.block__anatomy-multi-block.bg-yellow {
  background: var(--color-brand-yellow);
  --button-highlight-background: var(--color-surface-secondary);
  --button-color-highlight-text: var(--color-text-secondary);
  --button-highlight-color-text-hover: var(--color-text-primary);
  --button-highlight-color-background-hover: var(--color-brand-white);
}
.block__anatomy-multi-block.bg-yellow + .block__anatomy-multi-block.bg-yellow {
  padding-top: 0;
}
.block__anatomy-multi-block .wrapper {
  width: 100%;
  max-width: var(--container-width);
  display: flex;
  gap: var(--spacing-lg);
}
.block__anatomy-multi-block .wrapper .section {
  width: 100%;
}
.block__anatomy-multi-block .wrapper .section .ctas {
  margin-top: var(--spacing-md);
}
.block__anatomy-multi-block .wrapper .section .ctas .cta {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
}
.block__anatomy-multi-block .wrapper .section .ctas .cta:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-multi-block .wrapper .section .ctas .cta:first-child {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  color: var(--button-color-highlight-text);
  background: var(--button-highlight-background);
}
.block__anatomy-multi-block .wrapper .section .ctas .cta:first-child:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-multi-block .wrapper .section .ctas .cta:first-child:hover {
  color: var(--button-highlight-color-text-hover);
  background: var(--button-highlight-color-background-hover);
}
.block__anatomy-multi-block .wrapper .section .ctas .cta:not(:first-child) {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  border: 1px solid var(--button-color-outline);
}
.block__anatomy-multi-block .wrapper .section .ctas .cta:not(:first-child):hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-multi-block .wrapper .section.type-title h2 {
  font: var(--type-h2);
  color: var(--color-heading);
}
.block__anatomy-multi-block .wrapper .section.type-text .content {
  font: var(--type-b3);
}
.block__anatomy-multi-block .wrapper .section.type-text .content p {
  margin-bottom: var(--spacing-sm);
}
.block__anatomy-multi-block .wrapper .section.type-text .content strong, .block__anatomy-multi-block .wrapper .section.type-text .content b {
  font-weight: bold;
}
.block__anatomy-multi-block .wrapper .section.type-text .content h1, .block__anatomy-multi-block .wrapper .section.type-text .content h2, .block__anatomy-multi-block .wrapper .section.type-text .content h3, .block__anatomy-multi-block .wrapper .section.type-text .content h4, .block__anatomy-multi-block .wrapper .section.type-text .content h5 {
  margin-bottom: var(--spacing-smd);
}
.block__anatomy-multi-block .wrapper .section.type-text .content h1 {
  font: var(--type-h1);
  letter-spacing: -1.28px;
}
.block__anatomy-multi-block .wrapper .section.type-text .content h2 {
  font: var(--type-h2);
}
.block__anatomy-multi-block .wrapper .section.type-text .content h3 {
  font: var(--type-h3);
}
.block__anatomy-multi-block .wrapper .section.type-text .content h4 {
  font: var(--type-b1);
}
.block__anatomy-multi-block .wrapper .section.type-text .content p + h1, .block__anatomy-multi-block .wrapper .section.type-text .content p + h2, .block__anatomy-multi-block .wrapper .section.type-text .content p + h3, .block__anatomy-multi-block .wrapper .section.type-text .content p + h4 {
  margin-top: var(--spacing-md);
}
.block__anatomy-multi-block .wrapper .section.type-text .content i, .block__anatomy-multi-block .wrapper .section.type-text .content em {
  font-style: italic;
}
.block__anatomy-multi-block .wrapper .section.type-text .content p.b1 {
  font: var(--type-b1);
}
.block__anatomy-multi-block .wrapper .section.type-text .content a:link, .block__anatomy-multi-block .wrapper .section.type-text .content a:visited {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-brand-mid-green);
}
.block__anatomy-multi-block .wrapper .section.type-text .content a:link.btn, .block__anatomy-multi-block .wrapper .section.type-text .content a:visited.btn {
  text-decoration: none;
}
.block__anatomy-multi-block .wrapper .section.type-text .content .btn {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
}
.block__anatomy-multi-block .wrapper .section.type-text .content .btn:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-multi-block .wrapper .section.type-text .content ul {
  list-style: none;
  margin-top: var(--spacing-sm);
}
.block__anatomy-multi-block .wrapper .section.type-text .content ul li {
  padding-left: 0;
  vertical-align: middle;
  margin-bottom: var(--spacing-sm);
}
.block__anatomy-multi-block .wrapper .section.type-text .content ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-top: -2px;
  background: var(--color-surface-highlight);
  border-radius: 2px;
  margin-right: 10px;
}
.block__anatomy-multi-block .wrapper .section.type-text .content ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.block__anatomy-multi-block .wrapper .section.type-text .content ul, .block__anatomy-multi-block .wrapper .section.type-text .content ol {
  margin-bottom: 1em;
}
.block__anatomy-multi-block .wrapper .section.type-text .content blockquote {
  font: var(--type-b2);
  border-left: 2px solid var(--color-border-highlight);
  padding-left: var(--spacing-md);
  margin: var(--spacing-md) 0;
}
.block__anatomy-multi-block .wrapper .section.type-text .content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-small);
}
.block__anatomy-multi-block .wrapper .section.type-text .content figure {
  width: 100% !important;
}
.block__anatomy-multi-block .wrapper .section.type-text .content figure figcaption {
  font: var(--type-b4);
  opacity: 0.8;
}
.block__anatomy-multi-block .wrapper .section.type-image .media, .block__anatomy-multi-block .wrapper .section.type-video .media {
  position: relative;
  aspect-ratio: 31/22.5;
  overflow: hidden;
  border-radius: var(--radius-small);
}
.block__anatomy-multi-block .wrapper .section.type-image .media img, .block__anatomy-multi-block .wrapper .section.type-image .media video, .block__anatomy-multi-block .wrapper .section.type-video .media img, .block__anatomy-multi-block .wrapper .section.type-video .media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__anatomy-multi-block .wrapper .section:only-child.type-image .media, .block__anatomy-multi-block .wrapper .section:only-child.type-video .media {
  position: static;
  aspect-ratio: auto;
}
.block__anatomy-multi-block .wrapper .section:only-child.type-image .media img, .block__anatomy-multi-block .wrapper .section:only-child.type-image .media video, .block__anatomy-multi-block .wrapper .section:only-child.type-video .media img, .block__anatomy-multi-block .wrapper .section:only-child.type-video .media video {
  position: static;
  -o-object-fit: unset;
     object-fit: unset;
  height: auto;
}
@media screen and (max-width: 768px) {
  .block__anatomy-multi-block {
    padding: var(--spacing-md) 0;
  }
  .block__anatomy-multi-block .wrapper {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}