:root {
  --nav-height: 6.3125rem;

  /* colors */
  --background-color: white;
  --light-color: #f8f8f8;
  --text-color: #000;
  --mulberry-color: #952460;
  --light-blue-color: #86C1E4;
  --sky-blue-color: #E2F2FF;
  --light-pink-color: #F9E8F0;
  --green-color: #007580;
  --foam-color: #E8F7F7;

  /* fonts */
  --font-family: "Lexend", roboto, roboto-fallback, sans-serif;

  /* font-weights */
  --font-weight-thin: 100;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* sizes (mobile) */
  --heading-size-h1: 2.375rem;
  --heading-size-h2: 2rem;
  --heading-size-h3: 1.5rem;
  --heading-size-h4: 1.25rem;
  --default-size: 1rem;
  --bodycopy-size: 1.125rem;
  --footnote-size: 0.875rem;
  --formcopy-size: 1.125rem;
  --errormessage-size: 1rem;
  --button-size: 1.125rem;
  --navigationlink-size: 1.125rem;
}

@media (width >=48rem) {
  :root {
    --nav-height: 7.4375rem;

    /* sizes (desktop) */
    --heading-size-h1: 3.125rem;
    --heading-size-h2: 2.25rem;
    --heading-size-h3: 1.5rem;
    --heading-size-h4: 1.25rem;
    --default-size: 1rem;
    --bodycopy-size: 1.125rem;
    --footnote-size: 0.875rem;
    --formcopy-size: 1.125rem;
    --errormessage-size: 1rem;
    --button-size: 1.125rem;
    --navigationlink-size: 1rem;
  }
}

/* fallback fonts */
@font-face {
  font-family: roboto-fallback;
  size-adjust: 99.529%;
  src: local('Arial');
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

main .section[id] {
  scroll-margin-top: var(--nav-height);
}

body {
  display: none;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--bodycopy-size);
}

main {
  margin-top: 101px;
}

h1 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h1);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h2);
  font-weight: var(--font-weight-semibold);
}

h3 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h3);
  font-weight: var(--font-weight-medium);
}

h4 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h4);
  font-weight: var(--font-weight-medium);
}

body.appear {
  display: block;
}

/* Common external link styles */
.external-link {
  font-family: var(--font-family);
  font-size: var(--default-size);
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  color: var(--green-color);
  text-decoration: underline;
}

.external-link:hover {
  font-family: var(--font-family);
  font-size: var(--default-size);
  font-weight: var(--font-weight-extrabold);
  color: var(--mulberry-color);
  text-decoration: underline;
}

.external-link-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1 / 1;
  margin-left: 5px;
  vertical-align: text-bottom;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007580' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3'/%3E%3C/svg%3E") no-repeat center / contain;
}

.external-link:hover .external-link-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23952460' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3'/%3E%3C/svg%3E") no-repeat center / contain;
}

main > .section > div {
  max-width: 57.125rem;
  margin: auto;
}

main > .section:first-of-type {
  margin-top: 0;
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
  margin: 0;
  padding: 2.5rem 0;
}

main .section.spacer {
  margin: 4.6875rem 0;
}

main .section.sky-blue {
  background-color: var(--sky-blue-color);
  padding: 4.6875rem 0;
}

main .section.light-pink {
  background-color: var(--light-pink-color);
  padding: 4.6875rem 0;
}

