/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-no-vendor-prefix */

/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

html {
  scroll-behavior: smooth;
}

body {
  display: none;
  font-size: var(--font-size-m);
  margin: 0;
  font-family: var(--font-family-body);
  line-height: 1.6;
  color: var(--body-color);
  -webkit-font-smoothing: antialiased;
}

body.appear {
  display: block;
}

strong,
b {
  font-weight: var(--font-weight-semibold);
}

.custom {
  footer .button-container,
  .footer-nav-links {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--font-weight-body);
  line-height: var(--heading-line-height);
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xxs);
  scroll-margin: calc(var(--spacing-l) + 1em);
  color: var(--heading-color);
}

h1,
.h1 {
  font-size: var(--font-size-xl);
  line-height: var(--pp-line-height-loose-xxl);

  @media (width >=768px) {
    font-size: var(--font-size-xxl-alt-l);
    line-height: var(--pp-line-height-loose-xxxl);
  }
}

h2,
.h2 {
  font-size: var(--font-size-l-alt);
  line-height: var(--pp-line-height-loose-xl);

  @media (width >=768px) {
    font-size: var(--font-size-xl-alt-l);
    line-height: var(--line-height-tight-m-alt);
  }
}

h3,
.h3 {
  font-size: var(--font-size-l-m);
  line-height: var(--line-height-tight-xl-alt-l);
}

h4,
.h4 {
  font-size: var(--font-size-l);
  line-height: var(--pp-line-height-loose-s);

  @media (width >=768px) {
    line-height: var(--line-height-tight-xl-alt);
  }
}

h5,
.h5 {
  font-size: var(--font-size-l-s);
  line-height: var(--pp-line-height-loose-l);

  @media (width >=768px) {
    line-height: var(--pp-line-height-loose-m);
  }
}

h6,
.h6 {
  font-size: var(--font-size-m-alt);
  line-height: var(--pp-line-height-loose-xs);
}

p,
dl,
ol,
ul,
pre,
blockquote {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  color: var(--font-color-body);
}

code,
pre {
  font-family: var(--body-semibold-font-family);
  font-size: var(--font-size-s);
}

code {
  padding: var(--spacing-xxs);
}

pre {
  overflow: scroll;
}

main pre {
  background-color: var(--color-grey);
  padding: var(--spacing-xxs);
  overflow-x: auto;
  white-space: pre;
}

/* links */
a:-webkit-any-link {
  color: var(--color-black);
  text-decoration: underline;
  font-weight: var(--font-weight-body);
  gap: var(--spacing-xxxs);
}

a:-moz-any-link {
  color: var(--color-black);
  text-decoration: underline;
  font-weight: var(--font-weight-body);
  gap: var(--spacing-xxxs);
}

a:any-link {
  color: var(--link-color);
  text-decoration: underline;
  font-size: var(--font-size-m-alt);
  font-weight: var(--font-weight-body);
  text-decoration-style: solid;
  line-height: var(--line-height-tight-xxl); /* 168.421% */
  text-decoration-skip-ink: none;
  text-decoration-thickness: 5%; /* 0.95px */
  text-underline-offset: auto; /* 4.56px */
  text-underline-position: from-font;
  gap: var(--spacing-xxxs);
}

a:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
  text-decoration-thickness: 12%;
  font-weight: var(--font-weight-semibold);
}

a:active {
  color: var(--link-hover-color);
  text-decoration-thickness: 12%;
  font-weight: var(--font-weight-semibold);
  outline: none;
}

/* default button */
a.button:-webkit-any-link {
  font-family: var(--font-family-bold);
  box-sizing: border-box;
  text-decoration: none;
  padding: 12px 8px;
  text-align: center;
  font-style: normal;
  font-weight: var(--font-weight-body);
  font-size: var(--font-size-m-alt);
  line-height: 32px; /* 168.421% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 5%; /* 0.95px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  color: var(--link-color);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: var(--border-radius-buttons-secondary);
  border: none;
  gap: var(--spacing-xxxs);
  align-items: center;
  display: inline-flex;
}

a.button:-moz-any-link {
  font-family: var(--font-family-bold);
  box-sizing: border-box;
  text-decoration: none;
  padding: 12px 8px;
  text-align: center;
  font-style: normal;
  font-weight: var(--font-weight-body);
  font-size: var(--font-size-m-alt);
  line-height: 32px; /* 168.421% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 5%; /* 0.95px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  color: var(--link-color);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: var(--border-radius-buttons-secondary);
  border: none;
  gap: var(--spacing-xxxs);
  align-items: center;
  display: inline-flex;
}

a.button:any-link,
button {
  font-family: var(--font-family-bold);
  display: inline-flex;
  box-sizing: border-box;
  text-decoration: none;
  padding: 12px 8px;
  text-align: center;
  font-style: normal;
  font-weight: var(--font-weight-body);
  font-size: var(--font-size-m-alt);
  line-height: 32px; /* 168.421% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 5%; /* 0.95px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  color: var(--link-color);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: var(--border-radius-buttons-secondary);
  border: none;
  gap: var(--spacing-xxxs);
  align-items: center;
}

a.button:-webkit-any-link:hover {
  cursor: pointer;
  color: var(--link-hover-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button:-moz-any-link:hover {
  cursor: pointer;
  color: var(--link-hover-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button:any-link:hover,
a.button:hover,
button:hover {
  cursor: pointer;
  color: var(--link-hover-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button:-webkit-any-link:focus-visible {
  color: var(--link-hover-color);
  cursor: pointer;
  outline: 2px solid var(--yellow-500);
  outline-offset: 0;
  border: 2px solid var(--pp-primary-ink-blue);
  background-image: linear-gradient(transparent 31%, var(--yellow-500) 9%, var(--yellow-500) 69%, transparent 67%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left 0 center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
  border-radius: var(--border-radius-buttons-secondary);
}

a.button:-moz-any-link:focus-visible {
  color: var(--link-hover-color);
  cursor: pointer;
  outline: 2px solid var(--yellow-500);
  outline-offset: 0;
  border: 2px solid var(--pp-primary-ink-blue);
  background-image: linear-gradient(transparent 31%, var(--yellow-500) 9%, var(--yellow-500) 69%, transparent 67%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left 0 center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
  border-radius: var(--border-radius-buttons-secondary);
}

a.button:any-link:focus-visible,
a.button:focus-visible,
button:focus-visible {
  color: var(--link-hover-color);
  cursor: pointer;
  outline: 2px solid var(--yellow-500);
  outline-offset: 0;
  border: 2px solid var(--pp-primary-ink-blue);
  background-image: linear-gradient(transparent 31%, var(--yellow-500) 9%, var(--yellow-500) 69%, transparent 67%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left 0 center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
  border-radius: var(--border-radius-buttons-secondary);
}

a.button:-webkit-any-link:active {
  color: var(--link-hover-color);
  cursor: pointer;
  outline: none;
  outline-offset: 2px;
  border: 2px solid transparent;
  background-image: linear-gradient(transparent 31%, var(--yellow-500) 9%, var(--yellow-500) 69%, transparent 67%);
  background-repeat: no-repeat;
  background-size: 88% 100%;
  background-position: center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button:-moz-any-link:active {
  color: var(--link-hover-color);
  cursor: pointer;
  outline: none;
  outline-offset: 2px;
  border: 2px solid transparent;
  background-image: linear-gradient(transparent 31%, var(--yellow-500) 9%, var(--yellow-500) 69%, transparent 67%);
  background-repeat: no-repeat;
  background-size: 88% 100%;
  background-position: center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button:any-link:active,
a.button:active,
button:active {
  color: var(--link-hover-color);
  cursor: pointer;
  outline: none;
  outline-offset: 2px;
  border: 2px solid transparent;
  background-image: linear-gradient(transparent 31%, var(--yellow-500) 9%, var(--yellow-500) 69%, transparent 67%);
  background-repeat: no-repeat;
  background-size: 88% 100%;
  background-position: center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* primary button */
a.button.primary:-webkit-any-link {
  background-color: var(--pp-primary-biro-blue);
  border: none;
  color: var(--color-white);
  display: inline-block;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xxxs);
  flex: 1 0 0;
  border-radius: var(--border-radius-buttons-secondary);
  font-size: var(--font-size-m-alt);
  font-style: normal;
  font-weight: var(--font-weight-body);
  line-height: 32px;
  text-decoration: none;
}

a.button.primary:-moz-any-link {
  background-color: var(--pp-primary-biro-blue);
  border: none;
  color: var(--color-white);
  display: inline-flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xxxs);
  flex: 1 0 0;
  border-radius: var(--border-radius-buttons-secondary);
  font-size: var(--font-size-m-alt);
  font-style: normal;
  font-weight: var(--font-weight-body);
  line-height: 32px;
  text-decoration: none;
}

a.button.primary:any-link,
a.button.primary,
button.primary {
  background-color: var(--pp-primary-biro-blue);
  border: none;
  color: var(--color-white);
  display: inline-flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xxxs);
  flex: 1 0 0;
  border-radius: var(--border-radius-buttons-secondary);
  font-size: var(--font-size-m-alt);
  font-style: normal;
  font-weight: var(--font-weight-body);
  line-height: 32px;
  text-decoration: none;
}

a.button.primary:-webkit-any-link:hover {
  background-color: var(--link-hover-color);
  color: var(--color-white);
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.primary:-moz-any-link:hover {
  background-color: var(--link-hover-color);
  color: var(--color-white);
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.primary:any-link:hover,
a.button.primary:hover,
button.primary:hover {
  background-color: var(--link-hover-color);
  color: var(--color-white);
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.primary:-webkit-any-link:focus {
  color: var(--color-white);
  outline: 2px solid var(--pp-primary-ink-blue);
  cursor: pointer;
  border: 2px solid var(--yellow-500);
  background: var(--pp-primary-biro-blue);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.primary:-moz-any-link:focus {
  color: var(--color-white);
  outline: 2px solid var(--pp-primary-ink-blue);
  cursor: pointer;
  border: 2px solid var(--yellow-500);
  background: var(--pp-primary-biro-blue);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.primary:any-link:focus-visible,
a.button.primary:focus-visible,
button.primary:focus-visible {
  color: var(--color-white);
  outline: 2px solid var(--pp-primary-ink-blue);
  cursor: pointer;
  border: 2px solid var(--yellow-500);
  background: var(--pp-primary-biro-blue);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.primary:-webkit-any-link:active {
  background-color: var(--pp-primary-biro-blue);
  color: var(--color-white);
  cursor: pointer;
  border: 2px solid var(--color-white);
  outline: 2px solid var(--pp-primary-marker-blue);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  background-image: none;
  outline-offset: 0;
}

a.button.primary:-moz-any-link:active {
  background-color: var(--pp-primary-biro-blue);
  color: var(--color-white);
  cursor: pointer;
  border: 2px solid var(--color-white);
  outline: 2px solid var(--pp-primary-marker-blue);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  background-image: none;
  outline-offset: 0;
}

a.button.primary:any-link:active,
a.button.primary:active,
button.primary:active {
  background-color: var(--pp-primary-biro-blue);
  color: var(--color-white);
  cursor: pointer;
  border: 2px solid var(--color-white);
  outline: 2px solid var(--pp-primary-marker-blue);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  background-image: none;
  outline-offset: 0;
}

a.button.primary span.icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(0%) hue-rotate(97deg) brightness(113%)
    contrast(100%);
}

/* secondary button */
a.button.secondary:-webkit-any-link {
  background-color: var(--pp-primary-white);
  color: var(--pp-primary-ink-blue);
  border-radius: var(--border-radius-buttons-secondary);
  padding: var(--spacing-xxs-l) var(--spacing-xs);
  text-decoration: none;
  font-size: var(--font-size-m-alt);
  display: inline-flex;
  border: 1px solid var(--pp-primary-ink-blue);
  font-family: var(--pp-font-family-primary);
  font-weight: var(--font-weight-body);
  min-width: var(--max-width-button-small);
  justify-content: center;
  line-height: 32px;
  margin-bottom: 0;
  align-items: center;
  outline-offset: 0;
  gap: var(--spacing-xxxs);
  white-space: normal;
  word-break: break-word;
}

a.button.secondary:-moz-any-link {
  background-color: var(--pp-primary-white);
  color: var(--pp-primary-ink-blue);
  border-radius: var(--border-radius-buttons-secondary);
  padding: var(--spacing-xxs-l) var(--spacing-xs);
  text-decoration: none;
  font-size: var(--font-size-m-alt);
  display: inline-flex;
  border: 1px solid var(--pp-primary-ink-blue);
  font-family: var(--pp-font-family-primary);
  font-weight: var(--font-weight-body);
  min-width: var(--max-width-button-small);
  justify-content: center;
  line-height: 32px;
  margin-bottom: 0;
  align-items: center;
  outline-offset: 0;
  gap: var(--spacing-xxxs);
  white-space: normal;
  word-break: break-word;
}

a.button.secondary:any-link,
a.button.secondary,
button.secondary {
  background-color: transparent;
  color: var(--pp-primary-ink-blue);
  border-radius: var(--border-radius-buttons-secondary);
  padding: var(--spacing-xxs-l) var(--spacing-xs);
  text-decoration: none;
  font-size: var(--font-size-m-alt);
  display: inline-flex;
  border: 1px solid var(--pp-primary-ink-blue);
  font-family: var(--pp-font-family-primary);
  font-weight: var(--font-weight-body);
  min-width: var(--max-width-button-small);
  justify-content: center;
  line-height: 32px;
  margin-bottom: 0;
  align-items: center;
  outline-offset: 0;
  gap: var(--spacing-xxxs);
  white-space: normal;
  word-break: break-word;
}

a.button.secondary:-webkit-any-link:hover {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  outline: none;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.secondary:-moz-any-link:hover {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  outline: none;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.secondary:any-link:hover,
a.button.secondary:hover,
button.secondary:hover {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  outline: none;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.secondary:-webkit-any-link:focus {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.secondary:-moz-any-link:focus {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.secondary:any-link:focus-visible,
a.button.secondary:focus-visible,
button.secondary:focus-visible {
  background: transparent;
  color: var(--color-black);
  cursor: pointer;
  border: 2px solid var(--pp-primary-ink-blue);
  font-weight: var(--font-weight-semibold);
  outline: 2px solid var(--yellow-500);
  outline-offset: 0;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a.button.secondary:-webkit-any-link:active {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  border-color: var(--pp-primary-marker-blue);
  border-width: 2px;
  outline: 2px solid var(--color-white);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  background-image: none;
  outline-offset: 0;
}

a.button.secondary:-moz-any-link:active {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  border-color: var(--pp-primary-marker-blue);
  border-width: 2px;
  outline: 2px solid var(--color-white);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  background-image: none;
  outline-offset: 0;
}

a.button.secondary:any-link:active,
a.button.secondary:active,
button.secondary:active {
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  border-color: var(--pp-primary-marker-blue);
  border-width: 2px;
  outline: 2px solid var(--color-white);
  font-weight: var(--font-weight-semibold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  background-image: none;
  outline-offset: 0;
}

.button.chevron {
  position: relative;
  padding-right: 35px !important;
}

.button.chevron::after {
  content: '';
  background-image: url('../../icons/chevron-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px; /* Adjust position as needed */
  top: 50%;
  transform: translateY(-50%);
  width: 16px; /* Adjust width as needed */
  height: 16px; /* Adjust height as needed */
}

.button.chevron:hover::after {
  background-image: url('../../icons/chevron-right.svg');
}

:focus-visible,
a:focus-visible,
button:focus-visible,
input[type='button']:focus-visible,
input[type='submit']:focus-visible {
  outline: 2px solid var(--yellow-500);
  outline-offset: 0;
  border-radius: 2px;
  font-weight: 600;
  color: var(--link-hover-color);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 12%; /* 2.28px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* disabled button */
a.disabled:-webkit-any-link {
  background-color: var(--color-disabled);
  color: var(--color-black);
  cursor: unset;
}

a.disabled:-moz-any-link {
  background-color: var(--color-disabled);
  color: var(--color-black);
  cursor: unset;
}

a.disabled:any-link,
a.disabled,
button:disabled,
button:disabled:hover {
  background-color: var(--color-disabled);
  color: var(--color-black);
  cursor: unset;
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon img {
  height: 100%;
  width: 100%;
}

input,
.form input,
textarea,
select {
  text-decoration: none;
}

input:hover,
input:focus-visible,
input:focus,
select:hover,
select:focus,
select:focus-visible,
textarea:hover,
textarea:focus,
textarea:focus-visible {
  text-decoration: none;
}

/* sections */
.section .default-content-wrapper p {
  font-size: var(--font-size-l);
  line-height: var(--line-height-tight-xl-alt);
  font-weight: 400;

  &:not(.button-container) a {
    font-size: var(--font-size-l);
    line-height: var(--line-height-tight-xl-alt);
    min-height: unset;
    white-space: normal;
    word-break: break-all;
  }
}

/* Open in new tab icon */
main .section a:not(.primary, .secondary, .button) {
  display: inline;
  vertical-align: top;
  min-height: auto;
  padding-block: 0;
}

main .section a[target='_blank']:not(.primary, .secondary)::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
  background-image: url('../../icons/link-share-v2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

main .section a.button[target='_blank']:not(.primary, .secondary)::after {
  margin-left: 0;
}

main .section {
  padding: 16px var(--spacing-xs) 0;

  > div {
    margin: 24px auto 0;
  }

  ul,
  ol {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-s);
    margin: 0;
    padding-top: 8px;
    padding-bottom: 8px;

    @media (width >= 768px) {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  }

  ul li,
  .default-content-wrapper ul li > p {
    color: var(--color-black);
    font-family: var(--font-family-body);
    font-size: var(--font-size-m-alt);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-tight-xl); /* 142.105% */
    margin-bottom: 0;

    @media (width >= 768px) {
      font-size: var(--font-size-l);
      line-height: var(--line-height-tight-xl-alt); /* 141.667% */
    }

    a {
      font-size: var(--font-size-m-alt);
      line-height: var(--line-height-tight-xl);
      min-height: 27px;
      padding: 0 4px;

      @media (width >= 768px) {
        font-size: var(--font-size-l);
        line-height: var(--line-height-tight-xl-alt); /* 141.667% */
      }
    }
  }

  ol li,
  ol li > p,
  .default-content-wrapper ol li,
  .default-content-wrapper ol li > p {
    color: var(--color-black);
    font-family: var(--font-family-body);
    font-size: var(--font-size-m-alt);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-tight-xl); /* 142.105% */

    @media (width >= 768px) {
      font-size: var(--font-size-l);
      line-height: var(--line-height-tight-xl-alt); /* 141.667% */
    }

    a {
      font-size: var(--font-size-m-alt);
      line-height: var(--line-height-tight-xl);
      min-height: 27px;
      padding: 0 4px;

      @media (width >= 768px) {
        font-size: var(--font-size-l);
        line-height: var(--line-height-tight-xl-alt); /* 141.667% */
      }
    }
  }

  .default-content-wrapper ol > li > ul > li,
  .default-content-wrapper ul > li > ul > li,
  .default-content-wrapper ol > li > ul > li > p,
  .default-content-wrapper ol > li > ul > li > ul > li p {
    color: var(--color-black);
    font-family: var(--font-family-body);
    font-size: var(--font-size-m-alt);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-tight-xl); /* 142.105% */
    margin-bottom: 0;

    @media (width >= 768px) {
      font-size: var(--font-size-l);
      line-height: var(--line-height-tight-xl-alt); /* 141.667% */
    }
  }

  /* Custom Bullet list style */
  &.custom-list,
  .custom-list {
    .default-content-wrapper > p,
    h3,
    h4,
    h5,
    h6 {
      margin: 12px 0;

      @media (width >= 768px) {
        margin: 20px 0;
      }
    }

    ul {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: var(--spacing-s);
      align-self: stretch;
      max-width: 100%;
      padding-left: 0;
      padding-top: 12px;

      @media (width >= 768px) {
        gap: var(--spacing-l);
        padding-top: 20px;
      }
    }

    ul > li {
      list-style: none;
      position: relative;
      color: var(--color-black);
      font-family: var(--font-family-body);
      font-size: var(--font-size-m-alt);
      font-style: normal;
      font-weight: 400;
      line-height: var(--line-height-tight-xl); /* 142.105% */
      padding-left: var(--spacing-xl);
      margin-bottom: 0;
      min-height: var(--spacing-l-alt);
      flex: 1 1 auto;
      align-content: center;

      @media (width >= 768px) {
        font-size: var(--font-size-l);
        line-height: var(--line-height-tight-xl-alt); /* 141.667% */
      }
    }

    ul > li > p {
      color: var(--color-black);
      font-family: var(--font-family-body);
      font-size: var(--font-size-m-alt);
      font-style: normal;
      font-weight: 400;
      line-height: var(--line-height-tight-xl); /* 142.105% */
      margin: 0;

      &:not(.button-container) a {
        font-size: var(--font-size-m-alt);
        line-height: var(--line-height-tight-xl);
        min-height: 27px;
        padding: 0 4px;
      }

      @media (width >= 768px) {
        font-size: var(--font-size-l);
        line-height: var(--line-height-tight-xl-alt); /* 141.667% */

        &:not(.button-container) a {
          font-size: var(--font-size-l);
          line-height: var(--line-height-tight-xl-alt);
        }
      }
    }

    ul li > span.icon,
    ul > li > p > span.icon {
      position: absolute;
      top: 0;
      left: 0;
      width: 48px;
      height: 48px;
    }

    ul > li > ul {
      margin-left: 24px;
      max-width: 100%;
      display: block;
      list-style: disc;
    }

    ul > li > ul > li {
      list-style: disc;
      padding-left: 0;
    }

    ul > li > ul > li > ul {
      display: block;
      padding-left: 1.5rem;
    }

    ul > li > ul > li > ul > li {
      list-style: circle;
      padding-left: 0;
    }

    ol {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: var(--spacing-s);
      align-self: stretch;
      max-width: 100%;
      padding-left: 0;
      padding-top: 12px;

      @media (width >= 768px) {
        gap: var(--spacing-l);
        padding-top: 20px;
      }
    }

    ul ol,
    ol ul,
    ol ol {
      list-style: revert;
      padding-left: 1.5rem;
    }

    ol li {
      list-style: none;
      position: relative;
      padding-left: var(--spacing-xl);
      counter-increment: item;
      color: var(--color-black);
      font-family: var(--font-family-body);
      font-size: var(--font-size-m-alt);
      font-style: normal;
      font-weight: 400;
      line-height: var(--line-height-tight-xl);
      margin-bottom: 0;
      min-height: var(--spacing-l-alt);
      flex: 1 1 auto;
      align-content: center;

      @media (width >= 768px) {
        font-size: var(--font-size-l);
        line-height: var(--line-height-tight-xl-alt); /* 141.667% */
      }
    }

    ol li > p {
      padding: 0;
      margin: 0;
      font-family: var(--font-family-body);
      font-size: var(--font-size-m-alt);
      font-style: normal;
      font-weight: 400;
      line-height: var(--line-height-tight-xl);

      &:not(.button-container) a {
        font-size: var(--font-size-m-alt);
        line-height: var(--line-height-tight-xl);
        min-height: 27px;
        padding: 0 4px;
      }

      @media (width >= 768px) {
        font-size: var(--font-size-l);
        line-height: var(--line-height-tight-xl-alt); /* 141.667% */

        &:not(.button-container) a {
          font-size: var(--font-size-l);
          line-height: var(--line-height-tight-xl-alt);
        }
      }
    }

    ol li > span.icon,
    ol li p > span.icon,
    ol li h5 > span.icon {
      position: absolute;
      top: 0;
      left: 0;
      width: 48px;
      height: 48px;
    }

    ol li:has(> strong),
    ol li > p:has(> strong),
    ol li:has(h5) p {
      font-size: var(--font-size-m-alt);
      line-height: var(--line-height-tight-xl);
    }

    ol li:has(> strong) strong,
    ol li > p:has(> strong) strong,
    ol li h5 {
      font-size: var(--font-size-l);
      line-height: var(--line-height-tight-xl-alt);
      font-weight: 400;
    }

    ol li h5 {
      margin: 0;
    }

    ol > li > ol > li {
      list-style: decimal;
      padding-left: 0;
    }

    ul > li > ul,
    ol > li > ol,
    ul > li > ol,
    ol > li > ul {
      gap: var(--spacing-s);
      margin-top: var(--spacing-s);
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;

      @media (width >= 768px) {
        gap: var(--spacing-l);
      }
    }
  }

  ul > li > ul,
  ol > li > ol,
  ul > li > ol,
  ol > li > ul {
    gap: var(--spacing-s);
    margin-top: var(--spacing-s);
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  ul > li > ul > li {
    list-style: square;
    padding-left: 0;
  }

  ul > li > ul > li > ul > li {
    list-style: circle;
    padding-left: 0;
  }
}

/* Notification pane */
.section.notification {
  padding: 0;

  > div {
    padding: var(--spacing-xs) var(--spacing-s);
    background-color: var(--bg-color-paper);

    p {
      margin: 0;
      color: var(--notification-text-color);
      font-size: var(--font-size-xs-alt);
      line-height: 1.5rem;

      a {
        color: var(--color-black);
        text-decoration: underline;
      }
    }
  }
}

/*stylelint-disable*/
.section.notification.bg-black {
  > div {
    background-color: var(--bg-color-black);

    p,
    a {
      color: var(--color-white);
    }
  }
}

header {
  height: var(--nav-mobile-height);

  @media (width >=1024px) {
    height: var(--nav-height);
  }
}

.partner > header {
  > div > div > nav {
    > div:not(:nth-child(2)) {
      display: none;
    }

    > div:nth-child(2) {
      margin: 0 auto;
    }
  }
}

.custom > header {
  > div > div > nav {
    > div:not(:nth-child(2)) {
      display: none;
    }

    > div:nth-child(2) {
      margin: 0 auto;
    }
  }
}

.section.breadcrumb-container {
  background: var(--color-white);
  padding: 0 24px;
  border-top: 1px solid var(--neutral-300);
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;

  &.image {
    > .default-content-wrapper p {
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
    }
  }
}

.section.text-align-left {
  text-align: left;
}
.section.text-align-center {
  text-align: center;
}
.section.text-align-right {
  text-align: right;
}
.section.text-align-justify {
  text-align: justify;
}

.section.image-left {
  display: flex;
  flex-direction: row;
}
.section.image-right {
  display: flex;
  flex-direction: row-reverse;
}
.section.image-top {
  display: flex;
  flex-direction: column;
}
.section.image-bottom {
  display: flex;
  flex-direction: column-reverse;
}

/*stylelint-enable*/

.error {
  color: var(--color-error);
}

@media (width >= 768px) {
  main .section {
    padding-top: 32px;
    padding-left: var(--spacing-l-alt);
    padding-right: var(--spacing-l-alt);
  }

  main .section > div {
    max-width: var(--max-width-container);
    margin: var(--spacing-l) auto 0;
  }

  footer .section > div {
    max-width: var(--max-width-container);
    margin: 0 auto;
  }

  .section .default-content-wrapper p {
    font-size: var(--font-size-l);
    line-height: var(--line-height-tight-xl-alt);
  }

  /* ul and ol list */
  main .section ol,
  main .section ul {
    gap: var(--spacing-l);
  }

  main .section ul > li > ul,
  main .section ol > li > ol,
  main .section ul > li > ol,
  main .section ol > li > ul {
    gap: var(--spacing-l);
    margin-top: var(--spacing-l);
  }

  .section ol li,
  .section .default-content-wrapper ol li,
  .section ol li > p,
  .section .default-content-wrapper ol li > p {
    color: var(--color-black);
    font-family: var(--font-family-body);
    font-size: var(--font-size-l);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-tight-xl); /* 142.105% */
    margin: 0;
  }

  /* Notification pane */
  .section.notification {
    > div {
      max-width: 100%;
      padding: 0.5rem 0;
      text-align: center;
    }
  }
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--color-grey);
}

/* Header Nav */
.header-nav-container.section {
  display: grid;
  margin: var(--spacing-l) var(--spacing-s);
  grid-auto-rows: auto;
  padding: 0;

  @media (width >=768px) {
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--spacing-l);
    padding: var(--spacing-l) var(--spacing-s);
    border-radius: 1rem;
    border: 1px solid var(--bg-color-paper);
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    max-width: var(--max-width-large);
    margin: -120px var(--spacing-l) var(--spacing-xxl) var(--spacing-l);
  }

  @media (width >=1024px) {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 var(--spacing-xl);
    padding: var(--spacing-l) var(--spacing-xxxl);
    border-radius: 1rem;
    border: 1px solid var(--bg-color-paper);
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    margin: var(--spacing-xxl-negative) var(--spacing-xxxl) var(--spacing-xxl) var(--spacing-xxxl);
    margin-left: auto;
    margin-right: auto;
    width: 1232px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header-nav-wrapper {
    width: -webkit-fill-available;
    margin-top: 0;
  }

  .header-nav-wrapper:nth-child(1) {
    @media (width >=768px) {
      grid-area: 1 / 1 / span 2 / span 1;
    }

    @media (width >=1024px) {
      grid-area: 1 / 1 / span 4 / span 1;

      span.divider:last-child {
        display: none;
      }
    }
  }

  .header-nav-wrapper:nth-child(2) {
    @media (width >=768px) {
      grid-area: 3 / 1 / span 4 / span 1;

      span.divider:last-child {
        display: none;
      }
    }

    @media (width >=1024px) {
      grid-area: 1 / 2 / span 1 / span 1;

      span.divider:last-child {
        display: flex;
      }
    }
  }

  .header-nav-wrapper:nth-child(3) {
    @media (width >=768px) {
      grid-area: 1 / 2 / span 1 / span 1;
    }

    @media (width >=1024px) {
      grid-area: 2 / 2 / span 6 / span 1;

      span.divider:last-child {
        display: none;
      }
    }
  }

  .header-nav-wrapper:nth-child(4) {
    @media (width >=768px) {
      grid-area: 2 / 2 / span 1 / span 1;
    }

    @media (width >=1024px) {
      grid-area: 1 / 3 / span 1 / span 1;
    }
  }

  .header-nav-wrapper:nth-child(5) {
    @media (width >=768px) {
      grid-area: 3 / 2 / span 1 / span 1;

      .divider {
        margin: var(--spacing-xs) 0;
      }
    }

    @media (width >=1024px) {
      grid-area: 2 / 3 / span 1 / span 1;

      .divider {
        margin: var(--spacing-xs) 0;
      }
    }
  }

  .header-nav-wrapper:nth-child(6) {
    @media (width >=768px) {
      grid-area: 4 / 2 / span 1 / span 1;

      .divider {
        margin: var(--spacing-xs) 0;
      }
    }

    @media (width >=1024px) {
      grid-area: 3 / 3 / span 1 / span 1;

      .divider {
        margin: var(--spacing-xs) 0;
      }
    }
  }

  .header-nav-wrapper:nth-child(7) {
    @media (width >=768px) {
      grid-area: 5 / 2 / span 1 / span 1;

      .divider {
        margin: var(--spacing-xs) 0;
      }

      span.divider:last-child {
        display: none;
      }
    }

    @media (width >=1024px) {
      grid-area: 4 / 3 / span 1 / span 1;

      .divider {
        margin: var(--spacing-xs) 0;
      }

      span.divider:last-child {
        display: none;
      }
    }
  }
}

.section.header-nav-container {
  @media (width < 1024px) {
    display: none;
  }
}

/* helper classes */
.hide {
  display: none !important;
}

.mt-4 {
  margin-top: var(--spacing-l);
}

.mb-4 {
  margin-bottom: var(--spacing-l);
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.my-4 {
  margin-top: var(--spacing-l);
  margin-bottom: var(--spacing-l);
}

.pt-8 {
  padding-top: var(--spacing-l) !important;

  @media (width >=764px) {
    padding-top: var(--spacing-xl-l-alt) !important;
  }
}

.pt-4 {
  padding-top: var(--spacing-l) !important;
}

.pt-2 {
  padding-top: var(--spacing-xxxs) !important;
}

.pb-1 {
  padding-bottom: var(--spacing-xxxs) !important;
}

.pb-2 {
  padding-bottom: var(--spacing-xxs) !important;
}

.pb-3 {
  padding-bottom: var(--spacing-xs) !important;
}

.pb-4 {
  padding-bottom: var(--spacing-l) !important;
}

.pb-8 {
  padding-bottom: var(--spacing-l) !important;

  @media (width >=764px) {
    padding-bottom: var(--spacing-xl-l-alt) !important;
  }
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.py-4 {
  padding-top: var(--spacing-l);
  padding-bottom: var(--spacing-l);
}

.mb-hd-0 h2 {
  margin-bottom: 0 !important;
}

.ev-icon {
  background-image: url('../../icons/EV-logo.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

strong {
  font-family: var(--font-family-bold);
  font-weight: var(--font-weight-semibold);
}

em {
  font-style: italic;
}

main .section.custom-list.custom-list-tips > .default-content-wrapper {
  ul + p,
  ol + p {
    background-color: #fff;
    margin: 0;
    padding: 24px 16px;
    display: flex;
    gap: 16px;
    align-items: center;

    span.icon {
      width: 48px;
      height: 48px;
    }
  }
}

.section.rating-widget-container {
  background: var(--bg-color-paper);
}

.section.rating-widget-container .default-content-wrapper {
  text-align: center;
}

/* stylelint-disable */
.section.side-page-text-block {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  ol,
  p {
    margin: 0;
  }

  &.legal.mt-4 {
    margin-top: var(--spacing-m);
  }

  &.oly-landing-app {
    padding: 32px 16px;

    ol {
      -webkit-padding-start: 24px;
      padding-inline-start: 24px;
    }

    .image-link-wrapper {
      padding-right: 64px;
      padding-bottom: 24px;
      padding-top: 24px;
      display: block;
    }

    .image-link-wrapper:last-of-type {
      padding-right: 0;
      padding-top: 24px;
    }
  }

  .default-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    h2,
    h3 {
      font-weight: 700;
      font-size: var(--font-size-l-alt);
      line-height: 2.5rem;
    }

    p {
      strong {
        font-size: var(--font-size-s);
        font-family: var(--font-family-bold);
        color: var(--color-black);
      }

      font-size: var(--font-size-xs);
      font-weight: 400;
      line-height: 1.5rem;
    }
  }

  @media (width >=1024px) {
    padding: 48px 312px;

    &.legal {
      padding: var(--spacing-xs-l-alt) 312px;
    }

    &.oly-landing-app {
      padding: 32px 312px;

      .image-link-wrapper {
        display: inline-block;
      }
    }

    &.legal.mt-4 {
      margin-top: 76px;
    }

    .default-content-wrapper {
      h2,
      h3 {
        font-size: var(--font-size-lg);
        line-height: 3rem;
        font-weight: 700;
      }

      p {
        strong {
          font-size: var(--font-size-m);
        }

        font-size: var(--font-size-s);
        line-height: 2rem;
      }
    }
  }
}

.section.tablinks {
  > div {
    max-width: 450px;
    display: flex;
    flex-direction: row;

    > p:first-child {
      > a {
        border-bottom: 2px solid var(--link-color);
        border-radius: 0;
        pointer-events: none;
      }
    }

    > p > a {
      background-color: var(--bg-color-neutral);
      color: #000;
      border-bottom: 2px solid var(--color-disabled);
      border-radius: 0;
    }
  }
}

.section.tablinks-2 {
  > div {
    max-width: 450px;
    display: flex;
    flex-direction: row;

    > p:nth-of-type(2) {
      > a {
        border-bottom: 2px solid var(--link-color);
        border-radius: 0;
        pointer-events: none;
      }
    }

    > p > a {
      background-color: var(--bg-color-neutral);
      color: #000;
      border-bottom: 2px solid var(--color-disabled);
      border-radius: 0;
    }
  }
}

.section.tablinks-3 {
  > div {
    max-width: 450px;
    display: flex;
    flex-direction: row;

    > p:last-child {
      > a {
        border-bottom: 2px solid var(--link-color);
        border-radius: 0;
        pointer-events: none;
      }
    }

    > p > a {
      background-color: var(--bg-color-neutral);
      color: #000;
      border-bottom: 2px solid var(--color-disabled);
      border-radius: 0;
    }
  }
}

/* stylelint-enable */

@media (width <= 768px) {
  .section.tablinks {
    > div {
      display: flex;
      justify-content: center;

      > p > a {
        font-size: 12px;
      }
    }
  }

  .section.tablinks-2 {
    > div {
      display: flex;
      justify-content: center;

      > p > a {
        font-size: 12px;
      }
    }
  }

  .section.tablinks-3 {
    > div {
      display: flex;
      justify-content: center;

      > p > a {
        font-size: 12px;
      }
    }
  }
}

.section.takeaway {
  > div:last-child {
    > div > div > div {
      border: 1px solid var(--border-color);
      padding: 15px;
      border-radius: 5px;
      margin-bottom: 3px;
      align-self: stretch;
    }
  }
}

/* stylelint-disable */
.section.running-cost {
  p:nth-child(1) {
    color: var(--link-color);
  }

  h2,
  h3 {
    font-weight: 700;
    font-size: var(--font-size-l-alt);
    line-height: 2.5rem;

    @media (width >=1024px) {
      font-size: var(--font-size-lg);
      line-height: 3rem;
    }
  }
}

/* stylelint-enable */
.section.custom-hero {
  @media (width <=1024px) {
    > div > div {
      height: 350px;

      div {
        background-color: var(--bg-color-light-beige);

        > div:first-child > div > picture {
          inset: auto;
          z-index: 1;
          bottom: 0;
        }

        > div:nth-child(2) {
          height: 350px;

          > div {
            z-index: 1;
            position: relative;
          }
        }
      }
    }
  }
}

.section.download-section {
  max-width: var(--max-width-container);
  margin: 0 auto;
}

@media (width >=1024px) {
  .section.campaign-form {
    width: 1024px;
    margin-top: -120px !important;
    border-radius: 5px;
  }
}

/* custom utilities that we can extend for variations of different components */
/* stylelint-disable */
.bg-primary {
  background-color: var(--teal-500);
  color: var(--color-white);
}

.bg-paper {
  background-color: var(--bg-color-paper);
  color: var(--color-black);
}

.bg-grape {
  background-color: var(--grape-500);
  color: var(--color-white);
}

.bg-purple {
  background-color: var(--purple-400);
  color: var(--color-black);
}

.bg-blue {
  background-color: var(--blue-300);
  color: var(--color-black);
}

.bg-gold {
  background-color: var(--gold-400);
  color: var(--color-black);
}

/* dark text group */
.bg-primary,
.bg-grape {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a {
    color: var(--color-white);
  }

  button,
  a.button {
    background-color: var(--color-white);
    color: var(--link-color);

    &:hover {
      background-color: var(--link-hover-color);
      color: var(--color-white);
    }
  }
}

/* light text group */
.bg-paper,
.bg-purple,
.bg-blue,
.bg-gold {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a {
    color: var(--color-black);
  }

  button,
  a.button {
    background-color: var(--link-color);
    color: var(--color-white);

    &:hover {
      background-color: var(--bg-button-hover);
      color: var(--color-white);
    }
  }
}

.headings-primary {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--forest-500) !important;
  }
}

.headings-white {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--color-white) !important;
  }
}

.headings-blue {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--blue-500) !important;
  }
}

.headings-navy {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--navy-500) !important;
  }
}

.headings-gold {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--gold-500) !important;
  }
}

.headings-purple {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--purple-500) !important;
  }
}

.headings-pink {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--pink-500) !important;
  }
}

.headings-sky {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--sky-500) !important;
  }
}