/* Shared mulberry background */
.mulberry-bg,
main .section.mulberry-style-pre-footer,
.callout-banner {
  position: relative;
  background-color: var(--mulberry-color, #952460);
  color: #fff;
  overflow: hidden;
}

.mulberry-bg :is(h1, h2, h3, h4, h5, h6),
main .section.mulberry-style-pre-footer :is(h1, h2, h3, h4, h5, h6),
.callout-banner :is(h1, h2, h3, h4, h5, h6) {
  color: #fff;
}

.mulberry-bg p,
main .section.mulberry-style-pre-footer p,
.callout-banner p {
  color: #fff;
}

/* Shared decorative corner */
.decorative-corner, .callout-banner-corner {
  position: absolute;
  right: -0.3125rem;
  bottom: -0.8125rem;
  pointer-events: none;
}

.decorative-corner svg, .callout-banner-corner svg {
  width: 100%;
  height: 100%;
}

/* Mulberry Style Pre-Footer */
main .section.mulberry-style-pre-footer {
  margin: 0;
  padding: 1.875rem 0;
}

main .section.mulberry-style-pre-footer img {
  max-width: 23.1875rem;
  height: 8.0625rem;
  aspect-ratio: 371/129;
}

main .section.mulberry-style-pre-footer .columns > div {
  gap: 4.6875rem;
}

main .section.mulberry-style-pre-footer .columns > div > div {
  flex: unset;
}

/* Primary button style */
a.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 136px;
  height: 44px;
  padding: 0.5rem 0.625rem;
  background-color: #fff;
  color: var(--green-color, #007580);
  font-family: var(--font-family);
  font-size: var(--button-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
  text-decoration: none;
  border: 0.125rem solid var(--green-color, #007580);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-style: normal;
}

a.button.primary:not(.no-hover):hover {
  background-color: var(--green-color, #007580);
  color: #fff;
}

a.button.primary::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  padding: 0.375rem 0.5rem;
  box-sizing: border-box;
  background-color: var(--green-color, #007580);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16' fill='none'%3E%3Cpath d='M2 2L10 8L2 14' stroke='%23ffffff' stroke-width='4.053' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 1rem;
  transition: all 0.2s ease;
}

a.button.primary:not(.no-hover):hover::after {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16' fill='none'%3E%3Cpath d='M2 2L10 8L2 14' stroke='%23007580' stroke-width='4.053' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Secondary button style — inverted color scheme of primary */
a.button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  padding: 0.5rem 0.625rem;
  background-color: var(--green-color, #007580);
  color: #fff;
  font-family: var(--font-family);
  font-size: var(--button-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
  text-decoration: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-style: normal;
}

a.button.secondary:not(.no-hover):hover {
  background-color: #fff;
  color: var(--green-color, #007580);
}

a.button.secondary::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  padding: 0.375rem 0.5rem;
  box-sizing: border-box;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16' fill='none'%3E%3Cpath d='M2 2L10 8L2 14' stroke='%23007580' stroke-width='4.053' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 1rem;
  transition: all 0.2s ease;
}

a.button.secondary:not(.no-hover):hover::after {
  background-color: var(--green-color, #007580);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16' fill='none'%3E%3Cpath d='M2 2L10 8L2 14' stroke='%23ffffff' stroke-width='4.053' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

main .section.mulberry-style-pre-footer .button-container {
 padding-top: 1.25rem;
}

/* Accordion Styles */
.section[data-accordion] .columns-wrapper {
  margin: 0 auto;
}

.section[data-accordion] .columns.accordion {
  display: flex;
  flex-direction: column;
}

/* Accordion item (details element) */
.section[data-accordion] .accordion-item {
  background-color: rgb(255 255 255 / 75%);
  border: 0.0625rem solid var(--mulberry-color);
  border-radius: 0.5rem;
  margin-bottom: 2.5rem;
}

/* Accordion label (summary element) */
.section[data-accordion] .accordion-item-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--mulberry-color);
}

.section[data-accordion] .accordion-item-label::-webkit-details-marker,
.section[data-accordion] .accordion-item-label::marker {
  display: none;
}

/* Chevron indicator */
.section[data-accordion] .accordion-item-label::after {
  content: '';
  display: block;
  margin-right: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  border: solid var(--mulberry-color);
  border-width: 0 0.25rem 0.25rem 0;
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.section[data-accordion] .accordion-item[open] > .accordion-item-label::after {
  transform: rotate(-135deg);
}

/* Accordion body */
.section[data-accordion] .accordion-item-body {
  padding: 0 2.5rem 1.875rem;
}

.section[data-accordion] .accordion-item-body p {
  margin: 0;
  line-height: normal;
  padding-bottom: 1.25rem;
}

.section[data-accordion] .accordion-item-body p strong{
  font-size: var(--heading-size-h3);
}

.section[data-accordion] .accordion-item-body p:not(:first-child) strong{
  font-size: var(--heading-size-h4);
}

.section[data-accordion] .accordion-item-body p:last-child {
  margin-bottom: 0;
}

/* Accordion Cards */
.section[data-accordion] .accordion-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 0 2.5rem;
}

.section[data-accordion] .accordion-card {
  display: flex;
  align-items: stretch;
  gap: 1.875rem;
  background-color: var(--foam-color);
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.section[data-accordion] .accordion-card-image {
  flex: 0 0 6.25rem;
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section[data-accordion] .accordion-card-image :is(picture, img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section[data-accordion] .accordion-card-image--mobile {
  display: none;
}

.section[data-accordion] .accordion-card-body {
  flex: 0 1 auto;
  width: calc(100% - 8.125rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.875rem;
}

.section[data-accordion] .accordion-card-body p {
  margin: 0;
  padding-bottom: 0;
}

.section[data-accordion] .accordion-card-body p:first-child {
  font-size: var(--heading-size-h3);
  line-height: normal;
}

.section[data-accordion] .accordion-card-body a {
  align-items: center;
  gap: 0.3125rem;
  font-size: var(--navigationlink-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  color: var(--Green, #007580);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.section[data-accordion] .default-content-wrapper p {
  font-size: var(--footnote-size);
}

/* External link hover/active state (fallback for target="_blank" links) */
a[target="_blank"]:not(.button):hover {
  font-family: var(--font-family);
  font-size: var(--default-size);
  font-weight: var(--font-weight-extrabold);
  color: var(--mulberry-color) !important;
  text-decoration: underline;
}

@media (max-width:59rem) {
  .section[data-accordion] .columns-wrapper,  
  .section[data-accordion] .default-content-wrapper{
    margin-left: 10px;
    margin-right: 10px;
  }
}

.image-stack-container {
  margin-right: unset !important;
  margin-left: unset !important;
}

#talking-to-your-care-team {
  margin-left: unset !important;
  margin-right: unset !important;
  padding-left: unset !important;
  padding-right: unset !important;
}

#ras-in-pancreatic-cancer > div > :is(h1, h2, h3, h4, h5, h6) {
  color: var(--mulberry-color);
  margin-bottom: 1.875rem;
}

#ras-in-pancreatic-cancer .columns-wrapper {
  margin-bottom: 2.5rem;
}

#ras-in-pancreatic-cancer .columns div {
  gap: 1.875rem;
  align-items: flex-start;
}

#ras-in-pancreatic-cancer .columns ul li {
  margin-bottom: 0.625rem;
  margin-left: 2rem;
}

#ras-in-pancreatic-cancer .columns ul li::marker {
  color: var(--mulberry-color);
}

#ras-in-pancreatic-cancer picture img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

#biomarker-testing .default-content-wrapper :is(p, h1, h2, h3, h4, h5, h6) {
  margin-bottom: 1.875rem;
}

#biomarker-testing .columns-wrapper {
  max-width: 59.625rem;
}

#biomarker-testing > div > :is(h1, h2, h3, h4, h5, h6) {
  color: var(--mulberry-color);
}

#biomarker-testing .columns .columns-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

#biomarker-testing .columns div p picture img {
  width: 12.5rem;
  height: 10.5rem;
  aspect-ratio: 25/21;
}

#biomarker-testing .columns > div {
  align-items: flex-start;
  gap: 1.5rem;
}

#biomarker-testing .columns > div > div:first-child {
  text-align: center;
}

#biomarker-testing .columns > div > div:first-child ul li {
  max-width: 24.75rem;
}

#biomarker-testing .columns > div > div:last-child {
  text-align: center;
} 

#biomarker-testing .columns div :is(h1, h2, h3, h4, h5, h6) {
  color: var(--mulberry-color);
  line-height: 34px;
  text-align: center;
  margin-bottom: 15px;
}

#biomarker-testing .columns div ul {
  text-align: left;
}

#biomarker-testing .columns div ul li {
  margin-bottom: 0.625rem;
  margin-left: 2rem;
}

#biomarker-testing .columns div ul li::marker {
  color: var(--mulberry-color);
}

.error .section .default-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.error .section .default-content-wrapper h1 {
  margin-bottom: 5px;
}

.error .section .default-content-wrapper p {
  margin-top: 0;
  margin-bottom: 20px;
}

.error .section .default-content-wrapper .button-container {
  margin: 0;
}

main.error {
  margin-top: var(--nav-height);
}

main.error .section {
  padding-top: 246px;
  padding-bottom: 167px;
}

li li {
  list-style-type: "-";
}

li li::marker {
  color: var(--mulberry-color, #952460);
}

ul ul li {
  margin-top: 0.625rem;
  margin-left: 0.5rem !important;
  padding-left: 0.5rem;
}

@media (width > 48rem) {
  main {
    margin-top: 119px;
  }

  #biomarker-testing .columns > div > div:last-child {
    position: relative;
    padding-left: 1.5rem;
  }

  #biomarker-testing .columns > div > div:last-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11rem;
    bottom: 0;
    width: 0.125rem;
    background-color: var(--mulberry-color);
    width: 0.03125rem;
    height: 13.875rem;
  }
}