.headings-orange {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--orange-500) !important;
  }
}

.headings-rust {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--rust-500) !important;
  }
}

.headings-grape {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--grape-500) !important;
  }
}

.headings-grey {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--color-grey) !important;
  }
}

.section.links-panel ul {
  display: flex;
  gap: var(--spacing-xs);
  list-style: none;
  padding: 0;
  flex-wrap: wrap;

  @media (width >=768px) {
    flex-wrap: nowrap;
  }
}

.section.links-panel ul li {
  margin: 0;
}

.section.links-panel ul li a {
  display: inline-block;
  padding: var(--spacing-xxs-l) var(--spacing-m);
  font-family: var(--font-family-semibold);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--link-color);
  background: var(--background-color);
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--border-color);
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.section.links-panel ul li a:hover {
  background: var(--button-bg-color-hover);
  color: var(--color-white);
  border-color: var(--button-bg-color-hover);
}

/* Active/Selected Button */
.section.links-panel ul li strong a {
  background: var(--button-bg-color);
  color: var(--color-white);
  border-color: var(--button-bg-color);
}

.section.links-panel {
  padding: var(--spacing-l-alt) var(--spacing-xs);
}

.section.links-panel.bg-blue ul li a {
  color: var(--navy-500);
  border-color: var(--navy-500);
  background: var(--color-white);
}