@media (width > 48rem) and (width < 75rem) {
  main .section.spacer {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }

  main .section.mulberry-style-pre-footer {
    padding: 1.875rem 2.1875rem;
  }
}

@media (width <= 48rem) {
  /* Mobile 404 error page styles */
  main.error .section {
    padding: 0 0.75rem;
  }

  .error .section .default-content-wrapper {
    text-align: center;
    max-width: 22.875rem;
    margin: 0 auto;
  }

  .error .section .default-content-wrapper h1 {
    font-size: 2rem;
    font-weight: 700;
  }

  .error .section .default-content-wrapper p:not(.button-container) {
    font-size: 1.125rem;
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
  }

  main .section.sky-blue {
    padding: 2.5rem 0;
  }

  main .section.spacer {
    margin: 2.5rem 0.625rem;
  }

  .decorative-corner,
  .callout-banner-corner {
    right: -0.9375rem;
    bottom: -0.625rem;
    width: 3.75rem;
    height: 4.6875rem;
  }

  main .section.mulberry-style-pre-footer {
    padding: 2.5rem 1.25rem;
  }

  main .section.mulberry-style-pre-footer p {
    text-align: center;
  }

  main .section.mulberry-style-pre-footer .columns > div {
    gap: 1.875rem;
  }

  main .section.mulberry-style-pre-footer img {
    max-width: 21.875rem;
    margin: 0 auto;
  }

  .section[data-accordion] .accordion-cards-wrapper {
    padding: 0;
  }
  
  .section[data-accordion] .callout-banner {
    margin-top: 30px;
  }

  .section[data-accordion] .accordion-item[open] .accordion-item-body {
    margin-top: 30px;
  }

  .section[data-accordion] .accordion-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: var(--foam-color);
    border: 0;
    border-radius: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  }

  .section[data-accordion] .accordion-card-image {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    align-items: stretch;
    justify-content: center;
    overflow: visible;
  }

  .section[data-accordion] .accordion-card-image :is(picture, img) {
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .section[data-accordion] .accordion-card-image--desktop {
    display: none;
  }

  .section[data-accordion] .accordion-card-image--mobile {
    display: flex;
  }

  .section[data-accordion] .accordion-card-body {
    width: 100%;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem 0.9375rem;
  }

  .section[data-accordion] .accordion-card-body a {
    color: var(--green-color, #007580);
    text-decoration: underline;
  }

  .section[data-accordion] .accordion-item {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
  }

  .section[data-accordion] .accordion-item-label {
    padding: 0;
  }

  .section[data-accordion] .accordion-item-body {
    padding: 0;
  }

  .section[data-accordion] .accordion-item-body > p {
    padding-bottom: 30px;
  }

  #ras-in-pancreatic-cancer > div > :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1.25rem;
  }

  #ras-in-pancreatic-cancer .columns ul li {
    margin-left: 1.875rem;
  }

  #ras-in-pancreatic-cancer .columns-wrapper {
    margin-bottom: 1.25rem;
  }

  #ras-in-pancreatic-cancer .columns div {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.25rem;
  }

  #ras-in-pancreatic-cancer picture img {
    width: 100%;
  }

  #biomarker-testing .default-content-wrapper :is(p, h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1.25rem;
  }

  #biomarker-testing .columns > div {
    flex-direction: column;
    gap: 1.5rem;
  }

  #biomarker-testing .columns div p picture img {
    width: 6.25rem;
    height: 6.1875rem;
    flex-shrink: 0;
    aspect-ratio: 100 / 99;
    margin-bottom: 0;
    margin-left: 1rem;
    object-fit: cover;
  }

  #biomarker-testing .columns div div:nth-of-type(2) p picture img {
    width: 6.25rem;
    height: 5.125rem;
    flex-shrink: 0;
    aspect-ratio: 100 / 82;
    margin-bottom: 0;
    margin-left: 1.25rem;
  }

  #biomarker-testing .columns > div > div {
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    column-gap: 1.25rem;
    row-gap: 0;
    align-items: start;
    text-align: left;
  }

  #biomarker-testing .columns > div > div > :first-child {
    grid-column: 1;
    margin-bottom: 0;
  }

  #biomarker-testing .columns > div > div > :nth-child(2) {
    grid-column: 2;
    align-self: center;
    margin-bottom: 0;
    text-align: left;
  }

  #biomarker-testing .columns > div > div > :nth-child(n + 3) {
    grid-column: 1 / -1;
    margin-top: 0.9375rem;
  }

  #biomarker-testing .columns div :is(h1, h2, h3, h4, h5, h6) {
    text-align: left;
  }
  #biomarker-testing div h3 {
    line-height: 2.125rem;
  }

  #biomarker-testing .columns div ul li {
    margin-left: 1.875rem;
  }

  #biomarker-testing .columns div ul,
  #ras-in-pancreatic-cancer .columns ul {
    list-style-position: outside;
  }

  main.error .section {
    padding-top: 237px;
    padding-bottom: 158px;
  }
}