.section.links-panel.bg-blue ul li a:hover {
  background: var(--navy-500-tint);
  color: var(--color-white);
}

.section.links-panel.bg-blue ul li strong a {
  background: var(--navy-500);
  color: var(--color-white);
  border-color: var(--navy-500);
}

/* /marketplace/search */
.filter-resultant .filter-resustant-child {
  padding: var(--spacing-s);
  border-top: 1px solid #e7e6e6;
  font-size: 16px;
}

.active-filter .load-more {
  padding: var(--spacing-s);
}

.active-filter .load-more button {
  border: none;
}

.filter-resultant .filter-resustant-child .card-title {
  font-weight: bold;
  font-family: var(--heading-font-family);
  color: var(--color-black);
  font-size: var(--font-size-s);
  line-height: 1.5rem;
  cursor: pointer;
  margin-bottom: var(--spacing-s);
}

.filter-resultant .filter-resustant-child .card-article-description {
  font-size: 14px;
}

.filter-resultant .filter-resustant-child [class='cardPublishedDate'] {
  color: var(--color-grey);
  font-size: var(--font-size-xs-alt);
}

.text-small {
  font-size: var(--font-size-xs);
}

.text-medium {
  font-size: var(--font-size-m);
}

.text-large {
  font-size: var(--font-size-lg);
}