@media (min-width: 48.0625rem) and (max-width: 74.9375rem) {
  main .section.mulberry-style-pre-footer p {
    max-width: 19rem;
  }
}

#sitemap {
  padding: 78.5px clamp(1.25rem, 11.8vw, 10.625rem) 76.5px;
}

#sitemap > div {
  max-width: 61.5rem;
  margin: 0;
}

#sitemap h1 {
  font-family: var(--font-family);
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold, 700);
  color: var(--mulberry-color, #952460);
  margin: 0;
  line-height: normal;
}

/* Body section: links list on sky-blue background */
#sitemap + .section,
#sitemap-text {
  margin: 0 !important;
  padding: 3.125rem clamp(1.25rem, 12.85vw, 11.5625rem) ;
  box-shadow: inset 0 0.3125rem 0.9375rem 0 rgba(0, 0, 0, 0.15);
}

#sitemap + .section > div,
#sitemap-text > div {
  max-width: 68.75rem;
  width: 100%;
  margin: 0 auto;
}

#sitemap + .section h3,
#sitemap-text h3 {
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold, 700);
  line-height: 2.125rem;
  color: var(--green-color, #007580);
  margin: 0 0 0.25rem;
  margin-bottom: 20px;
}

#sitemap + .section h3 a,
#sitemap-text h3 a {
  color: var(--green-color, #007580);
  text-decoration: none;
}

#sitemap + .section h3 a:hover,
#sitemap-text h3 a:hover {
  color: var(--mulberry-color);
  text-decoration: underline;
}

#sitemap + .section p,
#sitemap-text p {
  margin: 0 0 1.25rem;
}

#sitemap-text h3:last-child {
  margin-bottom: 0;
}

#sitemap + .section p a,
#sitemap-text p a {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold, 600);
  color: var(--green-color, #007580);
  text-decoration: none;
  line-height: normal;
}

#sitemap + .section p a:hover,
#sitemap-text p a:hover {
  color: var(--mulberry-color);
  text-decoration: underline;
}

@media (width < 768px) {
  #sitemap {
    padding: 36px 10px;
  }

  #sitemap h1 {
    font-size: 2rem;
  }

  #sitemap-text {
    padding: 50px 15px !important;
  }
}