.text-color-grey {
  color: var(--color-grey);
}

.text-color-black {
  color: var(--color-black);
}

.text-color-brand {
  color: var(--color-pink);
}

/* Plan Partners Brand Color System */
@import url('color-utilities.css');

/* Plan Partners Brand Color Accessibility Enhancements */
.pp-accessibility-warning::after {
  content: '⚠️ Low contrast - may not meet WCAG AA standards';
  position: absolute;
  top: -30px;
  left: 0;
  background: var(--pp-secondary-error-red);
  color: var(--pp-primary-ink-blue);
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pp-accessibility-warning:hover::after {
  opacity: 1;
}

/* Enhanced Color Text Container */
.enhanced-color-text-container .container {
  position: relative;
}

.enhanced-color-text-container .pp-accessibility-warning {
  position: relative;
}

.pp-richtext-border {
  background-color: var(--pp-primary-parchment);

  .default-content-wrapper {
    border: solid var(--pp-primary-white);
    border-width: 16px;
    background-color: var(--pp-primary-parchment);
    padding: 40px 16px;
    margin-bottom: 24px;

    @media (width >= 768px) {
      border: solid 48px var(--pp-primary-white);
      padding: 40px 16px 40px 32px;
    }
  }
}

.pp-underline-text strong.pp-underline-text-bg {
  position: relative;
  font-weight: var(--font-weight-body);
}

.pp-underline-text strong.pp-underline-text-bg::after {
  content: '';
  position: absolute;
  left: var(--spacing-negative-xxs-l);
  bottom: var(--spacing-negative-xxs-l-alt);
  width: 115%;
  height: var(--spacing-xs);
  background-color: #2e6bfa;
  -webkit-mask-image: url('/icons/pp-blue-underline.svg');
  mask-image: url('/icons/pp-blue-underline.svg');

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;

  -webkit-mask-position: left center;
  mask-position: left center;
}

.pp-bg-text del.pp-strike-italic-bg {
  position: relative;
  font-weight: var(--font-weight-body);
  text-decoration: none;
  z-index: 0;
}

.pp-bg-text del.pp-strike-italic-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--pp-primary-pastel-blue);
  z-index: -1;
  /* clip-path: polygon(
  0% 13%, 10% 19%, 22% 13%, 44% 9%, 61% 19%, 76% 23%, 92% 15%, 100% 25%,
  98% 83%, 90% 81%, 75% 96%, 50% 88%, 30% 90%, 12% 84%, 0% 79%
  ); */ /* keep this for future use */

  /* background-image: url('/icon/bg-vector.svg'); */
  background: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22321%22%20height%3D%2259%22%20viewBox%3D%220%200%20321%2059%22%20fill%3D%22none%22%3E%0A%20%20%3Cpath%20d%3D%22M1.54589%2029.1145C146.125%2037.2603%20207.376%2020.9528%20318.546%2030.687%22%20stroke%3D%22%23AEE1FF%22%20stroke-width%3D%2254.9593%22%20stroke-miterlimit%3D%2210%22%2F%3E%0A%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: cover;
  height: 52px;
  width: 100%;

  @media (width >= 768px) {
    height: var(--spacing-l-l-alt);
  }
}

main .section span.button-container a {
  display: inline-flex;
  align-items: center;
}

.section.section-video-transcript {
  > div.embed-wrapper {
    margin-top: 0;
    padding-top: var(--spacing-l);
    padding-bottom: var(--spacing-l-alt);
    border-bottom: 1px solid var(--pp-brand-neutral-400);

    @media (width < 1280px) {
      padding-bottom: var(--spacing-l);
    }

    @media (width < 768px) {
      padding-inline: var(--spacing-s);
    }
  }

  > .default-content-wrapper:first-child {
    padding-top: var(--spacing-l-alt);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);

    @media (width < 1280px) {
      padding-top: var(--spacing-l);
    }

    @media (width < 768px) {
      padding-inline: var(--spacing-s);
    }

    h2 {
      margin: 0;
      font-weight: var(--font-weight-body);
    }

    p {
      margin: 0;
      font-size: var(--font-size-l);
      font-weight: var(--font-weight-body);
      list-style: var(--line-height-tight-xl);
    }
  }

  > .default-content-wrapper:last-child {
    margin-top: 0;
    padding-inline: 0;
    background: var(--pp-primary-parchment);

    > .button-container {
      margin-top: 0;
      padding-top: var(--spacing-xs);

      @media (width < 768px) {
        padding-top: 0;
      }

      > a.button {
        margin: 0;
        padding: 0;
        background: none;
        color: var(--link-color);
        font-size: var(--font-size-m-alt);
        font-weight: var(--font-weight-semibold);
        line-height: var(--line-height-tight-xl);
        text-decoration: underline;
        text-underline-offset: auto;
        display: inline-flex;
        align-items: center;
        gap: 7px;

        img {
          height: 18px;
          width: 18px;
        }

        &:hover {
          color: var(--pp-primary-marker-blue);
          text-decoration-thickness: 12%;
        }

        &:active {
          background: none;
          background-image: linear-gradient(
            transparent 18%,
            var(--yellow-500) 18%,
            var(--yellow-500) 82%,
            transparent 82%
          );
          background-repeat: no-repeat;
          background-size: calc(100% - 31px) 100%;
          background-position: left 31px center;
          text-decoration-thickness: 12%;
          outline: none;
        }

        &:focus-visible {
          background: none;
          background-image: linear-gradient(
            transparent 18%,
            var(--yellow-500) 18%,
            var(--yellow-500) 82%,
            transparent 82%
          );
          background-repeat: no-repeat;
          background-size: calc(100% - 31px) 100%;
          background-position: left 31px center;
          text-decoration-thickness: 12%;
        }
      }
    }
  }

  > div {
    padding-inline: var(--spacing-l-alt);
    background: var(--color-white);
  }

  > .accordion-group-wrapper {
    margin-top: 0;
    border-bottom: 1px solid var(--pp-brand-neutral-400);
    padding-inline: 0;

    .accordion.block {
      border-bottom: none;

      summary {
        border-top: none;
        border: 2px solid transparent;

        > h3 {
          font-size: var(--font-size-l);
          font-weight: var(--font-weight-semibold);
          line-height: var(--line-height-tight-xl);
        }

        &::after {
          padding-right: var(--spacing-s);
        }

        &:hover {
          text-underline-offset: auto;
          color: var(--color-black);

          &::after {
            content: url(../../icons/plus-dark-blue.svg);
          }
        }

        &:active {
          background: none;
          background-image: linear-gradient(
            transparent 35%,
            var(--yellow-500) 35%,
            var(--yellow-500) 65%,
            transparent 65%
          );
          background-repeat: no-repeat;
          background-size: calc(100% - 66px) 100%;
          background-position: left 24px center;
          text-decoration: underline;
          text-decoration-thickness: 12%;

          @media (width < 768px) {
            background-size: calc(100% - 26px) 100%;
            background-position: left 0px center;
          }
        }

        &:focus-visible {
          background: none;
          background-image: linear-gradient(
            transparent 35%,
            var(--yellow-500) 35%,
            var(--yellow-500) 65%,
            transparent 65%
          );
          background-repeat: no-repeat;
          background-size: calc(100% - 66px) 100%;
          background-position: left 24px center;
          border: 2px solid var(--pp-primary-ink-blue);
          outline: 2px solid var(--yellow-500);
          text-decoration: underline;
          text-decoration-thickness: 12%;

          @media (width < 768px) {
            background-size: calc(100% - 26px) 100%;
            background-position: left 0px center;
          }
        }
      }

      details[open] {
        summary {
          color: var(--link-color);

          &::after {
            content: url(../../icons/minus.svg);
          }

          &:hover {
            color: var(--pp-primary-marker-blue);
          }
        }

        .accordion-content {
          max-width: 100%;
          padding-inline: var(--spacing-s);
          padding-bottom: var(--spacing-l-alt);

          @media (width < 1280px) {
            margin: 0;
            padding-inline: var(--spacing-xs);
            padding-bottom: var(--spacing-xs);
          }

          > div {
            background: var(--pp-primary-parchment);
            padding-inline: var(--spacing-s);
            padding-block: var(--spacing-m);
            max-height: 748px;
            overflow: auto;

            @media (width < 1280px) {
              padding: var(--spacing-xs);
            }

            &::-webkit-scrollbar {
              width: 15px;
            }

            &::-webkit-scrollbar-track {
              background: color-mix(in srgb, var(--pp-primary-ink-blue) 30%, transparent);
            }

            &::-webkit-scrollbar-thumb {
              background: var(--pp-secondary-link-biro-blue);
              border-radius: 2px;
              background-image: linear-gradient(to right, var(--pp-primary-white), var(--pp-primary-white)),
                linear-gradient(to right, var(--pp-primary-white), var(--pp-primary-white)),
                linear-gradient(to right, var(--pp-primary-white), var(--pp-primary-white));
              background-size: 55% 2px;
              background-position:
                center calc(50% - 4px),
                center 50%,
                center calc(50% + 4px);
              background-repeat: no-repeat;
            }
          }
        }
      }
    }
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.text-left {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
  }
}

.secondary-button-white a.button.secondary {
  background-color: var(--pp-primary-white);
}

@media (width >= 1280px) {
  main .section {
    padding-left: 0;
    padding-right: 0;
  }
}
