@charset "UTF-8";
/**
 * main entry point and importer
 * the order of @import's here is important.
 */
/* Overall site variables and settings. */
/**
 * --------
 * SETTINGS
 * ALL global variables should be collected here.
 *
 * 1. DIRECTORIES
 * 2. WIDTHS
 *    2.A Common breakpoints
 *    2.B Semantic widths
 * 3. FONTS
 *    3.A Imported fonts
 *    3.B Basic Font Stacks
 *    3.C Imported Families Variables
 * 4. COLORS
 *    4.A Raw colors
 *    4.B Theme colors
 *    4.C Semantic colors
 *    4.D Color Map
 * 5. LAYOUT & MISC
 */
/**
* -----------
* 1. DIRECTORIES
*
* Aliases for common directories. Allows you to do:
! example:

  background-image: url($dir-img + 'someimage.jpg');

*/
/**
 * ---------
 * 2. WIDTHS
 *
 * 2.A Common breakpoints ----------
 */
/* small phone breakpoing (iPhone 5, etc.) */
/* general phone breakpoint */
/* general tablet portrait breakpoint */
/* general tablet portrait breakpoint */
/* general tablet landscape breakpoint */
/* general max container width */
/* general design max */
/**
 * 2.B Semantic/Design Specific widths ----------
 * assume any "content" widths will
 * also get horizontal padding/gutters.
 *
 * These are intended to be used with the layout-container mixin(s):
 *
 *  layout-container( x ) // where x is some max width, defaults to $width--content-max
 *
 *  A few common shortcut versions that are frequently used:
 *
 *  layout-container--full // shortcut for full-width 100%
 *  layout-container--large // shortcut for $width--content-large
 *  layout-container--reading // shortcut for $width--content-reading
 *
 *  Create more quick aliases in sass/1.mixins/_layout-container.scss as needed for
 *  your project's designs.
 *
 */
/**
 * @include mobile() relies on this value.
 */
/**
 * Block variable
 */
/**
 * Size limit for clamp() functions
 */
/**
 * --------
 * 3. FONTS
 *
 * 3.A Imported fonts ----------

  ! example - uncomment to use it or delete it:

    @font-face {
      font-family: "Custom Family Name";
      src: url('../fonts/path-to-font.woff2') format('woff2');
      font-weight: 300;
      font-style: normal;
    }
 */
/**
 * 3.B Basic Font Stacks ----------
 */
/**
 * 3.C Imported Families Variables ----------
 * include imported family variables here, along with a sans/serif fallback

  ! example - uncomment to use it or delete it:
    $font--custom-family-name: "Custom Family Name", $font--sans;
 */
/**
 * 3.D  Semantic Fonts ----------
 * if you're using imported families, use family variables
 */
/**
 * ---------
 * 4. COLORS
 *
 * 4.A Raw colors ----------
 */
/* Bootstrap Override. */
/**
 * 4.B Theme colors ----------
 */
/**
 * 4.C Semantic colors ----------
 */
/**
 * 4.D Color Map ----------
 *
 */
.bg--apta-blue {
  background-color: #35287C;
  color: #fff;
}

.bg--lavender {
  background-color: #E9E6FF;
}

.bg--electric {
  background-color: #6049E9;
  color: #fff;
}

.bg--progress {
  background-color: #007BFF;
  color: #fff;
}

.bg--morning {
  background-color: #9ECAF9;
}

.bg--steel {
  background-color: #E7E7E7;
}

.bg--smart-black {
  background-color: #0A061C;
  color: #fff;
}

.bg--purple-black {
  background-color: #18113C;
  color: #fff;
}

/**
 * ---------
 * 5. LAYOUT & MISC
 */
/**
 * Sizes for components that other elements must
 * size and position around.
 */
/**
 * default padding for sections
 * and other full-width containers
 */
/* z-index ... index */
/* This should pretty much always be the largest z-index. */
/* default speed of animation transitions */
/* default shadow */
@keyframes pulse-right {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
/**
 * this is a basic "reset" to make a button or link
 * look less styled, in prep for other styles or
 * mixins to override.
 */
/* a basic block button */
/**
 * Clamp mixin being all values inserted without units (numbers only):
 * The variable $width (the one that gets a `vw` value) in the clamp formula represents a percentage of the viewport's width.
 * It allows the size to scale responsively based on the width of the viewport.
 * This ensures that the element adjusts its size dynamically as the viewport size changes,
 * providing a more fluid and adaptable design.
 */
:root {
  --header-height: clamp(100px, 8.21vw, 120px);
}

/* Defaults to Max Content */
/* Full fluid, 100% width */
/* Narrow containers intended for reading content */
/**
 * visually hide something
 * but keep it rendered
 * for non-visual users
 * and screen-readers.
 */
/**
 * Use to only display content when it's focused, or one of its child elements is focused
 * (i.e. when focus is within the element/container that the class was applied to)
 * Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 */
.visually-hidden,
.--hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}

.visually-hidden-focusable:not(:focus):not(:focus-within),
.--hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}

/* For text that gets output from a WYSIWYG. */
.entry-content {
  /* Alignment */
  /* Text meant only for screen readers */
  /**
   * Media
   */
  /* Make sure embeds and iframes fit their containers */
}
.entry-content:empty {
  display: none;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  line-height: 1.25;
  margin-bottom: 1rem;
}
.entry-content p {
  margin-bottom: 1.4em;
}
.entry-content ol,
.entry-content ul {
  margin-bottom: 1.4em;
  padding-left: 1.4em;
}
.entry-content ol {
  list-style-type: decimal;
  margin-left: 1.4em;
  padding-left: 0.5em;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content img {
  height: auto;
  max-width: 100%;
  margin-bottom: 0.9em;
}
.entry-content hr {
  background: #eee;
  border-bottom: 1px solid #ddd;
  border: none;
  height: 2px;
  margin: 2em 0;
}
@media screen and (max-width: 600px) {
  .entry-content .alignleft,
.entry-content .alignright,
.entry-content .aligncenter {
    float: none !important;
    display: block !important;
    margin: 0 auto !important;
  }
}
.entry-content .alignleft {
  display: inline;
  float: left;
  margin-right: 1em;
}
.entry-content .alignright {
  display: inline;
  float: right;
  margin-left: 1em;
}
.entry-content .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}
.entry-content .assistive-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}
.entry-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.entry-content .wp-caption {
  border: none;
  color: #969697;
  font-size: 1.5rem;
  margin-bottom: 0;
  max-width: 100%;
}
.entry-content .wp-caption.aligncenter, .entry-content .wp-caption.alignleft, .entry-content .wp-caption.alignright {
  margin-bottom: 0;
}
.entry-content .wp-caption img {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}
.entry-content .wp-caption .wp-caption-text {
  margin: 0.8075em 0 0;
}
.entry-content .wp-caption-text {
  text-align: center;
}
.entry-content .gallery {
  margin-bottom: 1.4em;
}
.entry-content .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}
.entry-content .gallery dd {
  margin: 0;
}
.entry-content embed,
.entry-content iframe,
.entry-content object {
  max-width: 100%;
}
.entry-content table {
  border-collapse: collapse;
  border-spacing: 0;
  color: #000;
  margin: 1em 0;
  width: 100%;
}
.entry-content td,
.entry-content th {
  border: 1px solid transparent;
  /* No more visible border */
  height: 3em;
  transition: background 250ms, color 250ms;
  /* Simple transition for hover effect */
  vertical-align: middle;
}
.entry-content th {
  background: #bfbfbf;
  /* Darken header a bit */
  font-weight: bold;
}
.entry-content td {
  background: #ececec;
  text-align: center;
}
.entry-content tr {
  /* Cells in even rows are one color */
  /* Cells in odd rows are another */
}
.entry-content tr:nth-child(even) td {
  background: #ececec;
}
.entry-content tr:nth-child(odd) td {
  background: #d9d9d9;
}
.entry-content tr td:hover {
  background: #000;
  color: white;
}

/* Gutenberg Styling */
.wp-block-columns {
  display: flex;
}

.wp-block-column {
  flex: 1;
}

/* Gutenberg Videos */
figure.wp-block-embed.is-type-video,
.wp-block-embed__wrapper {
  position: relative;
  height: auto;
  padding-bottom: 0;
}

.wp-block-embed__wrapper {
  padding-bottom: 56.25%;
  /* 16:9 aspect-ratio */
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Internal Video Theming */
.wp-block-video .wp-block-embed__wrapper,
.wp-block-video figcaption {
  display: flex;
  font-size: 1em;
}

/* Embedded Video Theming */
.wp-block-embed .wp-block-embed__wrapper,
.wp-block-embed figcaption {
  display: flex;
  font-size: 1em;
}

/**
 * CLEAR VISUAL KEYBOARD FOCUS
 *
 * This relies on what-input.js:
 *
 * suppress focus ring on form controls
 * for mouse and touch users.
 */
[data-whatintent=mouse] *:focus,
[data-whatintent=touch] {
  outline: none;
}

[data-whatintent=keyboard] {
  /**
  * force clear visual focus for
  * keyboard navigation.
  */
  /**
  * special overrides for checkboxes
  * and radio buttons.
  */
}
[data-whatintent=keyboard] *:focus {
  outline: 2px dashed #6049E9;
  outline-offset: 2px;
}
[data-whatintent=keyboard] .--dark-bg *:focus {
  outline-color: #fff;
}
[data-whatintent=keyboard] body:not(.header-is-fixed):not(.menu-is-open) .header__navigation--resources .--dark-bg *:focus {
  outline-color: #6049E9;
}
[data-whatintent=keyboard] input[type=radio]:focus input[type=checkbox]:focus + label:before {
  outline: 2px dashed #6049E9;
  outline-offset: 2px;
}
[data-whatintent=keyboard] .main-menu__group-expander:focus,
[data-whatintent=keyboard] .main-menu__group-expander:focus-visible {
  opacity: 1;
}

/* accessible skip-navigation link */
.skip-link {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  padding: 4px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.visually-hidden.focusable.skip-link:focus, .visually-hidden.focusable.accessibility:focus, .visually-hidden.focusable.skip-filters:focus {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 900;
  clip: auto;
  height: auto;
  width: auto;
  font-size: 14px;
  color: white;
  background-color: black;
  padding: 0.75em;
  outline: none;
  border: 2px dashed #6049E9 !important;
}

/**
 * Remove all animations, transitions and smooth scroll
 * for people that prefer not to see them
 */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  box-sizing: border-box;
  font-size: 10px;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  overflow-x: hidden;
}
html:has(.search-is-open) html:has(.home-fully-locked) {
  overflow: hidden;
}
@media (max-width: 1024px) {
  html:has(.menu-is-open) {
    overflow: hidden;
  }
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  color: #000;
  background-color: #fff;
  font-weight: 400;
  font-size: 1.8em;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  visibility: hidden;
  transition: visibility 0.5s ease-in-out, opacity 0.1s ease-in-out;
}
body.document-ready {
  visibility: visible;
  opacity: 1 !important;
}

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

.--link-container {
  cursor: pointer;
}

.button--primary {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 20px;
  color: #fff;
  background-color: #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
}
.button--primary:hover, .button--primary:active, .button--primary:focus {
  text-decoration: none;
}
.button--primary::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.button--primary:hover, .button--primary:focus, .button--primary:active, .button--primary:visited {
  text-decoration: none;
  color: #fff;
}
.button--primary:hover::after, .button--primary:active::after {
  transform: rotate(-45deg);
}
.button--primary:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.button--primary:active {
  background-color: #35287C;
}
.button--primary:active:focus {
  box-shadow: none;
}
.button--primary[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.button--primary[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .button--primary {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .button--primary::after {
  background-color: #6049E9;
}
.--dark-bg .button--primary:hover {
  color: #6049E9;
}
.--dark-bg .button--primary:active {
  color: #fff;
  background-color: #6049E9;
}
.--dark-bg .button--primary:active::after {
  background-color: #fff;
}
.--dark-bg .button--primary:active:focus {
  box-shadow: none;
}
.--dark-bg .button--primary:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .button--primary[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
}
.--dark-bg .button--primary[disabled]::after {
  background-color: #0A061C;
}

.button--secondary {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 9px 20px;
  color: #6049E9;
  background-color: #fff;
  border: 1px solid #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out, border-color 0.175s ease-in-out, color 0.175s ease-in-out;
}
.button--secondary:hover, .button--secondary:active, .button--secondary:focus {
  text-decoration: none;
}
.button--secondary:visited {
  color: #6049E9;
}
.button--secondary svg {
  margin-top: 0;
}
.button--secondary svg path {
  fill: #6049E9;
  transition: fill 0.175s ease-in-out;
}
.button--secondary.arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.button--secondary:hover {
  color: #fff;
  background-color: #6049E9;
}
.button--secondary:active {
  background-color: #35287C;
}
.button--secondary:active:focus {
  box-shadow: none;
}
.button--secondary:hover::after, .button--secondary:active::after {
  transform: rotate(-45deg);
  background-color: #fff;
}
.button--secondary:hover svg path, .button--secondary:active svg path {
  fill: #fff;
}
.button--secondary:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.button--secondary[disabled] {
  background-color: #fff;
  color: #0A061C;
  border-color: #0A061C;
  outline: none;
  pointer-events: none;
}
.button--secondary[disabled].arrow::after {
  background-color: #0A061C;
}
.--dark-bg .button--secondary {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.--dark-bg .button--secondary::after {
  background-color: #fff;
}
.--dark-bg .button--secondary svg path {
  fill: #fff;
}
.--dark-bg .button--secondary:visited {
  color: #fff;
}
.--dark-bg .button--secondary:visited svg path {
  fill: #fff;
}
.--dark-bg .button--secondary:hover {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .button--secondary:hover::after {
  background-color: #6049E9;
}
.--dark-bg .button--secondary:hover svg path, .--dark-bg .button--secondary:active svg path {
  fill: #6049E9;
}
.--dark-bg .button--secondary:active {
  background-color: #6049E9;
  color: #fff;
  border-color: #6049E9;
}
.--dark-bg .button--secondary:active::after {
  background-color: #fff;
}
.--dark-bg .button--secondary:active:focus {
  box-shadow: none;
}
.--dark-bg .button--secondary:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .button--secondary[disabled] {
  border-color: #7a7b7c;
  color: #7a7b7c;
}

.button--tertiary {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
}
.button--tertiary:hover, .button--tertiary:active, .button--tertiary:focus {
  text-decoration: none;
}
.button--tertiary::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.button--tertiary:visited {
  color: #35287C;
}
.button--tertiary:visited::after {
  background-color: #35287C;
}
.button--tertiary:hover, .button--tertiary:focus, .button--tertiary:active {
  color: #6049E9;
}
.button--tertiary:hover::after, .button--tertiary:active::after {
  transform: rotate(-45deg);
}
.button--tertiary:focus {
  border-bottom-color: #6049E9;
}
.button--tertiary:active {
  color: #35287C;
}
.button--tertiary:active::after {
  background-color: #35287C;
}
.button--tertiary:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.button--tertiary[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.button--tertiary[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .button--tertiary {
  color: #fff;
}
.--dark-bg .button--tertiary::after {
  background-color: #fff;
}
.--dark-bg .button--tertiary:hover {
  color: #fff;
}
.--dark-bg .button--tertiary:active {
  color: #E9E6FF;
}
.--dark-bg .button--tertiary:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .button--tertiary:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .button--tertiary:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .button--tertiary[disabled] {
  color: #E7E7E7;
}
.--dark-bg .button--tertiary[disabled]::after {
  background-color: #E7E7E7;
}

.button--arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 59px;
  height: 59px;
  border: 0;
  border-radius: 100%;
  background-color: transparent;
  transition: background-color 0.175s ease-in-out;
  cursor: pointer;
}
.button--arrow svg {
  width: 27px;
}
.button--arrow svg path {
  transition: fill 0.175s ease-in-out;
}
.button--arrow:hover {
  background-color: #6049E9;
}
.button--arrow:hover svg path {
  fill: #fff;
}

.button--close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 100%;
  background-color: #6049E9;
  transition: background-color 0.175s ease-in-out;
  cursor: pointer;
}
.button--close svg {
  width: 12px;
}
.button--close svg path {
  stroke: #fff;
  transition: stroke 0.175s ease-in-out;
}
.button--close:hover {
  background-color: #35287C;
}
.button--close:hover svg path {
  stroke: #fff;
}

h1,
.heading--1 {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(48px, 4.6575342466vw, 68px);
  line-height: 1.3;
}

h1.display,
.heading--display {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(52px, 5.0684931507vw, 74px);
  line-height: 1.3;
}

h2,
.heading--2 {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(36px, 3.0136986301vw, 44px);
  line-height: 1.3;
}

h3,
.heading--3 {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(30px, 2.4657534247vw, 36px);
  line-height: 1.3;
}

h4,
.heading--4 {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(24px, 1.9178082192vw, 28px);
  line-height: 1.4;
}

h5,
.heading--5 {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(20px, 1.6438356164vw, 24px);
  line-height: 1.4;
}

h6,
.heading--6 {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.l-container--max {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1920px;
}

.l-container--xlarge {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1460px;
}

.l-container--large {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1100px;
}

.l-container--reading {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: 933px;
}

a {
  color: #6049E9;
  transition: color 0.175s ease-out, -webkit-text-decoration 0.175s ease-out;
  transition: color 0.175s ease-out, text-decoration 0.175s ease-out;
  transition: color 0.175s ease-out, text-decoration 0.175s ease-out, -webkit-text-decoration 0.175s ease-out;
}
a:hover, a:focus, a:active {
  color: #6049E9;
  text-decoration: none;
}
a:visited {
  color: #35287C;
}
a.external {
  display: inline-flex;
  gap: 8px;
  font-size: 16px;
}
p a.external {
  font-size: 18px;
}
a.external svg {
  pointer-events: none;
  min-width: 12px;
}
.wysiwyg .--dark-bg a:not(.button--primary):not(.button--secondary):not(.button--tertiary):not(.breadcrumbs__link) {
  color: #007BFF;
}
.wysiwyg .--dark-bg a:not(.button--primary):not(.button--secondary):not(.button--tertiary):not(.breadcrumbs__link) path {
  fill: #007BFF;
}
.wysiwyg .--dark-bg a:not(.button--primary):not(.button--secondary):not(.button--tertiary):not(.breadcrumbs__link):visited {
  color: rgba(0, 123, 255, 0.8);
}
a.tag {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  background-color: #35287C;
  color: #fff;
  border-radius: 10px;
  transition: background-color 0.175s ease-out;
}
a.tag:hover {
  background-color: #6049E9;
}
a.download label {
  font-size: 16px;
  cursor: pointer;
}
a.download span {
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}
a.download:not(.button--primary) {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 5px;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
a.download:not(.button--primary) svg {
  transform: translateY(1px);
  min-width: 14px;
}
a.download:not(.button--primary) span {
  transform: translateY(2px);
  color: rgba(10, 6, 28, 0.5);
}
a.download:not(.button--primary):hover {
  border-color: #6049E9;
}
a.download:not(.button--primary):active {
  border-color: #35287C;
}
a.download:not(.button--primary):active label {
  color: #35287C;
}
a.download.button--primary {
  font-weight: 400;
}
a.download.button--primary::after {
  content: none;
}
a.download.button--primary svg rect:first-child {
  fill: #fff;
}
a.download.button--primary svg path {
  fill: #6049E9;
}
a.download.button--primary svg rect:last-child {
  fill: #6049E9;
}
a.download.button--primary span {
  transform: translateY(1px);
  color: #fff;
}
a.download.button--primary:hover {
  background-color: #35287C;
}

.login-page {
  padding: clamp(40px, 5vw, 80px) 20px;
}
.login-page__container {
  max-width: 460px;
  margin: 0 auto;
}
.login-page__title {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #0A061C;
  text-align: center;
  margin: 0 0 32px;
}
.login-page__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login-page__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-page__field label {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0A061C;
}
.login-page__field input {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  height: 40px;
  font-weight: 400;
  line-height: 1;
  padding: 0 20px;
  max-width: 100%;
  margin: 0;
  color: #0A061C;
  border: 1px solid #0A061C;
  border-radius: 30px;
  box-shadow: inset 0 0 0 0.5px #0A061C;
  appearance: none;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.175s ease-out;
  width: 100%;
}
.login-page__field input:placeholder-shown {
  border-color: rgba(10, 6, 28, 0.5);
  color: rgba(10, 6, 28, 0.5);
  box-shadow: inset 0 0 0 0.5px rgba(10, 6, 28, 0.5);
}
.login-page__field input::placeholder {
  color: rgba(10, 6, 28, 0.5);
}
.login-page__field input:focus, .login-page__field input:active {
  border-color: #6049E9;
  box-shadow: inset 0 0 0 0.5px rgba(96, 73, 233, 0.5);
  outline: none;
}
.login-page__field input[disabled] {
  color: #E7E7E7 !important;
  border-color: #E7E7E7 !important;
  background-color: #E7E7E7 !important;
}
.login-page__field input::-ms-expand {
  display: none;
}
.login-page__field input::-webkit-search-cancel-button {
  appearance: none;
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}
.login-page__error {
  font-size: 14px;
  color: #c00;
  padding: 10px 16px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}
.login-page__submit {
  margin-top: 4px;
}
.login-page__submit button {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 20px;
  color: #fff;
  background-color: #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
}
.login-page__submit button:hover, .login-page__submit button:active, .login-page__submit button:focus {
  text-decoration: none;
}
.login-page__submit button::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.login-page__submit button:hover, .login-page__submit button:focus, .login-page__submit button:active, .login-page__submit button:visited {
  text-decoration: none;
  color: #fff;
}
.login-page__submit button:hover::after, .login-page__submit button:active::after {
  transform: rotate(-45deg);
}
.login-page__submit button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.login-page__submit button:active {
  background-color: #35287C;
}
.login-page__submit button:active:focus {
  box-shadow: none;
}
.login-page__submit button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.login-page__submit button[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .login-page__submit button {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .login-page__submit button::after {
  background-color: #6049E9;
}
.--dark-bg .login-page__submit button:hover {
  color: #6049E9;
}
.--dark-bg .login-page__submit button:active {
  color: #fff;
  background-color: #6049E9;
}
.--dark-bg .login-page__submit button:active::after {
  background-color: #fff;
}
.--dark-bg .login-page__submit button:active:focus {
  box-shadow: none;
}
.--dark-bg .login-page__submit button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .login-page__submit button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
}
.--dark-bg .login-page__submit button[disabled]::after {
  background-color: #0A061C;
}
.login-page__help-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.login-page__help-links a {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
  font-size: 14px;
}
.login-page__help-links a:hover, .login-page__help-links a:active, .login-page__help-links a:focus {
  text-decoration: none;
}
.login-page__help-links a::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.login-page__help-links a:visited {
  color: #35287C;
}
.login-page__help-links a:visited::after {
  background-color: #35287C;
}
.login-page__help-links a:hover, .login-page__help-links a:focus, .login-page__help-links a:active {
  color: #6049E9;
}
.login-page__help-links a:hover::after, .login-page__help-links a:active::after {
  transform: rotate(-45deg);
}
.login-page__help-links a:focus {
  border-bottom-color: #6049E9;
}
.login-page__help-links a:active {
  color: #35287C;
}
.login-page__help-links a:active::after {
  background-color: #35287C;
}
.login-page__help-links a:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.login-page__help-links a[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.login-page__help-links a[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .login-page__help-links a {
  color: #fff;
}
.--dark-bg .login-page__help-links a::after {
  background-color: #fff;
}
.--dark-bg .login-page__help-links a:hover {
  color: #fff;
}
.--dark-bg .login-page__help-links a:active {
  color: #E9E6FF;
}
.--dark-bg .login-page__help-links a:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .login-page__help-links a:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .login-page__help-links a:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .login-page__help-links a[disabled] {
  color: #E7E7E7;
}
.--dark-bg .login-page__help-links a[disabled]::after {
  background-color: #E7E7E7;
}
.login-page__member-badge {
  text-align: center;
  margin-bottom: 16px;
}
.login-page__member-badge .member-badge {
  display: inline-block;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6049E9;
  background-color: #E9E6FF;
  padding: 4px 12px;
  border-radius: 20px;
}
.login-page__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.login-page__actions a {
  text-align: center;
}
.login-page__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.login-page__logout {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E7E7E7;
}

.page-title {
  padding: 48px 0 40px;
  text-align: center;
  color: #fff;
}

/* Content Restriction (gated page) */
.page-content--restricted {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 60px 24px;
}

.content-restricted {
  max-width: 520px;
  text-align: center;
}
.content-restricted__icon {
  color: #6049E9;
  margin-bottom: 24px;
}
.content-restricted__title {
  margin-bottom: 16px;
}
.content-restricted__message {
  margin-bottom: 32px;
  color: #7a7b7c;
  line-height: 1.6;
}
.content-restricted__actions {
  margin-bottom: 24px;
}
.content-restricted__actions .button--primary {
  min-width: 200px;
  justify-content: center;
}
.content-restricted__cta {
  font-size: 14px;
  color: #7a7b7c;
}
.content-restricted__cta a {
  color: #6049E9;
}

.paginationWrap {
  align-items: center;
  display: flex;
  justify-content: center;
}

.pagination > .screen-reader-text {
  display: none;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
}

.--dark-bg p {
  color: #fff;
}

.wysiwyg a.external {
  font-size: 1.8rem;
}
.wysiwyg ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 27px;
}
.wysiwyg ul li {
  position: relative;
  margin-bottom: 0.6em;
}
.wysiwyg ul ul, .wysiwyg ul ol {
  margin-top: 0.6em;
}
.wysiwyg ul:has(+ p) {
  margin-bottom: clamp(12px, 1.3698630137vw, 20px);
}
.wysiwyg ul li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: -1em;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
}
.wysiwyg ul ul li::before {
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  background-color: transparent;
}
.wysiwyg ul ul ul li::before {
  top: 0.4em;
  width: 8px;
  height: 12px;
  border: none;
  mask-image: url("/wp-content/themes/apta/images/caret-right.svg");
  mask-size: contain;
  background-color: #6049E9;
}
.wysiwyg ol {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 27px;
  counter-reset: apta;
}
.wysiwyg ol li {
  position: relative;
  margin-bottom: 0.6em;
}
.wysiwyg ol ul, .wysiwyg ol ol {
  margin-top: 0.6em;
}
.wysiwyg ol li {
  counter-increment: apta;
}
.wysiwyg ol li::marker {
  content: none;
}
.wysiwyg ol li::before {
  content: counter(apta, decimal) ".";
  position: absolute;
  top: -0.1em;
  left: -1.6em;
  width: 1.3em;
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.125em;
  text-align: right;
}
.wysiwyg ol ol {
  list-style: lower-alpha;
}
.wysiwyg ol ol li::before {
  content: counter(apta, lower-alpha) ".";
}
.wysiwyg ol ol ol li::before {
  content: counter(apta, lower-roman) ".";
}
.wysiwyg p {
  margin: 0;
}
.wysiwyg p:not(:last-child) {
  margin-bottom: clamp(20px, 2.2602739726vw, 33px);
}
.wysiwyg p:not(:last-child):has(+ ul) {
  margin-bottom: clamp(8px, 0.8219178082vw, 12px);
}
.wysiwyg img,
.wysiwyg figure {
  margin: 0 auto;
  max-width: 43.51%;
}
.wysiwyg img.alignleft,
.wysiwyg figure.alignleft {
  float: left;
  margin-right: clamp(20px, 4.1095890411vw, 60px);
  margin-bottom: 26px;
}
.wysiwyg img.alignright,
.wysiwyg figure.alignright {
  float: right;
  margin-left: clamp(20px, 4.1095890411vw, 60px);
  margin-bottom: 26px;
}
@media (max-width: 500px) {
  .wysiwyg img,
.wysiwyg figure {
    max-width: 70%;
    margin-bottom: 30px;
  }
  .wysiwyg img.alignleft, .wysiwyg img.alignright,
.wysiwyg figure.alignleft,
.wysiwyg figure.alignright {
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.wysiwyg img {
  height: auto;
  border-radius: 30px;
}
.wysiwyg figure img {
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 100%;
}
.wysiwyg figure.wp-caption {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wysiwyg figure figcaption {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10, 6, 28, 0.5);
  text-align: center;
}

.l-footer {
  margin-top: 50px;
  overflow: hidden;
  width: 100%;
}
body:has(.page-content > .fullscreen:last-child) .l-footer {
  margin-top: 0;
}
.l-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer a {
  color: #fff;
  text-decoration: none;
}
.l-footer a:hover {
  text-decoration: underline;
}

.footer__container {
  display: flex;
  flex-direction: column;
  padding-top: 140px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer__top--left,
.footer__top--right ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__top--left a:not(.logo) {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 20px;
  color: #fff;
  background-color: #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
}
.footer__top--left a:not(.logo):hover, .footer__top--left a:not(.logo):active, .footer__top--left a:not(.logo):focus {
  text-decoration: none;
}
.footer__top--left a:not(.logo)::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.footer__top--left a:not(.logo):hover, .footer__top--left a:not(.logo):focus, .footer__top--left a:not(.logo):active, .footer__top--left a:not(.logo):visited {
  text-decoration: none;
  color: #fff;
}
.footer__top--left a:not(.logo):hover::after, .footer__top--left a:not(.logo):active::after {
  transform: rotate(-45deg);
}
.footer__top--left a:not(.logo):focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.footer__top--left a:not(.logo):active {
  background-color: #35287C;
}
.footer__top--left a:not(.logo):active:focus {
  box-shadow: none;
}
.footer__top--left a:not(.logo)[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.footer__top--left a:not(.logo)[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .footer__top--left a:not(.logo) {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .footer__top--left a:not(.logo)::after {
  background-color: #6049E9;
}
.--dark-bg .footer__top--left a:not(.logo):hover {
  color: #6049E9;
}
.--dark-bg .footer__top--left a:not(.logo):active {
  color: #fff;
  background-color: #6049E9;
}
.--dark-bg .footer__top--left a:not(.logo):active::after {
  background-color: #fff;
}
.--dark-bg .footer__top--left a:not(.logo):active:focus {
  box-shadow: none;
}
.--dark-bg .footer__top--left a:not(.logo):focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .footer__top--left a:not(.logo)[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
}
.--dark-bg .footer__top--left a:not(.logo)[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .footer__top--left a:not(.logo) {
  color: #34287C;
}
.--dark-bg .footer__top--left a:not(.logo):hover {
  color: #34287C;
}
.--dark-bg .footer__top--left a:not(.logo)::after {
  background-color: #34287C;
}

.footer__top--right a {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
}
.footer__top--right a:hover, .footer__top--right a:active, .footer__top--right a:focus {
  text-decoration: none;
}
.footer__top--right a::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.footer__top--right a:visited {
  color: #35287C;
}
.footer__top--right a:visited::after {
  background-color: #35287C;
}
.footer__top--right a:hover, .footer__top--right a:focus, .footer__top--right a:active {
  color: #6049E9;
}
.footer__top--right a:hover::after, .footer__top--right a:active::after {
  transform: rotate(-45deg);
}
.footer__top--right a:focus {
  border-bottom-color: #6049E9;
}
.footer__top--right a:active {
  color: #35287C;
}
.footer__top--right a:active::after {
  background-color: #35287C;
}
.footer__top--right a:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.footer__top--right a[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.footer__top--right a[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .footer__top--right a {
  color: #fff;
}
.--dark-bg .footer__top--right a::after {
  background-color: #fff;
}
.--dark-bg .footer__top--right a:hover {
  color: #fff;
}
.--dark-bg .footer__top--right a:active {
  color: #E9E6FF;
}
.--dark-bg .footer__top--right a:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .footer__top--right a:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .footer__top--right a:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .footer__top--right a[disabled] {
  color: #E7E7E7;
}
.--dark-bg .footer__top--right a[disabled]::after {
  background-color: #E7E7E7;
}

.footer__menu-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer__legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  row-gap: 10px;
}

.footer__legal-link path {
  fill: #fff;
}
.footer__legal-link.external {
  font-size: 14px;
}
.footer__legal-link.external svg {
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .l-footer {
    padding-bottom: 40px;
    font-size: 14px;
  }
  .l-footer .footer__menu-items {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .l-footer ul,
.footer__top,
.footer__top--left,
.footer__bottom__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__top--left {
    gap: 32px;
  }

  .footer__top {
    gap: 35px;
    margin-bottom: 30px;
  }
  .footer__top .logo {
    max-width: 250px;
  }

  .footer__menu-column {
    display: contents;
  }

  .footer__menu-group-expander {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .footer__menu-group-expander svg {
    width: 16px;
  }

  a.footer__menu-link {
    position: relative;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 1.8em;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    padding: 0;
    color: #6049E9;
    border: none;
    border-bottom: 1px solid transparent;
    transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
    font-size: 1em;
  }
  a.footer__menu-link:hover, a.footer__menu-link:active, a.footer__menu-link:focus {
    text-decoration: none;
  }
  a.footer__menu-link::after {
    content: "";
    display: block;
    padding-bottom: 3px;
    min-width: 12px;
    width: 12px;
    aspect-ratio: 1;
    mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: #6049E9;
    transform: rotate(0deg);
    transition: transform 0.175s ease-in-out;
  }
  a.footer__menu-link:visited {
    color: #35287C;
  }
  a.footer__menu-link:visited::after {
    background-color: #35287C;
  }
  a.footer__menu-link:hover, a.footer__menu-link:focus, a.footer__menu-link:active {
    color: #6049E9;
  }
  a.footer__menu-link:hover::after, a.footer__menu-link:active::after {
    transform: rotate(-45deg);
  }
  a.footer__menu-link:focus {
    border-bottom-color: #6049E9;
  }
  a.footer__menu-link:active {
    color: #35287C;
  }
  a.footer__menu-link:active::after {
    background-color: #35287C;
  }
  a.footer__menu-link:active:focus {
    border-bottom-color: transparent;
    box-shadow: none;
  }
  a.footer__menu-link[disabled] {
    color: #0A061C;
    outline: none;
    pointer-events: none;
  }
  a.footer__menu-link[disabled]::after {
    background-color: #0A061C;
  }
  .--dark-bg a.footer__menu-link {
    color: #fff;
  }
  .--dark-bg a.footer__menu-link::after {
    background-color: #fff;
  }
  .--dark-bg a.footer__menu-link:hover {
    color: #fff;
  }
  .--dark-bg a.footer__menu-link:active {
    color: #E9E6FF;
  }
  .--dark-bg a.footer__menu-link:active::after {
    background-color: #E9E6FF;
  }
  .--dark-bg a.footer__menu-link:active:focus {
    border-bottom-color: transparent;
    box-shadow: none;
    color: #E9E6FF;
  }
  .--dark-bg a.footer__menu-link:focus {
    border-color: #fff;
    color: #fff;
  }
  .--dark-bg a.footer__menu-link[disabled] {
    color: #E7E7E7;
  }
  .--dark-bg a.footer__menu-link[disabled]::after {
    background-color: #E7E7E7;
  }
  a.footer__menu-link.extenal {
    font-size: 1em;
  }

  .footer__menu-group-header {
    display: flex;
    justify-content: space-between;
    padding-block: 18px;
    font-size: 20px;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .footer__bottom {
    margin-top: 40px;
  }

  .footer__legal-list {
    gap: 20px;
  }
}
@media (min-width: 1025px) {
  .l-footer {
    padding-bottom: 90px;
    font-size: 14px;
  }
  .l-footer .accordion-basic--expandable {
    display: flex;
  }

  .footer__container {
    position: relative;
  }
  .footer__container::before, .footer__container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    height: 100vh;
    background-color: #6049E9;
  }
  .footer__container::before {
    left: calc(100% + clamp(50px, 5.21vw, 100px));
  }
  .footer__container::after {
    right: calc(100% + clamp(50px, 5.21vw, 100px));
  }

  .footer__top {
    margin-bottom: 60px;
  }
  .footer__top .logo {
    max-width: 220px;
  }

  .footer__menu {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .footer__menu-column {
    display: flex;
    flex-direction: column;
    flex: 1 1 16.66%;
    gap: 40px;
  }

  .footer__menu-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer__menu-group-title {
    font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .footer__menu-group-expander {
    display: none;
  }

  a.footer__menu-link {
    font-size: 14px;
  }
  a.footer__menu-link.extenal {
    font-size: 14px;
  }

  .footer__bottom {
    position: relative;
    margin-top: 45px;
  }
  .footer__bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200vw;
    height: 1px;
    background-color: #6049E9;
  }

  .footer__bottom__inner {
    position: relative;
    padding-top: 40px;
  }
  .footer__bottom__inner::before, .footer__bottom__inner::after {
    content: "";
    position: absolute;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #6049E9;
  }
  .footer__bottom__inner::before {
    left: calc(100% + clamp(50px, 5.21vw, 100px));
    transform: translate3d(-50%, -50%, 0);
  }
  .footer__bottom__inner::after {
    right: calc(100% + clamp(50px, 5.21vw, 100px));
    transform: translate3d(50%, -50%, 0);
  }
}
@media (min-width: 1025px) and (max-width: 1630px) {
  .l-footer {
    position: relative;
  }

  .footer__container {
    position: initial;
  }

  .footer__container::before {
    left: calc(100% - 12px);
  }
  .footer__container::after {
    right: calc(100% - 12px);
  }

  .l-container--xlarge.bottom {
    position: relative;
    padding: 0;
    max-width: 100%;
  }
  .l-container--xlarge.bottom .footer__bottom {
    position: initial;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1460px;
  }
  .l-container--xlarge.bottom .footer__bottom__inner {
    position: initial;
  }
  .l-container--xlarge.bottom .footer__bottom__inner::before {
    left: calc(100% - 12px);
  }
  .l-container--xlarge.bottom .footer__bottom__inner::after {
    right: calc(100% - 12px);
  }
}
.gfield {
  position: relative;
}
.gfield:has(input[type=text]) .gfield_validation_message, .gfield:has(input[type=email]) .gfield_validation_message, .gfield:has(input[type=tel]) .gfield_validation_message, .gfield:has(input[type=search]) .gfield_validation_message, .gfield:has(input[type=password]) .gfield_validation_message {
  position: absolute;
  bottom: 11px;
  right: 20px;
  font-size: 14px;
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}
.gfield:has(input[type=text]).gfield_success input, .gfield:has(input[type=email]).gfield_success input, .gfield:has(input[type=tel]).gfield_success input, .gfield:has(input[type=search]).gfield_success input, .gfield:has(input[type=password]).gfield_success input {
  padding-right: 110px;
}
.gfield:has(input[type=text]).gfield_success .gfield_validation_message, .gfield:has(input[type=email]).gfield_success .gfield_validation_message, .gfield:has(input[type=tel]).gfield_success .gfield_validation_message, .gfield:has(input[type=search]).gfield_success .gfield_validation_message, .gfield:has(input[type=password]).gfield_success .gfield_validation_message {
  background-image: url("/wp-content/themes/apta/images/field-success.svg");
}
.gfield:has(input[type=text]).gfield_error input, .gfield:has(input[type=email]).gfield_error input, .gfield:has(input[type=tel]).gfield_error input, .gfield:has(input[type=search]).gfield_error input, .gfield:has(input[type=password]).gfield_error input {
  padding-right: 190px;
}
.gfield:has(input[type=text]).gfield_error .gfield_validation_message, .gfield:has(input[type=email]).gfield_error .gfield_validation_message, .gfield:has(input[type=tel]).gfield_error .gfield_validation_message, .gfield:has(input[type=search]).gfield_error .gfield_validation_message, .gfield:has(input[type=password]).gfield_error .gfield_validation_message {
  background-image: url("/wp-content/themes/apta/images/field-error.svg");
}
.gfield:has(input[type=text]), .gfield:has(input[type=email]), .gfield:has(input[type=tel]), .gfield:has(input[type=search]), .gfield:has(input[type=password]), .gfield:has(textarea), .gfield:has(select) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gfield .ginput_complex {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gfield--type-checkbox {
  padding: 0;
  margin: 0;
  border: 0;
}
.gfield--type-checkbox legend {
  margin-bottom: 28px;
  padding: 0;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 20px;
  text-transform: uppercase;
}
.gfield--type-checkbox .gfield_checkbox,
.gfield--type-checkbox .gfield_radio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gfield--type-checkbox .gfield_checkbox .gchoice,
.gfield--type-checkbox .gfield_radio .gchoice {
  width: 100%;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.gfield_checkbox .gchoice {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.gfield_checkbox input {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  margin: 0;
  word-wrap: normal;
  color: transparent;
  background-color: transparent;
}
.gfield_checkbox input + label {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
  padding-left: 32px;
}
.gfield_checkbox input + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  background-color: transparent;
  border: 1px solid #0A061C;
  box-shadow: 0 0 0 0.5px #0A061C;
  width: 16px;
  height: 16px;
  transition: background-color 0.175s ease-out;
  border-radius: 4px;
}
.gfield_checkbox input + label::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-size: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-color 0.175s ease-out;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 0;
}
.gfield_checkbox input:checked + label::before {
  background-color: #6049E9;
  border-color: #6049E9;
  box-shadow: 0 0 0 0.5px #6049E9;
}
.gfield_checkbox input:checked + label::after {
  background-image: url("/wp-content/themes/apta/images/check.svg");
}
.gfield_checkbox input[disabled] + label {
  cursor: inherit;
  color: #7a7b7c;
}
.gfield_checkbox input[disabled] + label:before {
  border: 1px solid #7a7b7c;
  box-shadow: 0 0 0 0.5px #7a7b7c;
  background-color: transparent;
}
.gfield_checkbox input[disabled]:checked + label:after {
  background-color: #7a7b7c !important;
}

.gfield_required_asterisk {
  font-size: 12px;
  color: #6049E9;
}

.gfield--type-radio {
  padding: 0;
  margin: 0;
  border: 0;
}
.gfield--type-radio legend {
  margin-bottom: 28px;
  padding: 0;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 20px;
  text-transform: uppercase;
}
.gfield--type-radio .gfield_checkbox,
.gfield--type-radio .gfield_radio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gfield--type-radio .gfield_checkbox .gchoice,
.gfield--type-radio .gfield_radio .gchoice {
  width: 100%;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.gfield_radio .gchoice {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.gfield_radio input {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  margin: 0;
  word-wrap: normal;
  color: transparent;
  background-color: transparent;
}
.gfield_radio input + label {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
  padding-left: 32px;
}
.gfield_radio input + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  background-color: transparent;
  border: 1px solid #0A061C;
  box-shadow: 0 0 0 0.5px #0A061C;
  width: 16px;
  height: 16px;
  transition: background-color 0.175s ease-out;
  border-radius: 100%;
}
.gfield_radio input + label::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-size: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-color 0.175s ease-out;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0);
}
.gfield_radio input:checked + label::before {
  background-color: #6049E9;
  border-color: #6049E9;
  box-shadow: 0 0 0 0.5px #6049E9;
}
.gfield_radio input:checked + label::after {
  background-color: white;
}
.gfield_radio input[disabled] + label {
  cursor: inherit;
  color: #7a7b7c;
}
.gfield_radio input[disabled] + label:before {
  border: 1px solid #7a7b7c;
  box-shadow: 0 0 0 0.5px #7a7b7c;
  background-color: transparent;
}
.gfield_radio input[disabled]:checked + label:after {
  background-color: #7a7b7c !important;
}

.gfield--type-select label {
  pointer-events: none;
}
.gfield--type-select select {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  height: 40px;
  font-weight: 400;
  line-height: 1;
  padding: 0 20px;
  max-width: 100%;
  margin: 0;
  color: #0A061C;
  border: 1px solid #0A061C;
  border-radius: 30px;
  box-shadow: inset 0 0 0 0.5px #0A061C;
  appearance: none;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.175s ease-out;
  padding-right: 51px;
  padding-left: 17px;
  font-size: 18px;
  border: 0;
  box-shadow: 0 0 0;
  cursor: pointer;
  background-image: url("/wp-content/themes/apta/images/caret-sprite.png");
  background-position: calc(100% - 17px) 16px;
  background-repeat: no-repeat;
  transition: background-color 0.175s ease-out, color 0.175s ease-out;
}
.gfield--type-select select:placeholder-shown {
  border-color: rgba(10, 6, 28, 0.5);
  color: rgba(10, 6, 28, 0.5);
  box-shadow: inset 0 0 0 0.5px rgba(10, 6, 28, 0.5);
}
.gfield--type-select select::placeholder {
  color: rgba(10, 6, 28, 0.5);
}
.gfield--type-select select:focus, .gfield--type-select select:active {
  border-color: #6049E9;
  box-shadow: inset 0 0 0 0.5px rgba(96, 73, 233, 0.5);
  outline: none;
}
.gfield--type-select select[disabled] {
  color: #E7E7E7 !important;
  border-color: #E7E7E7 !important;
  background-color: #E7E7E7 !important;
}
.gfield--type-select select::-ms-expand {
  display: none;
}
.gfield--type-select select::-webkit-search-cancel-button {
  appearance: none;
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}
.gfield--type-select select:hover {
  background-position: calc(100% - 17px) -24px;
  background-color: #6049E9;
  color: #fff;
}
.gfield--type-select .--sorter {
  position: relative;
}
.gfield--type-select .--sorter::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 10px;
  mask-image: url("/wp-content/themes/apta/images/sort.svg");
  mask-position: center;
  mask-size: 16px 10px;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  pointer-events: none;
  transition: background-color 0.175s ease-out;
}
.gfield--type-select .--sorter:has(select:hover)::before {
  background-color: #fff;
}
.gfield--type-select .--sorter select {
  padding-left: 42px;
}

.gfield input[type=text],
.gfield input[type=email],
.gfield input[type=tel],
.gfield input[type=search],
.gfield input[type=password],
.gfield textarea {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  height: 40px;
  font-weight: 400;
  line-height: 1;
  padding: 0 20px;
  max-width: 100%;
  margin: 0;
  color: #0A061C;
  border: 1px solid #0A061C;
  border-radius: 30px;
  box-shadow: inset 0 0 0 0.5px #0A061C;
  appearance: none;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.175s ease-out;
  width: 100%;
}
.gfield input[type=text]:placeholder-shown,
.gfield input[type=email]:placeholder-shown,
.gfield input[type=tel]:placeholder-shown,
.gfield input[type=search]:placeholder-shown,
.gfield input[type=password]:placeholder-shown,
.gfield textarea:placeholder-shown {
  border-color: rgba(10, 6, 28, 0.5);
  color: rgba(10, 6, 28, 0.5);
  box-shadow: inset 0 0 0 0.5px rgba(10, 6, 28, 0.5);
}
.gfield input[type=text]::placeholder,
.gfield input[type=email]::placeholder,
.gfield input[type=tel]::placeholder,
.gfield input[type=search]::placeholder,
.gfield input[type=password]::placeholder,
.gfield textarea::placeholder {
  color: rgba(10, 6, 28, 0.5);
}
.gfield input[type=text]:focus, .gfield input[type=text]:active,
.gfield input[type=email]:focus,
.gfield input[type=email]:active,
.gfield input[type=tel]:focus,
.gfield input[type=tel]:active,
.gfield input[type=search]:focus,
.gfield input[type=search]:active,
.gfield input[type=password]:focus,
.gfield input[type=password]:active,
.gfield textarea:focus,
.gfield textarea:active {
  border-color: #6049E9;
  box-shadow: inset 0 0 0 0.5px rgba(96, 73, 233, 0.5);
  outline: none;
}
.gfield input[type=text][disabled],
.gfield input[type=email][disabled],
.gfield input[type=tel][disabled],
.gfield input[type=search][disabled],
.gfield input[type=password][disabled],
.gfield textarea[disabled] {
  color: #E7E7E7 !important;
  border-color: #E7E7E7 !important;
  background-color: #E7E7E7 !important;
}
.gfield input[type=text]::-ms-expand,
.gfield input[type=email]::-ms-expand,
.gfield input[type=tel]::-ms-expand,
.gfield input[type=search]::-ms-expand,
.gfield input[type=password]::-ms-expand,
.gfield textarea::-ms-expand {
  display: none;
}
.gfield input[type=text]::-webkit-search-cancel-button,
.gfield input[type=email]::-webkit-search-cancel-button,
.gfield input[type=tel]::-webkit-search-cancel-button,
.gfield input[type=search]::-webkit-search-cancel-button,
.gfield input[type=password]::-webkit-search-cancel-button,
.gfield textarea::-webkit-search-cancel-button {
  appearance: none;
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}
.gfield textarea {
  padding-block: 16px;
  height: auto;
  min-height: 170px;
  line-height: 1.5;
  border-radius: 25px;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
}

.faux-header {
  padding-top: var(--header-height);
  display: none;
}

.l-header {
  display: flex;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
}
.l-header .l-container--xlarge {
  margin-top: clamp(10px, 2.0547945205vw, 30px);
  padding: 0 10px;
}
.l-header a {
  text-decoration: none;
}

.header__wrapper {
  width: 100%;
  position: relative;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0;
  height: 90px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0px 6px 20px rgba(53, 40, 124, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
}

.header__navigation {
  display: flex;
}

.header-is-fixed .faux-header,
body:not(.is-mobile) .search-is-open .faux-header {
  display: block;
}
.header-is-fixed .l-header,
body:not(.is-mobile) .search-is-open .l-header {
  position: fixed;
}
.header-is-fixed .header__inner,
body:not(.is-mobile) .search-is-open .header__inner {
  padding-right: clamp(20px, 2.397260274vw, 35px);
  padding-left: clamp(20px, 2.397260274vw, 35px);
  background-color: white;
  box-shadow: 0px 6px 20px rgba(53, 40, 124, 0.1);
}

@media (max-width: 1024px) {
  .l-header .desktop-only {
    display: none;
  }

  .header__inner {
    transition: padding 0.1s ease-in-out, background-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
  }

  .header__main-menu h3 {
    padding: 41px 20px;
    padding-bottom: 0;
    font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
  }

  .main-menu__toggle {
    display: flex;
    gap: 7px;
    padding: 0;
    font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-weight: 500;
    line-height: 1;
    color: #000;
    text-align: center;
    border: 0;
    background-color: transparent;
    cursor: pointer;
  }

  .header__toggable {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(100vw);
    width: 100vw;
    box-sizing: border-box;
    background-color: #18113C;
    transition: transform 0.1s linear;
  }
  .header__toggable .main-menu__toggle {
    align-items: center;
    color: #fff;
  }
  .header__toggable .main-menu__toggle svg {
    min-width: 20px;
  }
  .menu-is-open .header__toggable {
    transform: translateX(0vw);
  }

  .header__toggable--top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 20px;
    height: 87px;
    background-color: #0A061C;
  }

  .header__navigation {
    display: flex;
    flex-direction: column;
  }

  .header__toggable--scrollable {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .header__toggable--main__wrapper,
.search-toggable {
    max-height: calc(100vh - 134px);
    overflow-y: auto;
  }
  .header__toggable--main__wrapper::-webkit-scrollbar,
.search-toggable::-webkit-scrollbar {
    width: 7px;
  }
  .header__toggable--main__wrapper::-webkit-scrollbar-track,
.search-toggable::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .header__toggable--main__wrapper::-webkit-scrollbar-thumb,
.search-toggable::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
  }

  .header__navigation--utility:has(.utility-toggle.active) + .header__toggable--scrollable .header__toggable--main__wrapper {
    overflow: hidden;
  }

  .header__social-links {
    display: flex;
    justify-content: center;
    padding: 20px;
    padding-bottom: 50px;
    width: 100%;
    color: #fff;
  }
  .mobile-device .header__social-links {
    padding-bottom: 100px;
  }
  .mobile-device.browser-edge .header__social-links {
    padding-bottom: 150px;
  }
  .header__social-links h6 {
    font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
  }
  .header__social-links .social-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 1025px) {
  .l-header .mobile-only {
    display: none;
  }

  .header__main-menu.fixed-only {
    display: none;
  }
  .header-is-fixed .header__main-menu.fixed-only {
    display: block;
  }

  .header-is-fixed .header__toggable .header__main-menu {
    display: none;
  }

  .header__navigation {
    gap: clamp(10px, 1.796875vw, 23px);
    flex-direction: column-reverse;
  }

  .header-is-fixed .header__navigation,
.search-is-open .header__navigation {
    gap: clamp(10px, 1.2328767123vw, 18px);
    flex-direction: row;
  }
  .header-is-fixed .main-menu__list,
.search-is-open .main-menu__list {
    align-items: center;
  }

  .header__toggable--main__wrapper {
    display: block !important;
  }
}
@media (min-width: 1025px) {
  .header__branding {
    position: relative;
    z-index: 4;
  }

  .header__logo .logo-short {
    max-width: clamp(80px, 8.4375vw, 108px);
  }
  .header__logo .logo-short.white {
    display: none;
  }
  .header__logo .logo-full {
    display: none;
    max-width: clamp(100px, 10.9589041096vw, 160px);
  }

  .header-is-fixed .header__logo .logo-short,
.search-is-open .header__logo .logo-short {
    display: none;
  }
  .header-is-fixed .header__logo .logo-full:not(.white),
.search-is-open .header__logo .logo-full:not(.white) {
    display: block;
  }
}
@media (max-width: 1024px) {
  .header__logo .logo-full {
    max-width: 156px;
  }
  .header__logo .logo-full.white {
    display: none;
  }
  .menu-is-open .header__logo .logo-full {
    display: none;
  }
  .menu-is-open .header__logo .logo-full.white {
    display: block;
  }
}
.main-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

@media (max-width: 1024px) {
  .main-menu {
    padding: 20px;
    padding-top: 5px;
  }

  .main-menu__list {
    flex-direction: column;
  }

  .main-menu--group-expander {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .main-menu--group-expander svg {
    width: 16px;
  }

  .main-menu--group-header,
.main-menu__list-item > .main-menu__link {
    display: flex;
    justify-content: space-between;
    padding-block: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 20px;
    color: #fff;
  }
  .main-menu--group-header:visited,
.main-menu__list-item > .main-menu__link:visited {
    color: #fff;
  }

  .main-menu--group-title {
    display: flex;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
  }
  .main-menu--group-title:visited {
    color: #fff;
  }

  .main-menu__list--subnav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding-bottom: 10px;
    padding-top: 20px;
  }

  .main-menu__list-item--subnav {
    display: flex;
  }

  .main-menu__link--subnav {
    position: relative;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 1.8em;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    padding: 0;
    color: #6049E9;
    border: none;
    border-bottom: 1px solid transparent;
    transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
  }
  .main-menu__link--subnav:hover, .main-menu__link--subnav:active, .main-menu__link--subnav:focus {
    text-decoration: none;
  }
  .main-menu__link--subnav::after {
    content: "";
    display: block;
    padding-bottom: 3px;
    min-width: 12px;
    width: 12px;
    aspect-ratio: 1;
    mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: #6049E9;
    transform: rotate(0deg);
    transition: transform 0.175s ease-in-out;
  }
  .main-menu__link--subnav:visited {
    color: #35287C;
  }
  .main-menu__link--subnav:visited::after {
    background-color: #35287C;
  }
  .main-menu__link--subnav:hover, .main-menu__link--subnav:focus, .main-menu__link--subnav:active {
    color: #6049E9;
  }
  .main-menu__link--subnav:hover::after, .main-menu__link--subnav:active::after {
    transform: rotate(-45deg);
  }
  .main-menu__link--subnav:focus {
    border-bottom-color: #6049E9;
  }
  .main-menu__link--subnav:active {
    color: #35287C;
  }
  .main-menu__link--subnav:active::after {
    background-color: #35287C;
  }
  .main-menu__link--subnav:active:focus {
    border-bottom-color: transparent;
    box-shadow: none;
  }
  .main-menu__link--subnav[disabled] {
    color: #0A061C;
    outline: none;
    pointer-events: none;
  }
  .main-menu__link--subnav[disabled]::after {
    background-color: #0A061C;
  }
  .--dark-bg .main-menu__link--subnav {
    color: #fff;
  }
  .--dark-bg .main-menu__link--subnav::after {
    background-color: #fff;
  }
  .--dark-bg .main-menu__link--subnav:hover {
    color: #fff;
  }
  .--dark-bg .main-menu__link--subnav:active {
    color: #E9E6FF;
  }
  .--dark-bg .main-menu__link--subnav:active::after {
    background-color: #E9E6FF;
  }
  .--dark-bg .main-menu__link--subnav:active:focus {
    border-bottom-color: transparent;
    box-shadow: none;
    color: #E9E6FF;
  }
  .--dark-bg .main-menu__link--subnav:focus {
    border-color: #fff;
    color: #fff;
  }
  .--dark-bg .main-menu__link--subnav[disabled] {
    color: #E7E7E7;
  }
  .--dark-bg .main-menu__link--subnav[disabled]::after {
    background-color: #E7E7E7;
  }
  .main-menu__link--subnav::after {
    background-color: #fff;
  }
  .main-menu__link--subnav:hover, .main-menu__link--subnav:visited {
    color: #fff;
  }
  .main-menu__link--subnav:hover::after, .main-menu__link--subnav:visited::after {
    background-color: #fff;
  }
}
@media (min-width: 1025px) {
  .submenu-is-open .main-menu__list-item > .main-menu__link {
    position: relative;
    z-index: 2;
  }

  .main-menu__list-item > .main-menu__link {
    position: relative;
    display: flex;
    margin: 0;
    padding: 9px 13px;
    font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-weight: 500;
    line-height: 1;
    color: #000;
    text-align: center;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    background-color: transparent;
    font-size: clamp(14px, 1.25vw, 16px);
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  }
  .main-menu__list-item > .main-menu__link:hover, .submenu--revealed .main-menu__list-item > .main-menu__link {
    background-color: #6049E9;
    color: #fff;
  }

  .main-menu__group-header {
    position: relative;
    z-index: 1;
  }
  .main-menu__group-header .main-menu__link {
    position: relative;
    display: flex;
    margin: 0;
    padding: 9px 13px;
    font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-weight: 500;
    line-height: 1;
    color: #000;
    text-align: center;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    background-color: transparent;
    font-size: clamp(14px, 1.25vw, 16px);
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  }
  .main-menu__group-header .main-menu__link:hover, .submenu--revealed .main-menu__group-header .main-menu__link {
    background-color: #6049E9;
    color: #fff;
  }
  .main-menu__group-header button {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px;
    width: 14px;
    box-sizing: content-box;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
  }
  .main-menu__group-header button svg path {
    fill: #000;
  }

  .main-menu__list-item {
    position: static;
  }

  .main-menu__submenu-container {
    display: block;
    opacity: 0;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    background-color: #F4F4F4;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 0 16px 60px rgba(53, 40, 124, 0.3);
    pointer-events: none;
  }
  .main-menu__submenu-container .close-submenu {
    position: absolute;
    right: 0;
    top: 0;
  }
  .main-menu__submenu-container .l-container--xlarge {
    margin-top: 0;
  }
  .main-menu__submenu-container .l-container--xlarge.container--close-submenu {
    position: relative;
    z-index: 1;
  }
  .main-menu__submenu-container.ready {
    display: none;
    opacity: 1;
    pointer-events: initial;
  }
  .main-menu__list-item.submenu--revealed .main-menu__submenu-container.ready {
    display: block;
  }
  .main-menu__submenu-container::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #F4F4F4;
    pointer-events: none;
  }
  .main-menu__submenu-container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 30px;
    background-image: linear-gradient(to bottom, #F4F4F4, transparent);
    pointer-events: none;
  }

  .main-menu__submenu-outer {
    padding: clamp(40px, 4.45vw, 65px) 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .main-menu__submenu-outer::-webkit-scrollbar {
    width: 7px;
  }
  .main-menu__submenu-outer::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .main-menu__submenu-outer::-webkit-scrollbar-thumb {
    background-color: rgba(53, 40, 124, 0.5);
    border-radius: 5px;
  }

  .main-menu__submenu-inner {
    display: flex;
    justify-content: flex-end;
    gap: clamp(40px, 4.7945205479vw, 70px);
  }

  .main-menu__submenu--column-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 250px;
    margin-right: auto;
  }

  .main-menu__submenu--title {
    font-size: 14px;
  }

  .main-menu__list--subnav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .main-menu__list--subnav a {
    font-size: 16px;
  }
  .main-menu__list--subnav a:hover {
    text-decoration: underline;
  }

  .main-menu__submenu--column-center {
    width: 30.27%;
  }

  .main-menu__submenu--column-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 37.84%;
  }

  .main-menu__submenu--events-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.3698630137vw, 20px);
  }

  .header-is-fixed .main-menu__list-item > .main-menu__link,
.header-is-fixed .main-menu__group-header > .main-menu__link,
.search-is-open .main-menu__list-item > .main-menu__link,
.search-is-open .main-menu__group-header > .main-menu__link {
    font-size: clamp(12px, 0.9589041096vw, 14px);
    padding: clamp(10px, 0.8904109589vw, 13px);
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .header-is-fixed .main-menu__submenu-container,
.search-is-open .main-menu__submenu-container {
    top: calc(var(--header-height) - 30px);
  }
}
.search-toggable {
  display: none;
}
.search-toggable .l-container--xlarge {
  position: relative;
  padding: 0 20px;
}
.search-toggable .search-results__search-input {
  padding-bottom: clamp(22px, 3.0136986301vw, 44px);
  border-bottom: 1px solid;
}
.search-toggable .search-form {
  display: flex;
  position: relative;
}
.search-toggable input[type=text] {
  padding-right: clamp(60px, 5.4794520548vw, 80px);
  width: 100%;
  font-size: clamp(30px, 4.6575342466vw, 68px);
  line-height: 1.2;
  letter-spacing: -1px;
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  color: #fff;
  border: 0;
  background-color: transparent;
}
.search-toggable input[type=text]:focus, .search-toggable input[type=text]:active, .search-toggable input[type=text]:-webkit-autofill, .search-toggable input[type=text]:-webkit-autofill:hover, .search-toggable input[type=text]:-webkit-autofill:focus, .search-toggable input[type=text]:-webkit-autofill:active {
  background-color: transparent !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
.search-toggable input[type=text]:not(:placeholder-shown) + input[type=submit] {
  background-image: url("/wp-content/themes/apta/images/magnifier.svg");
  background-color: #fff;
}
.search-toggable input[type=submit] {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 0;
  width: clamp(40px, 4.1095890411vw, 60px);
  aspect-ratio: 1/1;
  background-color: transparent;
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999999px;
  border-radius: 100%;
  cursor: pointer;
}
.search-toggable input[type=submit]:hover {
  background-image: url("/wp-content/themes/apta/images/magnifier.svg");
}
.search-toggable a {
  color: #fff;
}

.search-window--top-links {
  color: #fff;
}

.search-window--top-links__inner {
  display: flex;
  justify-content: space-between;
}
.search-window--top-links__inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.search-window--top-links__inner ul a {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
}
.search-window--top-links__inner ul a:hover, .search-window--top-links__inner ul a:active, .search-window--top-links__inner ul a:focus {
  text-decoration: none;
}
.search-window--top-links__inner ul a::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.search-window--top-links__inner ul a:visited {
  color: #35287C;
}
.search-window--top-links__inner ul a:visited::after {
  background-color: #35287C;
}
.search-window--top-links__inner ul a:hover, .search-window--top-links__inner ul a:focus, .search-window--top-links__inner ul a:active {
  color: #6049E9;
}
.search-window--top-links__inner ul a:hover::after, .search-window--top-links__inner ul a:active::after {
  transform: rotate(-45deg);
}
.search-window--top-links__inner ul a:focus {
  border-bottom-color: #6049E9;
}
.search-window--top-links__inner ul a:active {
  color: #35287C;
}
.search-window--top-links__inner ul a:active::after {
  background-color: #35287C;
}
.search-window--top-links__inner ul a:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.search-window--top-links__inner ul a[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.search-window--top-links__inner ul a[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .search-window--top-links__inner ul a {
  color: #fff;
}
.--dark-bg .search-window--top-links__inner ul a::after {
  background-color: #fff;
}
.--dark-bg .search-window--top-links__inner ul a:hover {
  color: #fff;
}
.--dark-bg .search-window--top-links__inner ul a:active {
  color: #E9E6FF;
}
.--dark-bg .search-window--top-links__inner ul a:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .search-window--top-links__inner ul a:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .search-window--top-links__inner ul a:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .search-window--top-links__inner ul a[disabled] {
  color: #E7E7E7;
}
.--dark-bg .search-window--top-links__inner ul a[disabled]::after {
  background-color: #E7E7E7;
}

@media (max-width: 1024px) {
  .search-toggable {
    position: relative;
    margin: 0 10px;
    margin-top: 5px;
    max-width: calc(100vw - 20px);
    background-color: #6049E9;
    border-radius: 5px;
  }
  .mobile-device .search-toggable {
    padding-bottom: 60px;
  }
  .search-toggable .l-container--xlarge {
    margin-top: 0;
  }
  .search-toggable input[type=text]::placeholder {
    color: #fff;
  }
  .search-toggable input[type=submit] {
    background-image: url("/wp-content/themes/apta/images/magnifier-white.svg");
    border: 2px solid #fff;
  }
  .search-toggable .search-results__search-input {
    margin-top: 35px;
    border-color: #fff;
  }
  .search-toggable h6 {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
  }

  .search-window--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: -7px;
    padding-top: 32px;
  }

  .search-window--top-links__inner {
    flex-direction: column;
    gap: 40px;
    margin-block: 45px;
  }
  .search-window--top-links__inner h5 {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: 20px;
    line-height: 1.2;
    border-bottom: 1px solid #8F89B5;
  }
  .search-window--top-links__inner ul a {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media (min-width: 1025px) {
  .search-toggable {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .search-toggable::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0b023e;
    pointer-events: none;
    opacity: 0.98;
  }
  .search-toggable .l-container--xlarge {
    position: relative;
    margin-top: 0;
    padding-top: var(--header-height);
  }
  .search-toggable .l-container--xlarge::before, .search-toggable .l-container--xlarge::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    height: 100vh;
    background-color: #6049E9;
    pointer-events: none;
  }
  .search-toggable .l-container--xlarge::before {
    left: calc(100% + clamp(50px, 5.21vw, 100px) - 20px);
  }
  .search-toggable .l-container--xlarge::after {
    right: calc(100% + clamp(50px, 5.21vw, 100px) - 20px);
  }
  .search-toggable .search-results__search-input {
    border-color: #8F89B5;
  }
  .search-toggable input[type=text]::placeholder {
    color: #8F89B5;
  }
  .search-toggable input[type=text]:not(:placeholder-shown) + input[type=submit] {
    border-color: #fff;
  }
  .search-toggable input[type=submit] {
    border: 2px solid #8F89B5;
    background-image: url("/wp-content/themes/apta/images/magnifier-lavender.svg");
  }
  .search-toggable input[type=submit]:hover {
    border-color: #fff;
    background-color: #fff;
  }
  .search-toggable .search-window--resources-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: clamp(40px, 3.4246575342vw, 50px);
  }
  .search-toggable .search-window--resources-menu .resources-menu {
    flex-wrap: wrap;
  }
  .search-toggable .search-window--resources-menu a {
    position: relative;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 1.8em;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.2;
    padding: 9px 20px;
    color: #6049E9;
    background-color: #fff;
    border: 1px solid #6049E9;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(96, 73, 233, 0);
    transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out, border-color 0.175s ease-in-out, color 0.175s ease-in-out;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  .search-toggable .search-window--resources-menu a:hover, .search-toggable .search-window--resources-menu a:active, .search-toggable .search-window--resources-menu a:focus {
    text-decoration: none;
  }
  .search-toggable .search-window--resources-menu a:visited {
    color: #6049E9;
  }
  .search-toggable .search-window--resources-menu a svg {
    margin-top: 0;
  }
  .search-toggable .search-window--resources-menu a svg path {
    fill: #6049E9;
    transition: fill 0.175s ease-in-out;
  }
  .search-toggable .search-window--resources-menu a.arrow::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: #6049E9;
    transform: rotate(0deg);
    transition: transform 0.175s ease-in-out;
  }
  .search-toggable .search-window--resources-menu a:hover {
    color: #fff;
    background-color: #6049E9;
  }
  .search-toggable .search-window--resources-menu a:active {
    background-color: #35287C;
  }
  .search-toggable .search-window--resources-menu a:active:focus {
    box-shadow: none;
  }
  .search-toggable .search-window--resources-menu a:hover::after, .search-toggable .search-window--resources-menu a:active::after {
    transform: rotate(-45deg);
    background-color: #fff;
  }
  .search-toggable .search-window--resources-menu a:hover svg path, .search-toggable .search-window--resources-menu a:active svg path {
    fill: #fff;
  }
  .search-toggable .search-window--resources-menu a:focus {
    box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
  }
  .search-toggable .search-window--resources-menu a[disabled] {
    background-color: #fff;
    color: #0A061C;
    border-color: #0A061C;
    outline: none;
    pointer-events: none;
  }
  .search-toggable .search-window--resources-menu a[disabled].arrow::after {
    background-color: #0A061C;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a::after {
    background-color: #fff;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a svg path {
    fill: #fff;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:visited {
    color: #fff;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:visited svg path {
    fill: #fff;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:hover {
    background-color: #fff;
    color: #6049E9;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:hover::after {
    background-color: #6049E9;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:hover svg path, .--dark-bg .search-toggable .search-window--resources-menu a:active svg path {
    fill: #6049E9;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:active {
    background-color: #6049E9;
    color: #fff;
    border-color: #6049E9;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:active::after {
    background-color: #fff;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:active:focus {
    box-shadow: none;
  }
  .--dark-bg .search-toggable .search-window--resources-menu a:focus {
    box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
  }
  .--dark-bg .search-toggable .search-window--resources-menu a[disabled] {
    border-color: #7a7b7c;
    color: #7a7b7c;
  }
  .search-toggable .search-window--resources-menu a::after {
    background-color: #fff;
  }
  .search-toggable .search-window--resources-menu a svg path {
    fill: #fff;
  }
  .search-toggable .search-window--resources-menu a:visited {
    color: #fff;
  }
  .search-toggable .search-window--resources-menu a:visited svg path {
    fill: #fff;
  }
  .search-toggable .search-window--resources-menu a:hover {
    background-color: #fff;
    color: #6049E9;
  }
  .search-toggable .search-window--resources-menu a:hover::after {
    background-color: #6049E9;
  }
  .search-toggable .search-window--resources-menu a:hover svg path, .search-toggable .search-window--resources-menu a:active svg path {
    fill: #6049E9;
  }
  .search-toggable .search-window--resources-menu a:active {
    background-color: #6049E9;
    color: #fff;
    border-color: #6049E9;
  }
  .search-toggable .search-window--resources-menu a:active::after {
    background-color: #fff;
  }
  .search-toggable .search-window--resources-menu a:active:focus {
    box-shadow: none;
  }
  .search-toggable .search-window--resources-menu a:focus {
    box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
  }
  .search-toggable .search-window--resources-menu a[disabled] {
    border-color: #7a7b7c;
    color: #7a7b7c;
  }

  .search-toggable__outer {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    max-height: 100vh;
  }
  .search-toggable__outer::-webkit-scrollbar {
    width: 7px;
  }
  .search-toggable__outer::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .search-toggable__outer::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
  }

  .search-toggable__inner {
    padding-top: clamp(100px, 10.9589041096vw, 160px);
    padding-bottom: 50px;
  }

  .search-window--top-links {
    position: relative;
    margin-top: clamp(50px, 6.8493150685vw, 100px);
  }
  .search-window--top-links::before {
    content: "";
    position: absolute;
    top: clamp(50px, 4.3835616438vw, 64px);
    left: 50%;
    transform: translateX(-50%);
    width: 200vw;
    height: 1px;
    background-color: #6049E9;
    pointer-events: none;
  }
  .search-window--top-links h6 {
    margin-bottom: clamp(40px, 5.4794520548vw, 80px);
  }
  .search-window--top-links h5 {
    margin-bottom: 20px;
  }

  .search-window--top-links__outer {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .search-window--top-links__outer::before, .search-window--top-links__outer::after {
    content: "";
    position: absolute;
    top: clamp(50px, 4.3835616438vw, 64px);
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #6049E9;
    pointer-events: none;
  }
  .search-window--top-links__outer::before {
    left: calc(100% + clamp(50px, 5.21vw, 100px));
    transform: translate3d(-50%, -50%, 0);
  }
  .search-window--top-links__outer::after {
    right: calc(100% + clamp(50px, 5.21vw, 100px));
    transform: translate3d(50%, -50%, 0);
  }

  .search-window--top-links__inner {
    position: relative;
    display: flex;
  }
}
@media (min-width: 1025px) and (max-width: 1630px) {
  .search-toggable .l-container--xlarge::before {
    left: calc(100% - 12px);
  }
  .search-toggable .l-container--xlarge::after {
    right: calc(100% - 12px);
  }

  .search-window--top-links__outer::before {
    left: calc(100% + 8px);
  }
  .search-window--top-links__outer::after {
    right: calc(100% + 8px);
  }
}
.header__navigation--utility {
  display: flex;
}

.resources-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
}

.account-menu-toggle {
  display: flex;
  gap: 5px;
  height: 32px;
}

.search-toggle,
.resources-menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

*[aria-expanded=true] .resources-menu-toggle,
*[aria-expanded=true] .account-menu-toggle,
*[aria-expanded=true] .search-toggle {
  background-color: #6049E9;
  color: #fff;
}

*[aria-expanded=true] .account-menu-toggle svg path,
*[aria-expanded=true] .search-toggle svg path {
  fill: #fff;
}

*[aria-expanded=true] .resources-menu-toggle svg path {
  stroke: #fff;
}

.header__navigation--account .utility-toggable {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 15px;
  z-index: 1;
  display: none;
}
.header__navigation--account .utility-toggable::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 50%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 13px 13px;
  border-color: transparent transparent #6049E9 transparent;
  transform: rotate(0deg) translateX(-50%);
}
.header__navigation--account .utility-toggable h6 {
  font-size: 14px;
}
.header__navigation--account .utility-toggable a path {
  fill: #fff;
}
.header__navigation--account .utility-toggable .button--tertiary {
  text-align: left;
}
@media (min-width: 1025px) {
  .header__navigation--account .utility-toggable {
    width: clamp(230px, 20.625vw, 330px);
  }
}
@media (max-width: 1024px) {
  .header__navigation--account .utility-toggable {
    width: 100vw;
    max-width: calc(100vw - 20px);
  }
}
.header__navigation--account .button--primary,
.header__navigation--account .button--secondary {
  justify-content: center;
  min-height: 56px;
  width: 100%;
}
.header__navigation--account .account-popup__link {
  margin-top: 12px;
  font-size: 16px;
  color: #fff;
}
.header__navigation--account .account-popup__link:hover {
  text-decoration: underline;
}

.account-popup {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: clamp(20px, 2.46vw, 36px);
  border-radius: 5px;
  background-color: #6049E9;
  color: #fff;
}
@media (max-width: 1024px) {
  .account-popup {
    padding-block: 32px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  }
}

.utility-toggable__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-toggable__close,
.search-toggable__close {
  padding: 5px;
  background-color: transparent;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
}
.utility-toggable__close:hover,
.search-toggable__close:hover {
  background-color: #fff;
}
.utility-toggable__close:hover path,
.search-toggable__close:hover path {
  fill: #6049E9;
}

.account-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 24px;
  align-items: center;
  border-bottom: 1px solid #fff;
}

.account-popup__menu {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.account-popup__menu a {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .document-ready .header__navigation--utility.desktop {
    display: none;
  }

  .header__navigation--utility {
    justify-content: space-between;
    padding: 10px;
    padding-top: 0;
    background-color: #0A061C;
  }

  .resources-menu-toggle,
.account-menu-toggle,
.search-toggle {
    display: flex;
    align-items: center;
    gap: clamp(6px, 2vw, 10px);
    padding: 0 10px;
    height: 32px;
    width: auto;
    border-radius: 20px;
    font-size: clamp(12px, 3.5vw, 14px);
    font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    color: #fff;
    background-color: transparent;
    border: 0;
    cursor: pointer;
  }
  .resources-menu-toggle svg,
.account-menu-toggle svg,
.search-toggle svg {
    max-width: 14px;
    height: auto;
  }

  .resources-menu-toggle path {
    stroke: #fff;
  }

  .header__navigation--resources .utility-toggable {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px;
    z-index: 1;
    display: none;
  }
  .header__navigation--resources .utility-toggable::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 50%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 13px 13px;
    border-color: transparent transparent #6049E9 transparent;
    transform: rotate(0deg) translateX(-50%);
  }
  .header__navigation--resources .utility-toggable h6 {
    font-size: 14px;
  }
  .header__navigation--resources .utility-toggable a path {
    fill: #fff;
  }
  .header__navigation--resources .utility-toggable .button--tertiary {
    text-align: left;
  }
}
@media (max-width: 1024px) and (min-width: 1025px) {
  .header__navigation--resources .utility-toggable {
    width: clamp(230px, 20.625vw, 330px);
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .header__navigation--resources .utility-toggable {
    width: 100vw;
    max-width: calc(100vw - 20px);
  }
}
@media (max-width: 1024px) {
  .header__navigation--resources .header__resources {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: clamp(20px, 2.46vw, 36px);
    border-radius: 5px;
    background-color: #6049E9;
    color: #fff;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .header__navigation--resources .header__resources {
    padding-block: 32px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  }
}
@media (max-width: 1024px) {
  .header__navigation--resources .resources-menu {
    flex-direction: column;
    gap: 22px;
  }
  .header__navigation--resources .resources-menu .menu-item + .menu-item {
    padding-top: 21px;
    border-top: 1px solid #fff;
  }
  .header__navigation--resources .resources-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    color: #fff;
  }
  .header__navigation--resources .resources-menu a:not(.member-sign-in)::before {
    content: "";
    mask-repeat: no-repeat;
    mask-position: left center;
    background-color: #fff;
    width: 30px;
    margin-right: -8px;
    aspect-ratio: 1;
    display: inline-block;
  }
  .header__navigation--resources .resources-menu a.career-center::before {
    mask-image: url("/wp-content/themes/apta/images/suitcase.svg");
    mask-size: 17px;
  }
  .header__navigation--resources .resources-menu a.knowledge-hub::before {
    mask-image: url("/wp-content/themes/apta/images/lightbulb.svg");
    mask-size: 14px 20px;
  }
  .header__navigation--resources .resources-menu a.passenger-transport::before {
    mask-image: url("/wp-content/themes/apta/images/bus.svg");
    mask-size: 16px;
  }
  .header__navigation--resources .resources-menu a.apta-connect::before, .header__navigation--resources .resources-menu a.aptaconnect::before, .header__navigation--resources .resources-menu a.member-directory::before, .header__navigation--resources .resources-menu a.member-directories::before {
    mask-image: url("/wp-content/themes/apta/images/apta-connect.svg");
    mask-size: 18px;
  }
}
@media (max-width: 1024px) and (min-width: 1025px) {
  .header__navigation--resources .resources-menu a {
    font-size: clamp(14px, 1.23vw, 18px);
  }
}
@media (max-width: 1024px) {
  .header__navigation--resources {
    position: relative;
  }
  .header__navigation--resources .utility-toggable {
    left: 0;
    transform: translateX(0);
    display: none;
  }
  .header__navigation--resources .utility-toggable::before {
    left: 43px;
    transform: rotate(0deg);
  }
}
@media (max-width: 1024px) {
  .header__navigation--account .utility-toggable {
    top: 119px;
  }
  .header__navigation--account .utility-toggable::before {
    transform: rotate(0deg);
  }
}
@media (max-width: 1024px) {
  .account-menu-toggle path,
.search-toggle path {
    fill: #fff;
  }
}
@media (max-width: 1024px) {
  .header__navigation--search {
    position: relative;
  }
  .header__navigation--search:has(.search-toggle.active)::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 50%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 13px 13px;
    border-color: transparent transparent #6049E9 transparent;
    transform: rotate(0deg) translateX(-50%);
    border-width: 0 11px 11px;
    top: calc(100% + 5px);
    z-index: 1;
    pointer-events: none;
  }
}
@media (min-width: 1025px) {
  .document-ready .header__navigation--utility.mobile {
    display: none;
  }

  .header__navigation--utility {
    position: relative;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(10px, 2.7397260274vw, 40px);
  }

  .header__navigation--account {
    position: relative;
  }

  .resources-menu-toggle,
.search-toggle span,
.account-popup__close {
    display: none;
  }

  .resources-menu-toggle svg {
    max-width: 20px;
  }

  .resources-menu a,
.account-menu-toggle {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
    font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: clamp(12px, 1.09375vw, 14px);
    line-height: 1;
    color: #000;
    cursor: pointer;
  }
  .resources-menu a.external svg,
.account-menu-toggle.external svg {
    margin-top: 2px;
  }
  .resources-menu a:hover,
.account-menu-toggle:hover {
    text-decoration: underline;
  }

  .account-menu-toggle {
    padding: 0 10px;
    border-radius: 20px;
  }
  .account-menu-toggle svg {
    max-width: 16px;
  }
  .account-menu-toggle:hover {
    text-decoration: none;
  }

  .search-toggle {
    border-radius: 100%;
  }
  .search-toggle:not(.active):hover {
    box-shadow: inset 0 0 0 1px #6049E9;
  }

  body:not(.header-is-fixed):not(.search-is-open) .header__navigation--resources .utility-toggable {
    display: block !important;
  }
  body:not(.header-is-fixed):not(.search-is-open) .header__navigation--resources .utility-toggable h6 {
    display: none;
  }

  .header-is-fixed .header__navigation--resources .utility-toggable,
.search-is-open .header__navigation--resources .utility-toggable {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px;
    z-index: 1;
    display: none;
  }
  .header-is-fixed .header__navigation--resources .utility-toggable::before,
.search-is-open .header__navigation--resources .utility-toggable::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 50%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 13px 13px;
    border-color: transparent transparent #6049E9 transparent;
    transform: rotate(0deg) translateX(-50%);
  }
  .header-is-fixed .header__navigation--resources .utility-toggable h6,
.search-is-open .header__navigation--resources .utility-toggable h6 {
    font-size: 14px;
  }
  .header-is-fixed .header__navigation--resources .utility-toggable a path,
.search-is-open .header__navigation--resources .utility-toggable a path {
    fill: #fff;
  }
  .header-is-fixed .header__navigation--resources .utility-toggable .button--tertiary,
.search-is-open .header__navigation--resources .utility-toggable .button--tertiary {
    text-align: left;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .header-is-fixed .header__navigation--resources .utility-toggable,
.search-is-open .header__navigation--resources .utility-toggable {
    width: clamp(230px, 20.625vw, 330px);
  }
}
@media (min-width: 1025px) and (max-width: 1024px) {
  .header-is-fixed .header__navigation--resources .utility-toggable,
.search-is-open .header__navigation--resources .utility-toggable {
    width: 100vw;
    max-width: calc(100vw - 20px);
  }
}
@media (min-width: 1025px) {
  .header-is-fixed .header__navigation--resources .header__resources,
.search-is-open .header__navigation--resources .header__resources {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: clamp(20px, 2.46vw, 36px);
    border-radius: 5px;
    background-color: #6049E9;
    color: #fff;
  }
}
@media (min-width: 1025px) and (max-width: 1024px) {
  .header-is-fixed .header__navigation--resources .header__resources,
.search-is-open .header__navigation--resources .header__resources {
    padding-block: 32px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  }
}
@media (min-width: 1025px) {
  .header-is-fixed .header__navigation--resources .resources-menu,
.search-is-open .header__navigation--resources .resources-menu {
    flex-direction: column;
    gap: 22px;
  }
  .header-is-fixed .header__navigation--resources .resources-menu .menu-item + .menu-item,
.search-is-open .header__navigation--resources .resources-menu .menu-item + .menu-item {
    padding-top: 21px;
    border-top: 1px solid #fff;
  }
  .header-is-fixed .header__navigation--resources .resources-menu a,
.search-is-open .header__navigation--resources .resources-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    color: #fff;
  }
  .header-is-fixed .header__navigation--resources .resources-menu a:not(.member-sign-in)::before,
.search-is-open .header__navigation--resources .resources-menu a:not(.member-sign-in)::before {
    content: "";
    mask-repeat: no-repeat;
    mask-position: left center;
    background-color: #fff;
    width: 30px;
    margin-right: -8px;
    aspect-ratio: 1;
    display: inline-block;
  }
  .header-is-fixed .header__navigation--resources .resources-menu a.career-center::before,
.search-is-open .header__navigation--resources .resources-menu a.career-center::before {
    mask-image: url("/wp-content/themes/apta/images/suitcase.svg");
    mask-size: 17px;
  }
  .header-is-fixed .header__navigation--resources .resources-menu a.knowledge-hub::before,
.search-is-open .header__navigation--resources .resources-menu a.knowledge-hub::before {
    mask-image: url("/wp-content/themes/apta/images/lightbulb.svg");
    mask-size: 14px 20px;
  }
  .header-is-fixed .header__navigation--resources .resources-menu a.passenger-transport::before,
.search-is-open .header__navigation--resources .resources-menu a.passenger-transport::before {
    mask-image: url("/wp-content/themes/apta/images/bus.svg");
    mask-size: 16px;
  }
  .header-is-fixed .header__navigation--resources .resources-menu a.apta-connect::before, .header-is-fixed .header__navigation--resources .resources-menu a.aptaconnect::before, .header-is-fixed .header__navigation--resources .resources-menu a.member-directory::before, .header-is-fixed .header__navigation--resources .resources-menu a.member-directories::before,
.search-is-open .header__navigation--resources .resources-menu a.apta-connect::before,
.search-is-open .header__navigation--resources .resources-menu a.aptaconnect::before,
.search-is-open .header__navigation--resources .resources-menu a.member-directory::before,
.search-is-open .header__navigation--resources .resources-menu a.member-directories::before {
    mask-image: url("/wp-content/themes/apta/images/apta-connect.svg");
    mask-size: 18px;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .header-is-fixed .header__navigation--resources .resources-menu a,
.search-is-open .header__navigation--resources .resources-menu a {
    font-size: clamp(14px, 1.23vw, 18px);
  }
}
@media (min-width: 1025px) {
  .header-is-fixed .header__navigation--utility,
.search-is-open .header__navigation--utility {
    gap: clamp(5px, 1.0273972603vw, 15px);
  }
}
@media (min-width: 1025px) {
  .header-is-fixed .header__navigation--resources,
.search-is-open .header__navigation--resources {
    position: relative;
  }
}
@media (min-width: 1025px) {
  .header-is-fixed .account-menu-toggle,
.search-is-open .account-menu-toggle {
    justify-content: center;
    width: 34px;
    height: 34px;
  }
  .header-is-fixed .account-menu-toggle svg,
.search-is-open .account-menu-toggle svg {
    max-width: 18px;
  }
  .header-is-fixed .account-menu-toggle span,
.search-is-open .account-menu-toggle span {
    display: none;
  }
}
@media (min-width: 1025px) {
  .header-is-fixed .account-menu-toggle,
.header-is-fixed .resources-menu-toggle,
.header-is-fixed .search-toggle,
.search-is-open .account-menu-toggle,
.search-is-open .resources-menu-toggle,
.search-is-open .search-toggle {
    display: flex;
    padding: 0;
    border-radius: 30px;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  }
}
@media (min-width: 1025px) {
  .header-is-fixed .search-toggle.active,
.search-is-open .search-toggle.active {
    position: relative;
  }
  .header-is-fixed .search-toggle.active svg,
.search-is-open .search-toggle.active svg {
    display: none;
  }
  .header-is-fixed .search-toggle.active::before, .header-is-fixed .search-toggle.active::after,
.search-is-open .search-toggle.active::before,
.search-is-open .search-toggle.active::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 14px;
    background-color: #fff;
    top: 50%;
    left: 50%;
  }
  .header-is-fixed .search-toggle.active::before,
.search-is-open .search-toggle.active::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header-is-fixed .search-toggle.active::after,
.search-is-open .search-toggle.active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media (min-width: 1025px) {
  .utility-toggable__close {
    display: none;
  }
}
.event--menu-featured--link {
  display: flex;
  border-radius: 30px;
  background-color: #fff;
  flex-direction: column;
  color: #35287C;
}
.event--menu-featured--link:link .event--menu-featured--description, .event--menu-featured--link:visited .event--menu-featured--description {
  font-size: 18px;
  line-height: 1.3;
  color: #000;
}
.event--menu-featured--link:hover, .event--menu-featured--link:focus {
  color: #35287C;
}
.event--menu-featured--link:hover .event--menu-featured--icon, .event--menu-featured--link:focus .event--menu-featured--icon {
  transform: rotate(-45deg);
}
.event--menu-featured--link img {
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.175s ease-in-out;
}
.event--menu-featured--link:hover img {
  transform: scale(1.1);
}

.event--menu-featured__image {
  background-color: #6049E9;
  display: flex;
  width: 100%;
  aspect-ratio: 1/0.504;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  overflow: hidden;
}
.event--menu-featured__image img {
  width: 100%;
}

.event--menu-featured--content {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.05vw, 30px) clamp(20px, 2.39vw, 35px);
}

.event--menu-featured__info {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1643835616vw, 17px);
  width: 84.63%;
}

.event--menu-featured--date {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.event--menu-featured--icon {
  margin-top: -8px;
  margin-left: auto;
  pointer-events: none;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.event--menu-featured--icon img {
  width: 36px;
  height: auto;
}

.event--menu-teaser--link {
  display: flex;
  border-radius: 30px;
  background-color: #fff;
  flex-direction: row;
  min-height: 96px;
}
.event--menu-teaser--link img {
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.175s ease-in-out;
}
.event--menu-teaser--link:hover img, .event--menu-teaser--link:focus img {
  transform: scale(1.1);
}
.event--menu-teaser--link:hover .event--menu-teaser--icon, .event--menu-teaser--link:focus .event--menu-teaser--icon {
  transform: rotate(-45deg);
}
.event--menu-teaser--link:link .event--menu-teaser--title,
.event--menu-teaser--link:link .event--menu-teaser--date, .event--menu-teaser--link:visited .event--menu-teaser--title,
.event--menu-teaser--link:visited .event--menu-teaser--date {
  color: #000;
}

.event--menu-teaser__image {
  background-color: #6049E9;
  display: flex;
  min-width: clamp(80px, 8.0821917808vw, 118px);
  max-width: 118px;
  border-radius: 30px;
  overflow: hidden;
}

.event--menu-teaser--content {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  padding: clamp(10px, 1.36vw, 20px) clamp(18px, 2.46vw, 36px);
}

.event--menu-teaser__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  gap: 11px;
}

.event--menu-teaser__info--bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  row-gap: 0;
}

.event--menu-teaser--title {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
  width: 100%;
}

.event--menu-teaser--tag {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
  color: #35287C;
}

.event--menu-teaser--date {
  font-size: 14px;
  line-height: 1.5;
}

.event--menu-teaser--icon {
  margin-top: auto;
  pointer-events: none;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.event--menu-teaser--icon img {
  width: 36px;
  height: auto;
}

.hero-internal--simple.--search {
  margin-bottom: 0;
}
.hero-internal--simple.--search a.breadcrumbs__link.whitelist-domain-link::after {
  content: "";
}
.hero-internal--simple.--search .filtered-list-search-input,
.hero-internal--simple.--search .filtered-list__search {
  background-color: #fff;
}
.hero-internal--simple.--search .hero-internal__content {
  gap: 0;
}
.hero-internal--simple.--search .hero-internal__title {
  margin-block: 50px;
}
.hero-internal--simple.--search .filtered-list__search .filtered-list-search-button:after {
  transform: translate3d(-50%, -50%, 0);
}

.search-results__top {
  margin-block: 50px;
}

.search-results__results-text {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  color: #7a7b7c;
  font-size: clamp(14px, 1.095890411vw, 16px);
  margin: 0;
}

.search-results__items {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.7397260274vw, 40px);
}

.search-results__item {
  padding-bottom: 24px;
  border-bottom: 1px solid #E7E7E7;
}
.search-results__item:last-child {
  border-bottom: none;
}

.search-results__card {
  display: flex;
  gap: clamp(20px, 2.7397260274vw, 40px);
  align-items: flex-start;
}
@media (max-width: 700px) {
  .search-results__card {
    flex-direction: column;
  }
}

.search-results__card-thumbnail {
  flex-shrink: 0;
  width: clamp(120px, 13.698630137vw, 200px);
  aspect-ratio: 4/3;
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  overflow: hidden;
}
.search-results__card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .search-results__card-thumbnail {
    width: 100%;
    max-width: 200px;
  }
}

.search-results__card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.search-results__card-type {
  display: inline-block;
  align-self: flex-start;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #35287C;
  background-color: #E9E6FF;
  padding: 4px 10px;
  border-radius: 20px;
}

.search-results__card-title {
  font-size: clamp(18px, 1.5068493151vw, 22px);
  font-weight: 500;
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  line-height: 1.3;
  margin: 0;
}
.search-results__card-title a {
  color: #0A061C;
  text-decoration: none;
  transition: color 0.175s ease-in-out;
}
.search-results__card-title a:hover {
  color: #6049E9;
  text-decoration: underline;
}

.search-results__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 650px) {
  .search-results__card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.search-results__card-date {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  color: #7a7b7c;
  font-size: clamp(13px, 1.0273972603vw, 15px);
}

.search-results__card-term {
  color: #6049E9;
  font-size: clamp(13px, 1.0273972603vw, 15px);
  font-weight: 500;
}
.search-results__card-term::before {
  content: "·";
  margin-right: 8px;
  color: #7a7b7c;
  font-weight: 700;
}
@media (max-width: 650px) {
  .search-results__card-term::before {
    display: none;
  }
}

.search-results__card-excerpt {
  font-size: clamp(15px, 1.1643835616vw, 17px);
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  color: #0A061C;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-results__card-link {
  margin-top: 4px;
}

.search-results__empty {
  text-align: center;
  padding-top: clamp(40px, 5.4794520548vw, 80px);
  padding-bottom: clamp(40px, 5.4794520548vw, 80px);
  padding-left: 20px;
  padding-right: 20px;
}

.search-results__empty-title {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: clamp(22px, 1.9178082192vw, 28px);
  font-weight: 500;
  color: #0A061C;
  margin-bottom: 12px;
}

.search-results__empty-message {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: clamp(15px, 1.1643835616vw, 17px);
  color: #7a7b7c;
  max-width: 500px;
  margin: 0 auto;
}

.search-results__wrapper .filtered-list__pagination {
  margin-top: clamp(30px, 3.4246575342vw, 50px);
}

.single-document__details {
  display: flex;
  gap: clamp(30px, 4vw, 60px);
  padding-block: 40px 80px;
}
@media (max-width: 800px) {
  .single-document__details {
    flex-direction: column;
    padding-block: 30px 60px;
  }
}
.single-document__body {
  flex: 1;
  min-width: 0;
}
.single-document__body .wysiwyg p:last-child {
  margin-bottom: 0;
}
.single-document__sidebar {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 800px) {
  .single-document__sidebar {
    width: 100%;
  }
}
.single-document__download-btn {
  width: 100%;
  justify-content: center;
}
.single-document__meta-group {
  font-size: 16px;
  line-height: 1.5;
}
.single-document__meta-label {
  font-weight: 600;
}
.single-document__thumbnail img {
  width: 100%;
  height: auto;
}

.single-standard__content {
  padding-block: 40px 80px;
}
.single-standard__section {
  margin-bottom: 40px;
}
.single-standard__section:last-child {
  margin-bottom: 0;
}
.single-standard__heading {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(30px, 2.4657534247vw, 36px);
  line-height: 1.3;
  margin-bottom: 20px;
}
.single-standard__section-heading {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(24px, 1.9178082192vw, 28px);
  line-height: 1.4;
  margin-bottom: 16px;
}
.single-standard__section-content.wysiwyg p:last-child {
  margin-bottom: 0;
}
.single-standard__keywords p {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .single-standard__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: -20px;
    padding-inline: 20px;
  }
}
.single-standard__table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 800px) {
  .single-standard__table {
    white-space: nowrap;
  }
}
.single-standard__table thead tr.row-1 {
  background-color: #F4F4F4;
}
.single-standard__table thead tr.row-1 th {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-align: left;
  vertical-align: middle;
  padding-block: clamp(16px, 1.3698630137vw, 20px);
  padding-inline: clamp(16px, 1.9178082192vw, 28px);
}
.single-standard__table thead tr.row-1 th:first-of-type {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.single-standard__table thead tr.row-1 th:last-of-type {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.single-standard__table tbody tr:nth-of-type(n+2) {
  border-top: 1px solid #0A061C;
}
.single-standard__table tbody tr td {
  font-size: 16px;
  color: #0A061C;
  vertical-align: top;
  padding-block: clamp(16px, 1.3698630137vw, 20px);
  padding-inline: clamp(16px, 1.9178082192vw, 28px);
}
.single-standard__table tbody tr td:first-child {
  white-space: nowrap;
}
.single-standard__table tbody tr td a {
  display: inline-flex;
  margin-right: auto;
}
.single-standard__related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-standard__related-list li {
  margin-bottom: 12px;
}
.single-standard__related-list li:last-child {
  margin-bottom: 0;
}
.single-standard__related-link {
  color: #6049E9;
  text-decoration: underline;
}
.single-standard__related-link:hover, .single-standard__related-link:focus {
  text-decoration: none;
}

.page-content .block + .block {
  margin-top: clamp(90px, 8.904109589vw, 130px);
}
.page-content .fullscreen {
  padding-block: clamp(90px, 6.8493150685vw, 100px);
}
.page-content .fullscreen + .fullscreen {
  margin-top: 0;
}
.page-content .fullscreen.gray + .gray {
  padding-top: 0;
}
.page-content .page-sidebar-navigation__content .block + .block {
  margin-top: 90px;
}
.page-content .page-sidebar-navigation__content .fullscreen {
  padding-block: 90px;
}
.page-content .ticker + .newsletter-and-social-links-section {
  margin-top: 0;
}

.page-404 .hero-event__content.--has-breadcrumbs {
  padding-bottom: 0;
}
.page-404 .hero-event__sublinks {
  flex-direction: column;
  align-items: center;
  margin-top: clamp(40px, 4.1095890411vw, 60px);
}
.page-404 .hero-event__sublinks h2 {
  margin-bottom: 10px;
  font-size: 24px;
}
.page-404 .hero-event__sublinks .hero-event__sublinks-nav {
  position: relative;
}
.page-404 .hero-event__sublinks-list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 550px) {
  .page-404 .hero-event__sublinks-list {
    flex-direction: column;
  }
}
.page-404 .hero-event__sublinks-list-item {
  max-width: 100%;
}
.page-404 .hero-event__sublinks-list-item:nth-of-type(n+2) {
  border-left: 1px solid #d6d6d6;
}
@media (max-width: 550px) {
  .page-404 .hero-event__sublinks-list-item:nth-of-type(n+2) {
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid #d6d6d6;
  }
}

.not-found--search-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: clamp(50px, 6.8493150685vw, 100px);
}
.not-found--search-field h2 {
  font-size: 24px;
  margin-top: 0;
}
.not-found--search-field p {
  margin-block: 0;
}

.basic-tabs__tab-buttons {
  cursor: pointer;
  column-gap: 1px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(231, 231, 231, 0.75);
  background-color: rgba(231, 231, 231, 0.25);
}

.basic-tabs__tab-button {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  border: 0;
  padding: 24px 40px;
  line-height: 1;
  background-color: #fff;
  color: #34287C;
  cursor: inherit;
  transition: background-color 0.175s ease-out;
}
.basic-tabs__tab-button:hover {
  background-color: #E9E6FF;
}
.basic-tabs__tab-button:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.basic-tabs__tab-button:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.basic-tabs__tab-button.--active {
  background-color: #E9E6FF;
  cursor: default;
}

@media screen and (max-width: 800px) {
  .basic-tabs__tab-buttons {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .basic-tabs__tab-buttons::-webkit-scrollbar {
    display: none;
  }
  .basic-tabs__tab-buttons.--grabbable {
    cursor: grab;
  }
  .basic-tabs__tab-buttons.--dragging {
    cursor: grabbing;
  }

  .basic-tabs__tab-button {
    border-radius: 15px;
    text-wrap: nowrap;
  }
  .basic-tabs__tab-button:first-of-type {
    margin-left: 20px;
  }
  .basic-tabs__tab-button:last-of-type {
    margin-right: 20px;
  }
}
.main-breadcrumbs {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.breadcrumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  transition: color 0.175s ease-out;
}

.breadcrumbs__list-item {
  display: flex;
  font-size: 14px;
  line-height: 1;
  color: #0A061C;
}

.single-press-release .breadcrumbs__list-item.--last {
  display: none;
}
.single-press-release .breadcrumbs__list-item:nth-last-child(2) a::after {
  content: none;
}

a.breadcrumbs__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1em;
  line-height: 1;
  color: #6049E9;
  text-decoration: none;
}
a.breadcrumbs__link::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: #6049E9;
}
a.breadcrumbs__link:hover {
  text-decoration: underline;
}
a.breadcrumbs__link:active {
  color: #35287C;
}
a.breadcrumbs__link:visited {
  color: #6049E9;
}

.accordion-basic--expandable {
  display: none;
}

.accordion-basic--expander {
  transform: rotate(0);
  transition: transform 0.3s linear;
}
.accordion-basic--group.active .accordion-basic--expander {
  transform: rotate(-180deg);
}

/*
 * This is a base solution for various carousel libraries, like "Splide", "Slick", etc.
 * It was styled before it was defined what library was going to be used.
 * Classes here match the ones used in the style guide.
 * Feel free to adapt it to your needs, by adding new classes, or changing the existing ones.
 * Paulo
 */
.carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 56px;
}
.carousel-navigation button {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.carousel-navigation button:hover svg path {
  fill: #35287C;
}
.carousel-navigation button[disabled] {
  pointer-events: none;
  cursor: default;
}
.carousel-navigation button[disabled] svg path {
  fill: #0A061C;
}

.carousel-arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.carousel-arrow.arrow--prev {
  transform: scaleX(-1);
}

.carousel-pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-pagination li {
  display: flex;
  align-items: center;
}
.carousel-pagination button {
  width: 30px;
  height: 5px;
  background-color: #E7E7E7;
  border-radius: 4px;
  transition: background-color 0.175s ease-in-out;
}
.carousel-pagination button.is-active {
  background-color: #6049E9;
}
.carousel-pagination button:hover {
  background-color: #35287C;
}

.pagination__nav {
  display: flex;
  justify-content: center;
}

.pagination__pages {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.pagination__pages li {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-weight: 700;
}
.pagination__pages li.pagination__page-first svg, .pagination__pages li.pagination__page-previous svg {
  transform: scaleX(-1);
}
.pagination__pages li.pagination__page-previous svg, .pagination__pages li.pagination__page-next svg {
  width: 27px;
}
.pagination__pages li.pagination__page-first a svg path, .pagination__pages li.pagination__page-previous a svg path, .pagination__pages li.pagination__page-last a svg path, .pagination__pages li.pagination__page-next a svg path {
  transition: fill 0.175s ease-out;
}
.pagination__pages li.pagination__page-first a:hover svg path, .pagination__pages li.pagination__page-previous a:hover svg path, .pagination__pages li.pagination__page-last a:hover svg path, .pagination__pages li.pagination__page-next a:hover svg path {
  fill: #35287C;
}
.pagination__pages li.pagination__page-number.--current {
  border-radius: 100%;
  background-color: #6049E9;
  color: #fff;
}
.pagination__pages li.pagination__page-separator {
  position: relative;
}
.pagination__pages li.pagination__page-separator::after {
  content: "";
  display: block;
  transform: translateY(6px);
  width: 27px;
  height: 2px;
  background-color: #6049E9;
}
.pagination__pages a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  line-height: 1;
  cursor: pointer;
  color: #6049E9;
  text-decoration: none;
  transition: color 0.175s ease-out, background-color 0.175s ease-out;
}
.pagination__pages a:hover {
  color: #35287C;
  background-color: #E9E6FF;
}

/**
 * Shared sidebar layout styles
 * Used by blocks that have sidebar navigation (standards-groups, page-sidebar-navigation, etc.)
 */
.has-sidebar__inner {
  display: flex;
  justify-content: space-between;
}
.has-sidebar__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 28%;
  max-width: 336px;
}
.has-sidebar__sidebar label {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(10, 6, 28, 0.5);
}
.has-sidebar__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.has-sidebar__sidebar ul a {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  text-decoration: none;
}
.has-sidebar__sidebar ul a:hover {
  text-decoration: underline;
}
.has-sidebar__sidebar ul .current-page a {
  font-weight: bold;
}
.has-sidebar__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4.4705882353vw, 38px);
  max-width: 936px;
  margin: 0 auto;
}
.has-sidebar .has-sidebar__content {
  width: 66.2%;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 850px) {
  .has-sidebar__inner {
    flex-direction: column;
    gap: clamp(20px, 5.8823529412vw, 50px);
  }
  .has-sidebar__sidebar {
    width: 100%;
    max-width: 100%;
  }
  .has-sidebar__sidebar ul {
    display: block;
    column-count: 2;
    column-gap: 40px;
  }
  .has-sidebar__sidebar li {
    margin-bottom: clamp(14px, 2.08vw, 30px);
  }
  .has-sidebar__content {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .has-sidebar__sidebar ul {
    column-count: 1;
  }
}

.social-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.social-menu__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #6049E9;
  box-shadow: inset 0 0 0 1px #6049E9;
  transition: background-color 0.1s ease-in-out;
}
.social-menu__list a.external svg {
  margin-top: 0;
}
.social-menu__list a:hover {
  background-color: transparent;
}

/* Blocks and modules */
.accordion .l-container--xlarge {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1216px;
}

.accordion__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.accordion__heading {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(24px, 1.9178082192vw, 28px);
  line-height: 1.4;
}

.accordion--control {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #6049E9;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
.accordion--control label {
  pointer-events: none;
}
.accordion--control:hover {
  text-decoration: underline;
}
.accordion--control[aria-expanded=true] .accordion--control__icon {
  transform: rotate(90deg);
}
.accordion--control[aria-expanded=true] .accordion--control__icon::after {
  opacity: 0;
}

.accordion--control__icon {
  display: flex;
  position: relative;
  width: 12px;
  height: 12px;
  transform: rotate(0deg);
  transition: transform 0.25s ease-in-out;
  pointer-events: none;
}
.accordion--control__icon::before, .accordion--control__icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  width: 12px;
  height: 2px;
  background-color: #6049E9;
}
.accordion--control__icon::before {
  top: 0;
  left: 5px;
  width: 2px;
  height: 12px;
}
.accordion--control__icon::after {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.accordion__accordion-items {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.1917808219vw, 32px);
}

.accordion-item {
  display: flex;
  flex-direction: column;
}

.accordion-item__panel {
  display: none;
}

.accordion-item__heading {
  display: flex;
  width: 100%;
}

.accordion-item__toggle {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: clamp(25px, 3.0821917808vw, 45px);
  padding-right: clamp(20px, 3.0821917808vw, 45px);
  padding-left: clamp(20px, 3.0821917808vw, 45px);
  width: 100%;
  border-radius: 20px;
  background-color: #F4F4F4;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}
.accordion-item__toggle[aria-expanded=true] {
  background-color: transparent;
}
.accordion-item__toggle[aria-expanded=true] svg {
  transform: rotate(-180deg);
}
.accordion-item__toggle svg {
  min-width: 24px;
  width: 24px;
  transition: transform 0.25s ease-in-out;
  transform: rotate(0deg);
}

.accordion-item__title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}

.accordion-item__panel {
  padding: clamp(20px, 3.0821917808vw, 45px);
  padding-top: 10px;
  padding-bottom: 20px;
}

.accordion-item__panel--inner {
  width: 100%;
}

@media (max-width: 600px) {
  .accordion .l-container--xlarge {
    gap: 30px;
  }

  .accordion__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.banner-block.gray {
  background-color: #7a7b7c;
  background-color: #F4F4F4;
}

.banner-block__inner {
  display: flex;
  flex-direction: column;
}

.banner-block__above {
  position: relative;
  margin-inline: auto;
  text-align: center;
}

.banner-block__below {
  text-align: center;
}

.banner-block__above-text {
  display: inline-flex;
  color: rgba(10, 6, 28, 0.5);
  margin-inline: auto;
  padding-right: 24px;
  position: relative;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.banner-block__above-text::after {
  background: url("data:image/svg+xml;utf8,<svg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M8 15.5C6.14348 15.5 4.36301 14.7625 3.05025 13.4497C1.7375 12.137 1 10.3565 1 8.5C1 6.64348 1.7375 4.86301 3.05025 3.55025C4.36301 2.2375 6.14348 1.5 8 1.5C9.85651 1.5 11.637 2.2375 12.9497 3.55025C14.2625 4.86301 15 6.64348 15 8.5C15 10.3565 14.2625 12.137 12.9497 13.4497C11.637 14.7625 9.85651 15.5 8 15.5ZM8 16.5C10.1217 16.5 12.1566 15.6571 13.6569 14.1569C15.1571 12.6566 16 10.6217 16 8.5C16 6.37827 15.1571 4.34344 13.6569 2.84315C12.1566 1.34285 10.1217 0.5 8 0.5C5.87827 0.5 3.84344 1.34285 2.34315 2.84315C0.842855 4.34344 0 6.37827 0 8.5C0 10.6217 0.842855 12.6566 2.34315 14.1569C3.84344 15.6571 5.87827 16.5 8 16.5Z' fill='%236049E9'/><path d='M8.93 7.088L6.64 7.375L6.558 7.755L7.008 7.838C7.302 7.908 7.36 8.014 7.296 8.307L6.558 11.775C6.364 12.672 6.663 13.094 7.366 13.094C7.911 13.094 8.544 12.842 8.831 12.496L8.919 12.08C8.719 12.256 8.427 12.326 8.233 12.326C7.958 12.326 7.858 12.133 7.929 11.793L8.93 7.088ZM9 5C9 5.26522 8.89464 5.51957 8.70711 5.70711C8.51957 5.89464 8.26522 6 8 6C7.73478 6 7.48043 5.89464 7.29289 5.70711C7.10536 5.51957 7 5.26522 7 5C7 4.73478 7.10536 4.48043 7.29289 4.29289C7.48043 4.10536 7.73478 4 8 4C8.26522 4 8.51957 4.10536 8.70711 4.29289C8.89464 4.48043 9 4.73478 9 5Z' fill='%236049E9'/></svg>") no-repeat center center;
  background-size: contain;
  content: "";
  height: 16px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.banner-block__above-text[aria-expanded=true] + .banner-block__disclaimer-text {
  display: block;
}

.banner-block__disclaimer-text {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  max-width: 460px;
  font-size: 14px;
  width: 90vw;
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.banner-block__disclaimer-text__inner {
  position: relative;
  padding: 20px;
}
.banner-block__disclaimer-text__inner::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.banner-block__below-link {
  text-decoration: none;
}

@media screen and (max-width: 1100px) {
  .banner-block__inner {
    row-gap: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .banner-block__inner {
    row-gap: 20px;
  }
}
.board-members .l-container--xlarge {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3.2876712329vw, 48px);
  max-width: 1216px;
}

.board-members__inner {
  display: flex;
  flex-direction: column;
}

.board-members__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.board-member__list-item-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1100px) {
  .board-members__inner {
    row-gap: 48px;
  }

  .board-members__list {
    column-gap: 36px;
    column-count: 3;
  }

  .board-members__list-item {
    margin-bottom: 48px;
  }

  .board-member__name {
    font-size: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .board-members__list {
    column-gap: 36px;
    column-count: 2;
  }

  .board-members__list-item {
    margin-bottom: 28px;
  }

  .board-members__inner {
    row-gap: 34px;
  }
}
@media screen and (max-width: 500px) {
  .board-members__list-item {
    margin-bottom: 28px;
  }

  .board-members__list {
    column-count: 1;
  }
}
.buttons-grid.gray {
  background-color: #F4F4F4;
}
.buttons-grid:has(.grid-2x2) .l-container--xlarge {
  max-width: 977px;
}
.buttons-grid:has(.grid-3x3) .l-container--xlarge {
  max-width: 1096px;
}
.buttons-grid:has(.grid-4x4) .l-container--xlarge {
  max-width: 1352px;
}
.buttons-grid:has(.grid-6x1) .l-container--xlarge {
  max-width: 1608px;
}

.buttons-grid__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.buttons-grid__card-icon {
  display: flex;
}
.buttons-grid__card-icon img {
  max-width: 38px;
  max-height: 38px;
  width: auto;
  height: auto;
}

.buttons-grid__heading {
  font-size: clamp(24px, 2.4657534247vw, 36px);
}
.buttons-grid__heading.center {
  text-align: center;
}

.buttons-grid__container {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 24px;
  width: 100%;
}
.buttons-grid__container.grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}
.buttons-grid__container.grid-2x2 .buttons-grid__card {
  max-width: 456px;
}
.buttons-grid__container.grid-3x3 {
  grid-template-columns: repeat(3, 1fr);
}
.buttons-grid__container.grid-3x3 .buttons-grid__card {
  max-width: 336px;
}
.buttons-grid__container.grid-4x4 {
  grid-template-columns: repeat(4, 1fr);
}
.buttons-grid__container.grid-4x4 .buttons-grid__card {
  max-width: 310px;
}
.buttons-grid__container.grid-6x1 {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1416px;
  margin: 0 auto;
}
.buttons-grid__container.grid-6x1 .buttons-grid__card-link {
  gap: 24px;
  padding: 24px;
}
.buttons-grid__container.grid-6x1 .buttons-grid__card-bottom {
  display: flex;
  flex-direction: column;
}
.buttons-grid__container.grid-6x1 .buttons-grid__card-title {
  align-self: flex-start;
}
@media (max-width: 1100px) {
  .buttons-grid__container.grid-6x1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .buttons-grid__container.grid-4x4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .buttons-grid__container.grid-4x4 .buttons-grid__card {
    max-width: 1000%;
  }
}
@media (max-width: 900px) {
  .buttons-grid__container.grid-3x3, .buttons-grid__container.grid-4x4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .buttons-grid__container.grid-3x3 .buttons-grid__card, .buttons-grid__container.grid-4x4 .buttons-grid__card {
    max-width: 100%;
  }
}
@media (max-width: 750px) {
  .buttons-grid__container.grid-6x1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .buttons-grid__container.grid-6x1 .buttons-grid__card {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .buttons-grid__container.grid-2x2, .buttons-grid__container.grid-3x3, .buttons-grid__container.grid-4x4, .buttons-grid__container.grid-6x1 {
    grid-template-columns: 1fr;
  }
  .buttons-grid__container.grid-2x2 .buttons-grid__card-bottom, .buttons-grid__container.grid-3x3 .buttons-grid__card-bottom, .buttons-grid__container.grid-4x4 .buttons-grid__card-bottom, .buttons-grid__container.grid-6x1 .buttons-grid__card-bottom {
    flex-direction: row;
  }
  .buttons-grid__container.grid-2x2 .buttons-grid__card-title, .buttons-grid__container.grid-3x3 .buttons-grid__card-title, .buttons-grid__container.grid-4x4 .buttons-grid__card-title, .buttons-grid__container.grid-6x1 .buttons-grid__card-title {
    text-align: center;
  }
}

.buttons-grid__card {
  display: flex;
}

.buttons-grid__card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  padding: 30px;
  padding-bottom: 20px;
  width: 100%;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
}
.buttons-grid__card-link.whitelist-domain-link svg {
  display: block;
}
.buttons-grid__card-link:hover, .buttons-grid__card-link:visited {
  color: #000;
}
.white .buttons-grid__card-link {
  background-color: #F4F4F4;
}
.gray .buttons-grid__card-link {
  background-color: #fff;
}
.buttons-grid__card-link.external {
  gap: 60px;
}
.buttons-grid__card-link.external svg {
  margin-top: 0;
}
.buttons-grid__card-link .external-icon {
  display: none;
}
.buttons-grid__card-link:hover .buttons-grid__card-arrow, .buttons-grid__card-link:focus .buttons-grid__card-arrow {
  transform: rotate(-45deg);
}

.buttons-grid__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  height: 100%;
  width: 100%;
}

.buttons-grid__card-title {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.buttons-grid__card-arrow {
  margin-bottom: 3px;
  min-width: 36px;
  pointer-events: none;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}

.card-list-with-dropdown .l-container--xlarge.--limited-width .card-list-with-dropdown__inner {
  margin-left: auto;
  max-width: 938px;
}

.card-list-with-dropdown__inner {
  display: flex;
  flex-direction: column;
}

.card-list-with-dropdown__header {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.card-list-with-dropdown__search {
  border: 2px solid #0A061C;
  border-radius: 100px;
  padding: 8px 7px 8px 68px;
  position: relative;
}
.card-list-with-dropdown__search::before {
  content: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M19.0336 20L11.4856 12.4518C10.9068 12.9641 10.232 13.3587 9.46109 13.6358C8.69018 13.9129 7.89214 14.0514 7.06695 14.0514C5.09181 14.0514 3.4202 13.3678 2.05212 12.0008C0.684039 10.6335 0 8.97575 0 7.02758C0 5.07923 0.683554 3.42092 2.05066 2.05267C3.41777 0.684222 5.07765 0 7.0303 0C8.98276 0 10.6429 0.683737 12.0108 2.05121C13.3787 3.41869 14.0626 5.077 14.0626 7.02613C14.0626 7.84084 13.9232 8.63412 13.6444 9.40598C13.3654 10.1778 12.9619 10.877 12.434 11.5034L20 19.0225L19.0336 20ZM7.04921 12.7316C8.63813 12.7316 9.98429 12.1779 11.0877 11.0704C12.1911 9.96311 12.7428 8.61493 12.7428 7.02584C12.7428 5.43656 12.1911 4.08828 11.0877 2.98099C9.98429 1.87352 8.63813 1.31978 7.04921 1.31978C5.45021 1.31978 4.09551 1.87352 2.98511 2.98099C1.8749 4.08828 1.3198 5.43656 1.3198 7.02584C1.3198 8.61493 1.8749 9.96311 2.98511 11.0704C4.09551 12.1779 5.45021 12.7316 7.04921 12.7316Z' fill='%236049E9'/></svg>");
  display: inline-block;
  height: 20px;
  left: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.card-list-with-dropdown__search .cards-list-search-form {
  column-gap: 14px;
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
}
.card-list-with-dropdown__search .cards-list-search-input {
  background: transparent;
  border: none;
  color: #0A061C;
  font-size: 20px;
  width: 100%;
}
.card-list-with-dropdown__search .cards-list-search-button {
  background-color: #6049E9;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  height: 48px;
  width: 48px;
}
.card-list-with-dropdown__search .cards-list-search-button::after {
  content: url("data:image/svg+xml;utf8,<svg width='22' height='16' viewBox='0 0 22 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M13.6998 16L12.5044 14.883L18.8019 8.81251H0V7.20904H18.8019L12.4821 1.11666L13.6771 0L21.9871 8.0106L13.6998 16Z' fill='white'/></svg>");
  display: inline-block;
  height: 16px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-60%) translateX(-50%);
  width: 22px;
}
.card-list-with-dropdown__search .cards-list-search-submit {
  background: transparent;
  border: none;
  color: #6049E9;
  cursor: pointer;
  font-size: 0;
  height: 100%;
  padding: 10px;
  width: 100%;
}

.card-list-with-dropdown__filter-sorting {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.card-list-with-dropdown__filter-sort-label {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.card-list-with-dropdown__filters,
.card-list-with-dropdown__sorting {
  column-gap: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.card-list-with-dropdown__filter-dropdowns {
  display: flex;
  column-gap: 50px;
}

.card-list-with-dropdown__filter-dropdown {
  position: relative;
}
.card-list-with-dropdown__filter-dropdown::after {
  content: url("data:image/svg+xml;utf8,<svg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M14.6924 0.599835L16 1.9087L8.8734 9.03777C8.75921 9.15269 8.62342 9.24388 8.47384 9.30612C8.32426 9.36835 8.16386 9.40039 8.00185 9.40039C7.83984 9.40039 7.67944 9.36835 7.52986 9.30612C7.38029 9.24388 7.24449 9.15269 7.1303 9.03777L-3.27472e-07 1.9087L1.30763 0.601069L8 7.2922L14.6924 0.599835Z' fill='%236049E9'/></svg>");
  display: inline-block;
  height: 10px;
  position: absolute;
  right: 5px;
  top: 0;
  width: 16px;
  pointer-events: none;
}
.card-list-with-dropdown__filter-dropdown.--sorter::before {
  content: url("data:image/svg+xml;utf8,<svg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.875 9.875V11.125H0.875V9.875H5.875ZM11.4912 5.375V6.625H0.875V5.375H11.4912ZM17.125 0.875V2.125H0.875V0.875H17.125Z' fill='%236049E9' stroke='%236049E9' stroke-width='0.25'/></svg>");
  display: inline-block;
  height: 12px;
  position: absolute;
  left: 5px;
  top: 0;
  width: 18px;
}
.card-list-with-dropdown__filter-dropdown.--sorter select {
  padding-left: 45px;
}
.card-list-with-dropdown__filter-dropdown select {
  appearance: none;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  padding-right: 45px;
  cursor: pointer;
}

.card-list-with-dropdown--reset-filters {
  top: 40px;
  right: 0;
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 9px 20px;
  color: #6049E9;
  background-color: #fff;
  border: 1px solid #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out, border-color 0.175s ease-in-out, color 0.175s ease-in-out;
  position: absolute;
  display: none;
}
.card-list-with-dropdown--reset-filters:hover, .card-list-with-dropdown--reset-filters:active, .card-list-with-dropdown--reset-filters:focus {
  text-decoration: none;
}
.card-list-with-dropdown--reset-filters:visited {
  color: #6049E9;
}
.card-list-with-dropdown--reset-filters svg {
  margin-top: 0;
}
.card-list-with-dropdown--reset-filters svg path {
  fill: #6049E9;
  transition: fill 0.175s ease-in-out;
}
.card-list-with-dropdown--reset-filters.arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.card-list-with-dropdown--reset-filters:hover {
  color: #fff;
  background-color: #6049E9;
}
.card-list-with-dropdown--reset-filters:active {
  background-color: #35287C;
}
.card-list-with-dropdown--reset-filters:active:focus {
  box-shadow: none;
}
.card-list-with-dropdown--reset-filters:hover::after, .card-list-with-dropdown--reset-filters:active::after {
  transform: rotate(-45deg);
  background-color: #fff;
}
.card-list-with-dropdown--reset-filters:hover svg path, .card-list-with-dropdown--reset-filters:active svg path {
  fill: #fff;
}
.card-list-with-dropdown--reset-filters:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.card-list-with-dropdown--reset-filters[disabled] {
  background-color: #fff;
  color: #0A061C;
  border-color: #0A061C;
  outline: none;
  pointer-events: none;
}
.card-list-with-dropdown--reset-filters[disabled].arrow::after {
  background-color: #0A061C;
}
.--dark-bg .card-list-with-dropdown--reset-filters {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.--dark-bg .card-list-with-dropdown--reset-filters::after {
  background-color: #fff;
}
.--dark-bg .card-list-with-dropdown--reset-filters svg path {
  fill: #fff;
}
.--dark-bg .card-list-with-dropdown--reset-filters:visited {
  color: #fff;
}
.--dark-bg .card-list-with-dropdown--reset-filters:visited svg path {
  fill: #fff;
}
.--dark-bg .card-list-with-dropdown--reset-filters:hover {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .card-list-with-dropdown--reset-filters:hover::after {
  background-color: #6049E9;
}
.--dark-bg .card-list-with-dropdown--reset-filters:hover svg path, .--dark-bg .card-list-with-dropdown--reset-filters:active svg path {
  fill: #6049E9;
}
.--dark-bg .card-list-with-dropdown--reset-filters:active {
  background-color: #6049E9;
  color: #fff;
  border-color: #6049E9;
}
.--dark-bg .card-list-with-dropdown--reset-filters:active::after {
  background-color: #fff;
}
.--dark-bg .card-list-with-dropdown--reset-filters:active:focus {
  box-shadow: none;
}
.--dark-bg .card-list-with-dropdown--reset-filters:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .card-list-with-dropdown--reset-filters[disabled] {
  border-color: #7a7b7c;
  color: #7a7b7c;
}
.card-list-with-dropdown--reset-filters.active-filters {
  display: block;
}

.card-list-with-dropdown__cards-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 3.8356164384vw, 56px);
}

.card-list-with-dropdown__card {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.card-list-with-dropdown__card.--hidden {
  display: none;
}

.card-list-with-dropdown__card-content {
  display: flex;
  gap: clamp(20px, 4.1095890411vw, 60px);
}

.card-list-with-dropdown__card-thumbnail {
  display: flex;
  align-items: center;
  min-width: clamp(200px, 20.5479452055vw, 300px);
}

.card-list-with-dropdown__card-image {
  border-radius: 20px;
  overflow: hidden;
}

.card-list-with-dropdown__card-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.card-list-with-dropdown__card-title {
  color: #35287C;
}

.card-list-with-dropdown__card-year {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.card-list-with-dropdown__card-toggle {
  appearance: none;
  background: transparent;
  border: none;
  color: #6049E9;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-right: auto;
  padding-left: 0;
  padding-right: 21px;
  position: relative;
}
.card-list-with-dropdown__card-toggle::after {
  content: url("data:image/svg+xml;utf8,<svg width='13' height='14' viewBox='0 0 13 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.37305 0.875V6.41309H12.7295V7.58691H7.37305V13.125H6.23047V7.58691H0.875V6.41309H6.23047V0.875H7.37305Z' fill='%236049E9' stroke='%236049E9' stroke-width='0.25'/></svg>");
  display: inline-block;
  height: 14px;
  position: absolute;
  right: 0;
  top: 2px;
  transition: transform ease-in-out 0.175s;
  width: 13px;
}
.card-list-with-dropdown__card-toggle:hover {
  text-decoration: underline;
}
.card-list-with-dropdown__card-toggle.--expanded::after {
  transform: rotate(-45deg);
}

.card-list-with-dropdown__card-content-extended {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transition: height ease-in-out 0.175s, opacity ease-in-out 0.175s;
  will-change: height;
}
.card-list-with-dropdown__card-content-extended.--expanded {
  display: block;
  height: 100%;
  opacity: 1;
}

.card-list-with-dropdown__pagination-list {
  column-gap: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-list-with-dropdown__pagination-list-item {
  padding: 0;
  transition: opacity ease-in-out 0.175s;
}
.card-list-with-dropdown__pagination-list-item.--active .card-list-with-dropdown__pagination-link {
  background-color: #6049E9;
  border-radius: 50%;
  color: #fff;
}
.card-list-with-dropdown__pagination-list-item.--disabled {
  opacity: 0.25;
}
.card-list-with-dropdown__pagination-list-item.--disabled .card-list-with-dropdown__pagination-link {
  cursor: not-allowed;
  pointer-events: none;
}

.card-list-with-dropdown__pagination-link {
  background-color: transparent;
  color: #6049E9;
  display: flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px;
  position: relative;
  text-decoration: none;
  transition: background-color ease-in-out 0.175s, color ease-in-out 0.175s;
}
.card-list-with-dropdown__pagination-link.--start-page::after, .card-list-with-dropdown__pagination-link.--previous-page::after, .card-list-with-dropdown__pagination-link.--next-page::after, .card-list-with-dropdown__pagination-link.--end-page::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.card-list-with-dropdown__pagination-link.--start-page::after, .card-list-with-dropdown__pagination-link.--end-page::after {
  width: 24px;
  height: 20px;
}
.card-list-with-dropdown__pagination-link.--previous-page::after, .card-list-with-dropdown__pagination-link.--next-page::after {
  width: 28px;
  height: 20px;
}
.card-list-with-dropdown__pagination-link.--start-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2220%22%20viewBox%3D%220%200%2024%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10.3587%2020L11.8529%2018.6037L2.99951%2010L11.8809%201.39583L10.3871%200L-0.000433922%2010.0132L10.3587%2020Z%22%20fill%3D%22%236049E9%22/%3E%3Cpath%20d%3D%22M22.2396%2020L23.7338%2018.6037L14.8804%2010L23.7617%201.39583L22.268%200L11.8804%2010.0132L22.2396%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}
.card-list-with-dropdown__pagination-link.--previous-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2228%22%20height%3D%2220%22%20viewBox%3D%220%200%2028%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10.8752%2020L12.3694%2018.6037L4.49759%2011.0156H28V9.0113H4.49759L12.3974%201.39583L10.9036%200L0.516092%2010.0132L10.8752%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}
.card-list-with-dropdown__pagination-link.--next-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2228%22%20height%3D%2220%22%20viewBox%3D%220%200%2028%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M17.1248%2020L15.6306%2018.6037L23.5024%2011.0156H0V9.0113H23.5024L15.6026%201.39583L17.0964%200L27.4839%2010.0132L17.1248%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}
.card-list-with-dropdown__pagination-link.--end-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2220%22%20viewBox%3D%220%200%2024%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M13.403%2020L11.9088%2018.6037L20.7622%2010L11.8809%201.39583L13.3746%200L23.7622%2010.0132L13.403%2020Z%22%20fill%3D%22%236049E9%22/%3E%3Cpath%20d%3D%22M1.52215%2020L0.0279408%2018.6037L8.88135%2010L0%201.39583L1.49375%200L11.8813%2010.0132L1.52215%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}

@media (min-width: 1101px) {
  .card-list-with-dropdown__inner {
    row-gap: 64px;
  }

  .card-list-with-dropdown__filter-sorting {
    column-gap: 50px;
  }
}
@media (max-width: 1100px) {
  .card-list-with-dropdown__inner {
    row-gap: 56px;
  }

  .card-list-with-dropdown__filter-dropdown select {
    min-width: 155px;
  }

  .card-list-with-dropdown__filter-sort-label {
    min-width: 100px;
  }
}
@media (max-width: 900px) {
  .card-list-with-dropdown__filter-sorting {
    align-items: flex-start;
    row-gap: 20px;
    flex-direction: column;
  }

  .card-list-with-dropdown--reset-filters {
    top: auto;
    right: auto;
    left: 0;
    top: calc(100% + 10px);
  }
}
@media (max-width: 700px) {
  .card-list-with-dropdown__card-content {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .card-list-with-dropdown__filter-dropdowns {
    flex-direction: column;
    row-gap: 10px;
  }
}
.content-index-block {
  margin-bottom: calc(clamp(14px, 2.08vw, 30px) * -1);
}
.content-index-block .l-container--xlarge {
  max-width: 976px;
}

.content-index-block__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.7397260274vw, 40px);
}

.content-index-block__title {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(10, 6, 28, 0.5);
}

.content-index-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 550px) {
  .content-index-block__list {
    column-count: unset;
  }
}

.content-index-block__item {
  margin-bottom: clamp(14px, 2.08vw, 30px);
}

.content-index-block__link {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.content-index-block__link:visited {
  color: #6049E9;
}
.content-index-block__link:hover {
  text-decoration: underline;
}

.cta-grid-block__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.9178082192vw, 28px);
}
.cta-grid-block__items.--cols-1 {
  grid-template-columns: 1fr;
}
.cta-grid-block__items.--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cta-grid-block__item {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.7808219178vw, 26px);
  padding-inline: clamp(30px, 4.2465753425vw, 62px);
  padding-block: clamp(30px, 3.9726027397vw, 58px);
  background-color: #F4F4F4;
  border-radius: 24px;
}
.page-sidebar-navigation__content .cta-grid-block__item {
  padding: 30px;
}

.cta-grid-block__arrow svg {
  width: 44px;
  height: auto;
}
.cta-grid-block__arrow svg svg path {
  fill: #6049E9;
}

.cta-grid-block__heading {
  font-size: clamp(24px, 1.9178082192vw, 28px);
}

.cta-grid-block__description {
  margin-top: clamp(16px, 2.1917808219vw, 32px);
  font-size: clamp(18px, 1.3698630137vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cta-grid-block__item-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.095890411vw, 16px);
}
.cta-grid-block__item-buttons .button--secondary {
  background-color: transparent;
}
.cta-grid-block__item-buttons .button--secondary:hover {
  color: #fff;
  background-color: #6049E9;
}

@media (max-width: 1100px) {
  .page-sidebar-navigation__content .cta-grid-block__items.--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .cta-grid-block__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .cta-grid-block__items {
    grid-template-columns: 1fr;
  }
  .cta-grid-block__items.--cols-2, .cta-grid-block__items.--cols-3 {
    grid-template-columns: 1fr;
  }

  .page-sidebar-navigation__content .cta-grid-block__items.--cols-2, .page-sidebar-navigation__content .cta-grid-block__items.--cols-3 {
    grid-template-columns: 1fr;
  }
}
.event-highlight.fullscreen {
  padding-block: 0;
}
.event-highlight .l-container--max {
  padding: 0;
}

.event-highlight__inner {
  display: flex;
}

.event-highlight__media {
  display: flex;
  width: calc(37% + 20px);
  margin-top: clamp(50px, 5.2083333333vw, 100px);
  margin-left: -20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
}
.event-highlight__media img {
  object-fit: cover;
}

.event-highlight__content {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: clamp(50px, 5.2083333333vw, 100px);
  margin-right: -20px;
  width: calc(63% + 20px);
  border-top-right-radius: 20px;
  background-color: #E7E7E7;
}
.event-highlight__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 18%;
  height: 120px;
  border-top-left-radius: 20px;
  background-color: #E7E7E7;
  z-index: -1;
}

.event-highlight__content--inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.2602739726vw, 33px);
  padding-block: clamp(30px, 4.6875vw, 90px);
  margin-left: 12%;
  max-width: 700px;
  width: calc(85% - 20px);
}

.event-highlight__title {
  font-size: clamp(30px, 2.4657534247vw, 36px);
}

.event-highlight__callout-title {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  padding-top: 2px;
  padding-left: 67px;
  background-image: url("/wp-content/themes/apta/images/connected-link-arrow.png");
  background-repeat: no-repeat;
  background-size: 32px 24px;
  background-position: 0 0;
}

a.event-highlight__callout-title {
  color: #000;
  text-decoration: none;
}
a.event-highlight__callout-title.external {
  font-size: clamp(18px, 1.3698630137vw, 20px);
}
a.event-highlight__callout-title:hover {
  text-decoration: underline;
}

.event-highlight__callout {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: clamp(10px, 1.5068493151vw, 22px);
}

.event-highlight__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2vw, 20px);
  margin: 0;
}
.event-highlight__meta:has(:nth-child(3)) {
  grid-template-columns: repeat(3, 1fr);
}
.event-highlight__meta dd {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  font-weight: 600;
}
.event-highlight__meta svg {
  max-width: 26px;
  width: 100%;
}

@media (max-width: 900px) {
  .event-highlight__inner {
    flex-direction: column;
    margin-top: 0;
  }

  .event-highlight__media {
    position: relative;
    margin-top: 0;
    width: 90%;
    aspect-ratio: 1/0.538;
    max-width: 865px;
    border-bottom-right-radius: 20px;
    z-index: 1;
  }
  .event-highlight__media img {
    width: 100%;
  }

  .event-highlight__content {
    margin-top: calc(clamp(50px, 7.77vw, 70px) * -1);
    margin-right: 0;
    margin-left: auto;
    padding-top: clamp(90px, 15.5555555556vw, 140px);
    padding-bottom: clamp(50px, 10vw, 90px);
    width: 100%;
    border-radius: 0;
  }
  .event-highlight__content::Before {
    content: none;
  }

  .event-highlight__content--inner {
    padding-block: 0;
    padding-inline: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 725px;
  }
}
@media (max-width: 600px) {
  .event-highlight__meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .event-highlight__meta dd {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}
.event-updates__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin: 0 auto;
  max-width: 1342px;
}

.event-updates__title {
  font-size: clamp(30px, 2.46vw, 36px);
  text-align: center;
}

.event-updates__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 7.4%;
  width: 100%;
}

.event-updates__item {
  display: flex;
  align-items: center;
  gap: 32px;
}
.event-updates__item:nth-child(1), .event-updates__item:nth-child(2) {
  margin-bottom: 12%;
}

.event-updates__item-img {
  display: flex;
  min-width: 41.06%;
  width: 41.06%;
  max-width: 255px;
}
.event-updates__item-img img {
  border-radius: 70px;
}

.event-updates__item-text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.event-updates__item-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(20px, 1.6438356164vw, 24px);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .event-updates__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-updates__item-img {
    min-width: 0;
    width: 100%;
    max-width: 260px;
  }
}
@media (max-width: 700px) {
  .event-updates__items {
    grid-template-columns: 1fr;
  }

  .event-updates__item,
.event-updates__item:first-child,
.event-updates__item:nth-child(2) {
    flex-direction: row;
    margin-bottom: 40px;
  }

  .event-updates__item-img {
    width: 50%;
    max-width: 255px;
  }
}
@media (max-width: 600px) {
  .event-updates__item,
.event-updates__item:first-child,
.event-updates__item:nth-child(2) {
    flex-direction: column;
    align-items: center;
  }

  .event-updates__item-img {
    min-width: 0;
    width: 100%;
    max-width: 260px;
  }

  .event-updates__item-text {
    text-align: center;
  }
}
.featured-events .mobile-only {
  display: none;
}
.featured-events .l-container--large {
  max-width: 1220px;
}
.featured-events .tabbed-highlighted-content__list-item-link,
.featured-events .tabbed-highlighted-content__highlight-link {
  background-color: #F4F4F4;
}
.featured-events .tabbed-highlighted-content__highlight {
  max-width: 456px;
}
@media screen and (min-width: 1100px) {
  .featured-events .tabbed-highlighted-content__highlight {
    flex: 0 0 456px;
  }
}
@media screen and (max-width: 550px) {
  .featured-events .mobile-only {
    display: block;
    margin-top: 20px;
  }
  .featured-events .desktop-only {
    display: none;
  }
}

.featured-events__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4.5454545455vw, 50px);
}

.featured-events__container {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1100px) {
  .featured-events__container {
    flex-direction: column;
  }
}

.featured-events__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-events__heading {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(24px, 1.9178082192vw, 28px);
  line-height: 1.4;
}

.filtered-list.--bg-gray {
  background-color: #E7E7E7;
  padding: 80px 0;
}
.filtered-list.--bg-white {
  background-color: #fff;
}
.filtered-list .l-container--xlarge.--limited-width .filtered-list__inner {
  margin-left: auto;
  max-width: 938px;
}

.filtered-list__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4.3835616438vw, 64px);
}

.filtered-list__filter-select--cpt {
  text-transform: capitalize;
}

.filtered-list__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4.3835616438vw, 64px);
}
.filtered-list__hof-items-center {
  display: flex;
  gap: clamp(20px, 2.7397260274vw, 40px);
}
.filtered-list__hof-items-center:not(.--expandable):not(.open) {
  align-items: center;
}
.filtered-list__hof-items-center:not(.--expandable):not(.open) .filtered-list__hof-item-details {
  padding-top: 0;
}
.filtered-list__hof-items-center .filtered-list__item-thumbnail {
  min-width: 300px;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: auto;
}
.filtered-list__hof-items-center .filtered-list__item-thumbnail img {
  width: 100%;
  border-radius: 20px;
}
.filtered-list__hof-items-center .filtered-list__item-thumbnail.--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(96, 73, 233, 0.1);
}
.filtered-list__hof-items-center .filtered-list__item-thumbnail.--placeholder svg {
  width: 50%;
  max-width: 120px;
}
.filtered-list__hof-items-center .filtered-list__item-thumbnail.--placeholder svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.filtered-list__hof-item-title {
  font-weight: 500;
  color: #35287C;
  font-size: clamp(24px, 1.9178082192vw, 28px);
}
.filtered-list__hof-item-year {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-weight: 400;
}
.filtered-list__hof-item-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 30px;
}
.filtered-list__hof-item-bio-long {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filtered-list__hof-item-bio-long.open {
  -webkit-line-clamp: unset;
}
.filtered-list__hof-item-bio-long .l-container--reading {
  padding-inline: 0;
}
.filtered-list__header {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.filtered-list__title {
  font-size: clamp(32px, 3.2876712329vw, 48px);
  font-weight: 700;
  color: #0A061C;
  margin: 0;
}

.hof-primary-link {
  font-weight: 500;
  color: #6049E9;
  text-decoration: none;
  font-size: clamp(14px, 1.095890411vw, 16px);
  box-shadow: 0 0 20px #6049e900;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 0;
  gap: 8px;
  position: relative;
  text-align: center;
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
}
.hof-primary-link:visited {
  color: #6049E9;
}
.hof-primary-link::after {
  background-color: #6049E9;
  content: "";
  display: block;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/plus.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
  width: 16px;
}
.hof-primary-link[aria-expanded=true]::after {
  mask-image: none;
  height: 2px;
}
.hof-primary-link:hover {
  color: #35287C;
}
.hof-primary-link:hover::after {
  background-color: #35287C;
}

.filtered-list__search {
  border: 2px solid #0A061C;
  border-radius: 100px;
  padding: 8px 7px 8px 68px;
  position: relative;
}
.filtered-list__search::before {
  content: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M19.0336 20L11.4856 12.4518C10.9068 12.9641 10.232 13.3587 9.46109 13.6358C8.69018 13.9129 7.89214 14.0514 7.06695 14.0514C5.09181 14.0514 3.4202 13.3678 2.05212 12.0008C0.684039 10.6335 0 8.97575 0 7.02758C0 5.07923 0.683554 3.42092 2.05066 2.05267C3.41777 0.684222 5.07765 0 7.0303 0C8.98276 0 10.6429 0.683737 12.0108 2.05121C13.3787 3.41869 14.0626 5.077 14.0626 7.02613C14.0626 7.84084 13.9232 8.63412 13.6444 9.40598C13.3654 10.1778 12.9619 10.877 12.434 11.5034L20 19.0225L19.0336 20ZM7.04921 12.7316C8.63813 12.7316 9.98429 12.1779 11.0877 11.0704C12.1911 9.96311 12.7428 8.61493 12.7428 7.02584C12.7428 5.43656 12.1911 4.08828 11.0877 2.98099C9.98429 1.87352 8.63813 1.31978 7.04921 1.31978C5.45021 1.31978 4.09551 1.87352 2.98511 2.98099C1.8749 4.08828 1.3198 5.43656 1.3198 7.02584C1.3198 8.61493 1.8749 9.96311 2.98511 11.0704C4.09551 12.1779 5.45021 12.7316 7.04921 12.7316Z' fill='%236049E9'/></svg>");
  display: inline-block;
  height: 20px;
  left: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.filtered-list__search .filtered-list-search-form {
  column-gap: 14px;
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
}
.filtered-list__search .filtered-list-search-input {
  background: transparent;
  border: none;
  color: #0A061C;
  font-size: 20px;
  width: 100%;
}
.filtered-list__search .filtered-list-search-input:not(:placeholder-shown) + .filtered-list-search-button input[type=submit] {
  background-color: #34287C;
}
.filtered-list__search .filtered-list-search-button {
  background-color: #6049E9;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  height: 48px;
  width: 48px;
}
.filtered-list__search .filtered-list-search-button::after {
  content: url("data:image/svg+xml;utf8,<svg width='22' height='16' viewBox='0 0 22 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M13.6998 16L12.5044 14.883L18.8019 8.81251H0V7.20904H18.8019L12.4821 1.11666L13.6771 0L21.9871 8.0106L13.6998 16Z' fill='white'/></svg>");
  display: inline-block;
  height: 16px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-60%) translateX(-50%);
  width: 22px;
}
.filtered-list__search .filtered-list-search-submit {
  background: transparent;
  border: none;
  color: #6049E9;
  cursor: pointer;
  font-size: 0;
  height: 100%;
  padding: 10px;
  width: 100%;
}

.filtered-list__active-filters {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filtered-list__active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filtered-list__filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 1px solid #6049E9;
  color: #6049E9;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.filtered-list__filter-pill:hover {
  background-color: rgba(96, 73, 233, 0.08);
}
.filtered-list__filter-pill:hover .filtered-list__filter-pill-remove {
  background-color: rgba(96, 73, 233, 0.15);
}

.filtered-list__filter-pill-remove {
  background: none;
  border: none;
  color: #6049E9;
  cursor: pointer;
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}
.filtered-list__filter-pill-remove::before {
  content: "×";
  font-weight: bold;
}

.filtered-list__remove-all-filters {
  background: none;
  border: none;
  color: #6049E9;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  padding: 0;
}
.filtered-list__remove-all-filters:hover {
  color: #35287C;
  text-decoration: none;
}

.filtered-list__results-counter {
  margin-bottom: 20px;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #7a7b7c;
  font-weight: 500;
}

.filtered-list__results-count {
  color: #0A061C;
  font-weight: 700;
}

.filtered-list__filter-count {
  background-color: #6049E9;
  color: #fff;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

.filtered-list__filter-sorting {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  row-gap: 30px;
}
.filtered-list__filter-sorting:not(:has(.filtered-list__filters)) {
  justify-content: flex-end;
}

.filtered-list__filter-sort-label {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  margin-top: 6px;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.filtered-list__filters,
.filtered-list__sorting {
  column-gap: 13px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.filtered-list__filter-dropdowns {
  display: flex;
  row-gap: 20px;
  column-gap: 2px;
  flex-wrap: wrap;
}

.filtered-list__filter-dropdown {
  display: inline-flex;
  align-items: center;
  /* Faux dropdown (replaces native select when JS runs) */
}
.filtered-list__filter-dropdown:not(:has(.faux-select-group--popup--list-wrap li:nth-child(2))) {
  display: none;
}
.filtered-list__filter-dropdown.--sorter::before {
  content: url("data:image/svg+xml;utf8,<svg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.875 9.875V11.125H0.875V9.875H5.875ZM11.4912 5.375V6.625H0.875V5.375H11.4912ZM17.125 0.875V2.125H0.875V0.875H17.125Z' fill='%236049E9' stroke='%236049E9' stroke-width='0.25'/></svg>");
  display: inline-block;
  height: 27px;
  width: 18px;
  margin-right: 8px;
  order: -1;
}
.filtered-list__filter-dropdown.--sorter::after {
  margin-left: -22px;
}
.filtered-list__filter-dropdown.--sorter select {
  padding-left: 0;
}
.filtered-list__filter-dropdown select[name=filter-name] + .faux-select-group .faux-select-group--toggle .total,
.filtered-list__filter-dropdown select[name=sort] + .faux-select-group .faux-select-group--toggle .total {
  display: none;
}
.filtered-list__filter-dropdown select[name=filter-name] + .faux-select-group .faux-select-group--popup,
.filtered-list__filter-dropdown select[name=sort] + .faux-select-group .faux-select-group--popup {
  width: 160px;
  left: auto;
  right: 0;
}
.filtered-list__filter-dropdown select[name=filter-name] + .faux-select-group .faux-select-group--popup .faux-select-group--filter,
.filtered-list__filter-dropdown select[name=sort] + .faux-select-group .faux-select-group--popup .faux-select-group--filter {
  display: none;
}
.filtered-list__filter-dropdown select[name=filter-name] + .faux-select-group .faux-select-group--popup .faux-select-group--popup--list-wrap,
.filtered-list__filter-dropdown select[name=sort] + .faux-select-group .faux-select-group--popup .faux-select-group--popup--list-wrap {
  margin-right: 0;
}
.filtered-list__filter-dropdown select[name=filter-name] + .faux-select-group .faux-select-group--popup ul,
.filtered-list__filter-dropdown select[name=sort] + .faux-select-group .faux-select-group--popup ul {
  padding-right: 0;
}
.filtered-list__filter-dropdown select[name=filter-year] + .faux-select-group .faux-select-group--popup,
.filtered-list__filter-dropdown select[name=filter-years] + .faux-select-group .faux-select-group--popup,
.filtered-list__filter-dropdown select[name=filter-award-year] + .faux-select-group .faux-select-group--popup {
  width: 200px;
}
.filtered-list__filter-dropdown select {
  appearance: none;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  padding-right: 26px;
  cursor: pointer;
}
.filtered-list__filter-dropdown select.faux-select-native-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.filtered-list__filter-dropdown .faux-select-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.filtered-list__filter-dropdown .faux-select-group--toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: none;
  border-radius: 50px;
  background-color: transparent;
  color: #0A061C;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
}
.filtered-list__filter-dropdown .faux-select-group--toggle::after {
  content: url("data:image/svg+xml;utf8,<svg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M14.6924 0.599835L16 1.9087L8.8734 9.03777C8.75921 9.15269 8.62342 9.24388 8.47384 9.30612C8.32426 9.36835 8.16386 9.40039 8.00185 9.40039C7.83984 9.40039 7.67944 9.36835 7.52986 9.30612C7.38029 9.24388 7.24449 9.15269 7.1303 9.03777L-3.27472e-07 1.9087L1.30763 0.601069L8 7.2922L14.6924 0.599835Z' fill='%236049E9'/></svg>");
  display: inline-block;
  height: 24px;
  width: 16px;
  pointer-events: none;
}
.filtered-list__filter-dropdown .faux-select-group--toggle[aria-expanded=true] {
  background-color: #6049E9;
  color: #fff;
}
.filtered-list__filter-dropdown .faux-select-group--toggle[aria-expanded=true]::after {
  content: url("data:image/svg+xml;utf8,<svg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M14.6924 0.599835L16 1.9087L8.8734 9.03777C8.75921 9.15269 8.62342 9.24388 8.47384 9.30612C8.32426 9.36835 8.16386 9.40039 8.00185 9.40039C7.83984 9.40039 7.67944 9.36835 7.52986 9.30612C7.38029 9.24388 7.24449 9.15269 7.1303 9.03777L-3.27472e-07 1.9087L1.30763 0.601069L8 7.2922L14.6924 0.599835Z' fill='%23FFFFFF'/></svg>");
  transform: rotate(180deg);
}
.filtered-list__filter-dropdown .faux-select-group--toggle[aria-expanded=true]::before {
  content: "";
  border: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #6049E9;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
}
.filtered-list__filter-dropdown .faux-select-group--toggle[aria-expanded=true] + .faux-select-group--popup {
  display: flex;
}
.filtered-list__filter-dropdown .faux-select-group--toggle .total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 26px;
  padding: 0 8px;
  border: 1.5px solid #6049E9;
  border-radius: 50px;
  background-color: #fff;
  color: #6049E9;
  font-size: 14px;
  font-weight: 700;
}
.filtered-list__filter-dropdown .faux-select-group--toggle .total[hidden] {
  display: none;
}
.filtered-list__filter-dropdown .faux-select-group--toggle:focus-visible {
  outline: 2px solid #6049E9;
  outline-offset: 2px;
}
.filtered-list__filter-dropdown .faux-select-group--popup {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 18px;
  flex-direction: column;
  gap: 27px;
  padding: 24px;
  padding-bottom: 6px;
  width: 330px;
  max-width: 90vw;
  z-index: 3;
  background: #6049E9;
  border-radius: 5px;
  max-height: 330px;
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--filter {
  display: block;
  box-sizing: border-box;
  padding: 0 44px 0 24px;
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='10.5' cy='10.5' r='6' stroke='%23333' stroke-width='1.5'/%3E%3Cpath d='M15 15l5 5' stroke='%23333' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
  color: #0A061C;
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--filter::placeholder {
  color: #7a7b7c;
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--filter:focus {
  outline: none;
  border-color: #6049E9;
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--popup--list-wrap {
  overflow-y: auto;
  margin-right: -14px;
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--popup--list-wrap::-webkit-scrollbar {
  width: 7px;
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--popup--list-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--popup--list-wrap::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 5px;
}
.filtered-list__filter-dropdown .faux-select-group--popup .faux-select-group--popup--list-wrap::-webkit-scrollbar-track {
  background-color: #35287C;
}
.filtered-list__filter-dropdown .faux-select-group--popup ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 20px;
}
.filtered-list__filter-dropdown .faux-select-group--popup li {
  margin: 0;
  margin-bottom: 15px;
}
.filtered-list__filter-dropdown .faux-select-group--popup li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}
.filtered-list__filter-dropdown .faux-select-group--popup li input {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}
.filtered-list__filter-dropdown .faux-select-group--popup li input:focus + label::after {
  outline: 2px solid #6049E9;
  outline-offset: 2px;
}
.filtered-list__filter-dropdown .faux-select-group--popup label.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.filtered-list__filter-dropdown .faux-select-group--popup label.option::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  background-color: #fff;
}
.filtered-list__filter-dropdown .faux-select-group--popup label.option.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='6' fill='%236049E9'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.filtered-list__filter-dropdown .faux-select-group--popup label.option:hover {
  background: rgba(96, 73, 233, 0.08);
}
.filtered-list__filter-dropdown .faux-select-group--popup--multi-select label.option::after {
  border-radius: 3px;
}
.filtered-list__filter-dropdown .faux-select-group--popup--multi-select label.option.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%236049E9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.filtered-list__standards {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 48px);
}

.filtered-list__standards-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filtered-list__standards-title {
  font-size: clamp(28px, 2.4657534247vw, 36px);
  font-weight: 700;
  margin: 0;
  color: #0A061C;
}

.filtered-list__standards-summary {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #7a7b7c;
  margin: 0;
}

.filtered-list__standards-controls {
  display: flex;
  justify-content: flex-end;
}

.filtered-list__standards-toggle-all {
  appearance: none;
  background: transparent;
  border: 0;
  color: #6049E9;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  padding: 0;
  text-decoration: underline;
}
.filtered-list__standards-toggle-all:focus-visible {
  outline: 2px solid rgba(96, 73, 233, 0.35);
  outline-offset: 4px;
}

.filtered-list__standards-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}

.filtered-list__standards-group {
  border-top: 1px solid rgba(10, 6, 28, 0.08);
  border-bottom: 1px solid rgba(10, 6, 28, 0.08);
  overflow: hidden;
}

.filtered-list__standards-group-header {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: clamp(16px, 2vw, 24px);
}

.filtered-list__standards-group-header-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.filtered-list__standards-group-icon {
  align-items: center;
  border-radius: 16px;
  display: flex;
  height: clamp(52px, 6vw, 72px);
  justify-content: center;
  min-width: clamp(52px, 6vw, 72px);
  width: clamp(52px, 6vw, 72px);
}
.filtered-list__standards-group-icon svg {
  width: clamp(36px, 4vw, 44px);
  height: auto;
}

.filtered-list__standards-group-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filtered-list__standards-group-title {
  font-size: clamp(22px, 1.7808219178vw, 26px);
  font-weight: 700;
  margin: 0;
  color: #0A061C;
}

.filtered-list__standards-group-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filtered-list__standards-group-count {
  color: #7a7b7c;
  font-weight: 500;
  font-size: clamp(14px, 1.095890411vw, 16px);
}

.filtered-list__standards-group-description {
  margin: 0;
  color: #7a7b7c;
  font-size: clamp(14px, 1.095890411vw, 16px);
}

.filtered-list__standards-group-toggle {
  align-items: center;
  appearance: none;
  background: none;
  border: none;
  color: #6049E9;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  padding: 8px 12px;
}
.filtered-list__standards-group-toggle svg {
  transition: transform ease-in-out 0.175s;
}
.filtered-list__standards-group-toggle.--expanded svg {
  transform: rotate(180deg);
}
.filtered-list__standards-group-toggle:focus-visible {
  outline: 2px solid rgba(96, 73, 233, 0.35);
  outline-offset: 4px;
}

.filtered-list__standards-group-panel {
  display: none;
  padding: clamp(16px, 2vw, 24px);
  padding-top: 0;
}
.filtered-list__standards-group-panel.--expanded {
  display: block;
}

.filtered-list__standards-items {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
.filtered-list__standards-items .filtered-list__item--standard {
  background-color: #fff;
  padding: clamp(16px, 2vw, 24px);
}
.filtered-list__standards-items .filtered-list__item-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filtered-list__standards-items .filtered-list__item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 30px);
  width: 100%;
}
.filtered-list__standards-items .filtered-list__item-content .filtered-list__item-icon {
  background: rgba(96, 73, 233, 0.08);
  border-radius: 12px;
  min-width: 56px;
  padding: 12px;
}
.filtered-list__standards-items .filtered-list__item-main-information {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filtered-list__standards-items .filtered-list__item-main-information .filtered-list__item-title {
  margin: 0;
}
.filtered-list__standards-items .filtered-list__item-main-information .filtered-list__item-title a {
  color: #0A061C;
}
.filtered-list__standards-items .filtered-list__item-main-information .filtered-list__item-date {
  color: #7a7b7c;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filtered-list__standards-items .filtered-list__item-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7b7c;
}
.filtered-list__standards-items .filtered-list__item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #7a7b7c;
}
.filtered-list__standards-items .filtered-list__item-meta-field strong {
  font-weight: 700;
  margin-right: 4px;
}
.filtered-list__standards-items .filtered-list__item-toggle {
  align-self: center;
  padding: 8px;
  margin-left: 8px;
}
.filtered-list__standards-items .filtered-list__item-toggle svg {
  transition: transform ease-in-out 0.175s;
}
.filtered-list__standards-items .filtered-list__item-toggle.--expanded svg {
  transform: rotate(180deg);
}
.filtered-list__standards-items .filtered-list__item-content-extended {
  margin-top: 12px;
  border-top: 1px solid rgba(10, 6, 28, 0.06);
  padding-top: 16px;
}
.filtered-list__standards-items .filtered-list__item-content-extended .filtered-list__standard-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filtered-list__standards-items .filtered-list__item-content-extended .filtered-list__standard-item .button--primary {
  align-self: flex-start;
}
.filtered-list__standards-items .filtered-list__item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filtered-list__standards-items .filtered-list__standard-summary {
  color: #7a7b7c;
  font-size: 16px;
  line-height: 1.6;
}
.filtered-list__standards-items .filtered-list__standard-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filtered-list__standards-empty {
  color: #7a7b7c;
  font-style: italic;
  margin: 0;
}

.button--small {
  font-size: 14px;
  padding: 10px 18px;
}

.filtered-list--reset-filters {
  top: 40px;
  right: 0;
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 9px 20px;
  color: #6049E9;
  background-color: #fff;
  border: 1px solid #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out, border-color 0.175s ease-in-out, color 0.175s ease-in-out;
  position: absolute;
  display: none;
}
.filtered-list--reset-filters:hover, .filtered-list--reset-filters:active, .filtered-list--reset-filters:focus {
  text-decoration: none;
}
.filtered-list--reset-filters:visited {
  color: #6049E9;
}
.filtered-list--reset-filters svg {
  margin-top: 0;
}
.filtered-list--reset-filters svg path {
  fill: #6049E9;
  transition: fill 0.175s ease-in-out;
}
.filtered-list--reset-filters.arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.filtered-list--reset-filters:hover {
  color: #fff;
  background-color: #6049E9;
}
.filtered-list--reset-filters:active {
  background-color: #35287C;
}
.filtered-list--reset-filters:active:focus {
  box-shadow: none;
}
.filtered-list--reset-filters:hover::after, .filtered-list--reset-filters:active::after {
  transform: rotate(-45deg);
  background-color: #fff;
}
.filtered-list--reset-filters:hover svg path, .filtered-list--reset-filters:active svg path {
  fill: #fff;
}
.filtered-list--reset-filters:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.filtered-list--reset-filters[disabled] {
  background-color: #fff;
  color: #0A061C;
  border-color: #0A061C;
  outline: none;
  pointer-events: none;
}
.filtered-list--reset-filters[disabled].arrow::after {
  background-color: #0A061C;
}
.--dark-bg .filtered-list--reset-filters {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.--dark-bg .filtered-list--reset-filters::after {
  background-color: #fff;
}
.--dark-bg .filtered-list--reset-filters svg path {
  fill: #fff;
}
.--dark-bg .filtered-list--reset-filters:visited {
  color: #fff;
}
.--dark-bg .filtered-list--reset-filters:visited svg path {
  fill: #fff;
}
.--dark-bg .filtered-list--reset-filters:hover {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .filtered-list--reset-filters:hover::after {
  background-color: #6049E9;
}
.--dark-bg .filtered-list--reset-filters:hover svg path, .--dark-bg .filtered-list--reset-filters:active svg path {
  fill: #6049E9;
}
.--dark-bg .filtered-list--reset-filters:active {
  background-color: #6049E9;
  color: #fff;
  border-color: #6049E9;
}
.--dark-bg .filtered-list--reset-filters:active::after {
  background-color: #fff;
}
.--dark-bg .filtered-list--reset-filters:active:focus {
  box-shadow: none;
}
.--dark-bg .filtered-list--reset-filters:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .filtered-list--reset-filters[disabled] {
  border-color: #7a7b7c;
  color: #7a7b7c;
}
.filtered-list--reset-filters.active-filters {
  display: block;
}

.filtered-list__content-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 3.8356164384vw, 56px);
}

.filtered-list__item {
  display: flex;
  flex-direction: column;
}
.filtered-list__item.--hidden {
  display: none;
}

.filtered-list__item-content {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2.7397260274vw, 40px);
}

.filtered-list__item-title {
  font-size: clamp(20px, 1.6438356164vw, 24px);
  font-weight: 700;
  margin: 0 0 8px 0;
}
.filtered-list__item-title a {
  color: #000;
  text-decoration: none;
}
.filtered-list__item-title a:hover {
  text-decoration: underline;
}

.filtered-list__content-list--events .event-card {
  background-color: #F4F4F4;
}
.filtered-list__content-list--events .event-card__cta--inner {
  background-color: #fff;
}
.filtered-list__content-list--events .event-card__cta--inner::before,
.filtered-list__content-list--events .event-card__cta--inner::after {
  box-shadow: 20px 0 0 0 #fff;
}

.filtered-list__content-list--calendar .filtered-list__item--event {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 32px;
}
.filtered-list__content-list--calendar .filtered-list__item--event:last-child {
  border-bottom: none;
}
.filtered-list__content-list--calendar .filtered-list__item-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  background-color: #E7E7E7;
  border-radius: 8px;
  padding: 16px;
}
.filtered-list__content-list--calendar .filtered-list__item-date {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  font-weight: 700;
  color: #35287C;
  margin-bottom: 8px;
}
.filtered-list__content-list--calendar .filtered-list__item-time {
  font-size: clamp(14px, 1.095890411vw, 16px);
  color: #7a7b7c;
  font-weight: 500;
}
.filtered-list__content-list--calendar .filtered-list__item-details {
  flex: 1;
}
.filtered-list__content-list--calendar .filtered-list__item-location {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #7a7b7c;
  margin-bottom: 8px;
  font-weight: 500;
}
.filtered-list__content-list--calendar .filtered-list__item-excerpt {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 1.6;
  color: #0A061C;
}
.filtered-list__content-list--calendar .filtered-list__action-button {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 20px;
  color: #fff;
  background-color: #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
  white-space: nowrap;
}
.filtered-list__content-list--calendar .filtered-list__action-button:hover, .filtered-list__content-list--calendar .filtered-list__action-button:active, .filtered-list__content-list--calendar .filtered-list__action-button:focus {
  text-decoration: none;
}
.filtered-list__content-list--calendar .filtered-list__action-button::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.filtered-list__content-list--calendar .filtered-list__action-button:hover, .filtered-list__content-list--calendar .filtered-list__action-button:focus, .filtered-list__content-list--calendar .filtered-list__action-button:active, .filtered-list__content-list--calendar .filtered-list__action-button:visited {
  text-decoration: none;
  color: #fff;
}
.filtered-list__content-list--calendar .filtered-list__action-button:hover::after, .filtered-list__content-list--calendar .filtered-list__action-button:active::after {
  transform: rotate(-45deg);
}
.filtered-list__content-list--calendar .filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.filtered-list__content-list--calendar .filtered-list__action-button:active {
  background-color: #35287C;
}
.filtered-list__content-list--calendar .filtered-list__action-button:active:focus {
  box-shadow: none;
}
.filtered-list__content-list--calendar .filtered-list__action-button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.filtered-list__content-list--calendar .filtered-list__action-button[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button::after {
  background-color: #6049E9;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button:hover {
  color: #6049E9;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button:active {
  color: #fff;
  background-color: #6049E9;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button:active::after {
  background-color: #fff;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button:active:focus {
  box-shadow: none;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
}
.--dark-bg .filtered-list__content-list--calendar .filtered-list__action-button[disabled]::after {
  background-color: #0A061C;
}

.filtered-list__content-list--awards .filtered-list__item--person,
.filtered-list__content-list--people .filtered-list__item--person {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
}
.filtered-list__content-list--awards .filtered-list__item--person:last-child,
.filtered-list__content-list--people .filtered-list__item--person:last-child {
  border-bottom: none;
}
.filtered-list__content-list--awards .filtered-list__item-thumbnail,
.filtered-list__content-list--people .filtered-list__item-thumbnail {
  display: flex;
  align-items: flex-start;
  min-width: clamp(200px, 20.5479452055vw, 300px);
}
.filtered-list__content-list--awards .filtered-list__item-image,
.filtered-list__content-list--people .filtered-list__item-image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.filtered-list__content-list--awards .filtered-list__item-details,
.filtered-list__content-list--people .filtered-list__item-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filtered-list__content-list--awards .filtered-list__item-year,
.filtered-list__content-list--people .filtered-list__item-year {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #7a7b7c;
}
.filtered-list__content-list--awards .filtered-list__item-job-title,
.filtered-list__content-list--awards .filtered-list__item-organization,
.filtered-list__content-list--people .filtered-list__item-job-title,
.filtered-list__content-list--people .filtered-list__item-organization {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #7a7b7c;
  font-weight: 500;
}
.filtered-list__content-list--awards .filtered-list__item-bio-short,
.filtered-list__content-list--people .filtered-list__item-bio-short {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 1.6;
  color: #0A061C;
}
.filtered-list__content-list--awards .filtered-list__item-toggle,
.filtered-list__content-list--people .filtered-list__item-toggle {
  appearance: none;
  background: transparent;
  border: none;
  color: #6049E9;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-right: auto;
  padding-left: 0;
  padding-right: 21px;
  position: relative;
}
.filtered-list__content-list--awards .filtered-list__item-toggle::after,
.filtered-list__content-list--people .filtered-list__item-toggle::after {
  content: url("data:image/svg+xml;utf8,<svg width='13' height='14' viewBox='0 0 13 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.37305 0.875V6.41309H12.7295V7.58691H7.37305V13.125H6.23047V7.58691H0.875V6.41309H6.23047V0.875H7.37305Z' fill='%236049E9' stroke='%236049E9' stroke-width='0.25'/></svg>");
  display: inline-block;
  height: 14px;
  position: absolute;
  right: 0;
  top: 2px;
  transition: transform ease-in-out 0.175s;
  width: 13px;
}
.filtered-list__content-list--awards .filtered-list__item-toggle:hover,
.filtered-list__content-list--people .filtered-list__item-toggle:hover {
  text-decoration: underline;
}
.filtered-list__content-list--awards .filtered-list__item-toggle.--expanded::after,
.filtered-list__content-list--people .filtered-list__item-toggle.--expanded::after {
  transform: rotate(-45deg);
}
.filtered-list__content-list--awards .filtered-list__item-content-extended,
.filtered-list__content-list--people .filtered-list__item-content-extended {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transition: height ease-in-out 0.175s, opacity ease-in-out 0.175s;
  will-change: height;
}
.filtered-list__content-list--awards .filtered-list__item-content-extended.--expanded,
.filtered-list__content-list--people .filtered-list__item-content-extended.--expanded {
  display: block;
  height: 100%;
  opacity: 1;
}
.filtered-list__content-list--awards .filtered-list__item-bio-long,
.filtered-list__content-list--people .filtered-list__item-bio-long {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 1.6;
  color: #0A061C;
  padding-top: 16px;
}

.filtered-list__content-list--legislative,
.filtered-list__content-list--standards,
.filtered-list__content-list--federal-comments {
  gap: 40px;
}
.filtered-list__content-list--legislative .filtered-list__item--legislative,
.filtered-list__content-list--legislative .filtered-list__item--federal-comment,
.filtered-list__content-list--standards .filtered-list__item--legislative,
.filtered-list__content-list--standards .filtered-list__item--federal-comment,
.filtered-list__content-list--federal-comments .filtered-list__item--legislative,
.filtered-list__content-list--federal-comments .filtered-list__item--federal-comment {
  display: flex;
  flex-direction: column;
}
.filtered-list__content-list--legislative .filtered-list__item--legislative:last-child,
.filtered-list__content-list--legislative .filtered-list__item--federal-comment:last-child,
.filtered-list__content-list--standards .filtered-list__item--legislative:last-child,
.filtered-list__content-list--standards .filtered-list__item--federal-comment:last-child,
.filtered-list__content-list--federal-comments .filtered-list__item--legislative:last-child,
.filtered-list__content-list--federal-comments .filtered-list__item--federal-comment:last-child {
  border-bottom: none;
}
.filtered-list__content-list--legislative .filtered-list__item-content,
.filtered-list__content-list--standards .filtered-list__item-content,
.filtered-list__content-list--federal-comments .filtered-list__item-content {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
.filtered-list__content-list--legislative .filtered-list__item-icon,
.filtered-list__content-list--standards .filtered-list__item-icon,
.filtered-list__content-list--federal-comments .filtered-list__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #F4F4F4;
  padding: 44px;
}
.filtered-list__content-list--legislative .filtered-list__item-icon svg,
.filtered-list__content-list--standards .filtered-list__item-icon svg,
.filtered-list__content-list--federal-comments .filtered-list__item-icon svg {
  width: clamp(24px, 1.9863013699vw, 29px);
  height: clamp(24px, 2.0547945205vw, 30px);
}
.filtered-list__content-list--legislative .filtered-list__item-details,
.filtered-list__content-list--standards .filtered-list__item-details,
.filtered-list__content-list--federal-comments .filtered-list__item-details {
  display: flex;
  flex: 1;
  background-color: #F4F4F4;
  border-radius: 20px;
  padding: 31px 48px;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1100px) {
  .filtered-list__content-list--legislative .filtered-list__item-details,
.filtered-list__content-list--standards .filtered-list__item-details,
.filtered-list__content-list--federal-comments .filtered-list__item-details {
    gap: 25px;
    flex-direction: column;
  }
}
@media (max-width: 850px) {
  .filtered-list__content-list--legislative .filtered-list__item-details,
.filtered-list__content-list--standards .filtered-list__item-details,
.filtered-list__content-list--federal-comments .filtered-list__item-details {
    gap: 40px;
    flex-direction: row;
  }
}
@media (max-width: 650px) {
  .filtered-list__content-list--legislative .filtered-list__item-details,
.filtered-list__content-list--standards .filtered-list__item-details,
.filtered-list__content-list--federal-comments .filtered-list__item-details {
    gap: 25px;
    flex-direction: column;
  }
}
.filtered-list__content-list--legislative .filtered-list__item-details .download,
.filtered-list__content-list--standards .filtered-list__item-details .download,
.filtered-list__content-list--federal-comments .filtered-list__item-details .download {
  height: 39px;
  margin: auto 0;
  flex-basis: 32%;
  max-width: 175px;
}
.filtered-list__content-list--legislative .filtered-list__item-details .download label,
.filtered-list__content-list--standards .filtered-list__item-details .download label,
.filtered-list__content-list--federal-comments .filtered-list__item-details .download label {
  white-space: nowrap;
}
.filtered-list__content-list--legislative .filtered-list__item-details .download svg,
.filtered-list__content-list--standards .filtered-list__item-details .download svg,
.filtered-list__content-list--federal-comments .filtered-list__item-details .download svg {
  min-width: 14px;
}
.filtered-list__content-list--legislative .filtered-list__item-category,
.filtered-list__content-list--standards .filtered-list__item-category,
.filtered-list__content-list--federal-comments .filtered-list__item-category {
  font-size: clamp(16px, 1.095890411vw, 16px);
  color: #35287C;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
}
.filtered-list__content-list--legislative .filtered-list__item-excerpt,
.filtered-list__content-list--standards .filtered-list__item-excerpt,
.filtered-list__content-list--federal-comments .filtered-list__item-excerpt {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 1.6;
  color: #0A061C;
}
.filtered-list__content-list--legislative .filtered-list__item-member-only,
.filtered-list__content-list--standards .filtered-list__item-member-only,
.filtered-list__content-list--federal-comments .filtered-list__item-member-only {
  font-size: clamp(14px, 1.095890411vw, 16px);
  color: #6049E9;
  font-weight: 700;
  margin-top: 8px;
}
.filtered-list__content-list--legislative .filtered-list__action-button,
.filtered-list__content-list--standards .filtered-list__action-button,
.filtered-list__content-list--federal-comments .filtered-list__action-button {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 9px 20px;
  color: #6049E9;
  background-color: #fff;
  border: 1px solid #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out, border-color 0.175s ease-in-out, color 0.175s ease-in-out;
  white-space: nowrap;
}
.filtered-list__content-list--legislative .filtered-list__action-button:hover, .filtered-list__content-list--legislative .filtered-list__action-button:active, .filtered-list__content-list--legislative .filtered-list__action-button:focus,
.filtered-list__content-list--standards .filtered-list__action-button:hover,
.filtered-list__content-list--standards .filtered-list__action-button:active,
.filtered-list__content-list--standards .filtered-list__action-button:focus,
.filtered-list__content-list--federal-comments .filtered-list__action-button:hover,
.filtered-list__content-list--federal-comments .filtered-list__action-button:active,
.filtered-list__content-list--federal-comments .filtered-list__action-button:focus {
  text-decoration: none;
}
.filtered-list__content-list--legislative .filtered-list__action-button:visited,
.filtered-list__content-list--standards .filtered-list__action-button:visited,
.filtered-list__content-list--federal-comments .filtered-list__action-button:visited {
  color: #6049E9;
}
.filtered-list__content-list--legislative .filtered-list__action-button svg,
.filtered-list__content-list--standards .filtered-list__action-button svg,
.filtered-list__content-list--federal-comments .filtered-list__action-button svg {
  margin-top: 0;
}
.filtered-list__content-list--legislative .filtered-list__action-button svg path,
.filtered-list__content-list--standards .filtered-list__action-button svg path,
.filtered-list__content-list--federal-comments .filtered-list__action-button svg path {
  fill: #6049E9;
  transition: fill 0.175s ease-in-out;
}
.filtered-list__content-list--legislative .filtered-list__action-button.arrow::after,
.filtered-list__content-list--standards .filtered-list__action-button.arrow::after,
.filtered-list__content-list--federal-comments .filtered-list__action-button.arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.filtered-list__content-list--legislative .filtered-list__action-button:hover,
.filtered-list__content-list--standards .filtered-list__action-button:hover,
.filtered-list__content-list--federal-comments .filtered-list__action-button:hover {
  color: #fff;
  background-color: #6049E9;
}
.filtered-list__content-list--legislative .filtered-list__action-button:active,
.filtered-list__content-list--standards .filtered-list__action-button:active,
.filtered-list__content-list--federal-comments .filtered-list__action-button:active {
  background-color: #35287C;
}
.filtered-list__content-list--legislative .filtered-list__action-button:active:focus,
.filtered-list__content-list--standards .filtered-list__action-button:active:focus,
.filtered-list__content-list--federal-comments .filtered-list__action-button:active:focus {
  box-shadow: none;
}
.filtered-list__content-list--legislative .filtered-list__action-button:hover::after, .filtered-list__content-list--legislative .filtered-list__action-button:active::after,
.filtered-list__content-list--standards .filtered-list__action-button:hover::after,
.filtered-list__content-list--standards .filtered-list__action-button:active::after,
.filtered-list__content-list--federal-comments .filtered-list__action-button:hover::after,
.filtered-list__content-list--federal-comments .filtered-list__action-button:active::after {
  transform: rotate(-45deg);
  background-color: #fff;
}
.filtered-list__content-list--legislative .filtered-list__action-button:hover svg path, .filtered-list__content-list--legislative .filtered-list__action-button:active svg path,
.filtered-list__content-list--standards .filtered-list__action-button:hover svg path,
.filtered-list__content-list--standards .filtered-list__action-button:active svg path,
.filtered-list__content-list--federal-comments .filtered-list__action-button:hover svg path,
.filtered-list__content-list--federal-comments .filtered-list__action-button:active svg path {
  fill: #fff;
}
.filtered-list__content-list--legislative .filtered-list__action-button:focus,
.filtered-list__content-list--standards .filtered-list__action-button:focus,
.filtered-list__content-list--federal-comments .filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.filtered-list__content-list--legislative .filtered-list__action-button[disabled],
.filtered-list__content-list--standards .filtered-list__action-button[disabled],
.filtered-list__content-list--federal-comments .filtered-list__action-button[disabled] {
  background-color: #fff;
  color: #0A061C;
  border-color: #0A061C;
  outline: none;
  pointer-events: none;
}
.filtered-list__content-list--legislative .filtered-list__action-button[disabled].arrow::after,
.filtered-list__content-list--standards .filtered-list__action-button[disabled].arrow::after,
.filtered-list__content-list--federal-comments .filtered-list__action-button[disabled].arrow::after {
  background-color: #0A061C;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button::after,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button::after,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button::after {
  background-color: #fff;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button svg path,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button svg path,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button svg path {
  fill: #fff;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:visited,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:visited,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:visited {
  color: #fff;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:visited svg path,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:visited svg path,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:visited svg path {
  fill: #fff;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:hover,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:hover,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:hover {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:hover::after,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:hover::after,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:hover::after {
  background-color: #6049E9;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:hover svg path, .--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:active svg path,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:hover svg path,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:active svg path,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:hover svg path,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:active svg path {
  fill: #6049E9;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:active,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:active,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:active {
  background-color: #6049E9;
  color: #fff;
  border-color: #6049E9;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:active::after,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:active::after,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:active::after {
  background-color: #fff;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:active:focus,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:active:focus,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:active:focus {
  box-shadow: none;
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button:focus,
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button:focus,
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .filtered-list__content-list--legislative .filtered-list__action-button[disabled],
.--dark-bg .filtered-list__content-list--standards .filtered-list__action-button[disabled],
.--dark-bg .filtered-list__content-list--federal-comments .filtered-list__action-button[disabled] {
  border-color: #7a7b7c;
  color: #7a7b7c;
}
.filtered-list__content-list--legislative .filtered-list__group,
.filtered-list__content-list--standards .filtered-list__group,
.filtered-list__content-list--federal-comments .filtered-list__group {
  margin-bottom: 40px;
}
.filtered-list__content-list--legislative .filtered-list__group-title,
.filtered-list__content-list--standards .filtered-list__group-title,
.filtered-list__content-list--federal-comments .filtered-list__group-title {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(20px, 1.3698630137vw, 20px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.filtered-list__content-list--legislative .filtered-list__group-list,
.filtered-list__content-list--standards .filtered-list__group-list,
.filtered-list__content-list--federal-comments .filtered-list__group-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filtered-list__content-list--legislative .filtered-list__item-title,
.filtered-list__content-list--standards .filtered-list__item-title,
.filtered-list__content-list--federal-comments .filtered-list__item-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(20px, 1.3698630137vw, 20px);
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 0 6px 0;
}
.filtered-list__content-list--legislative .filtered-list__item-title a,
.filtered-list__content-list--standards .filtered-list__item-title a,
.filtered-list__content-list--federal-comments .filtered-list__item-title a {
  color: #6049E9;
  text-decoration: none;
}
.filtered-list__content-list--legislative .filtered-list__item-date,
.filtered-list__content-list--standards .filtered-list__item-date,
.filtered-list__content-list--federal-comments .filtered-list__item-date {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(16px, 1.095890411vw, 16px);
  line-height: 1.4;
  letter-spacing: 0;
  color: #000;
}

.filtered-list__content-list--standards .standards-document-tag {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #7a7b7c;
  margin-bottom: 8px;
  font-weight: 500;
}
.filtered-list__content-list--standards .button--primary {
  margin-block: auto;
}

.filtered-list__content-list--federal-comments .filtered-list__item-topic,
.filtered-list__content-list--federal-comments .filtered-list__item-status--open {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #7a7b7c;
  margin-bottom: 8px;
  font-weight: 500;
}
.filtered-list__content-list--federal-comments .filtered-list__item-status--open {
  margin-top: 8px;
  margin-bottom: 5px;
  font-style: italic;
}
.filtered-list__content-list--federal-comments .filtered-list__item-meta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.filtered-list__content-list--federal-comments .filtered-list__item-actions {
  display: flex;
}
.filtered-list__content-list--federal-comments .button--primary.--apta-comment {
  height: 39px;
  margin: auto 0;
  min-width: 230px;
}
.filtered-list__content-list--federal-comments .button--primary.--apta-comment.external svg {
  display: none;
}
.filtered-list__content-list--federal-comments .filtered-list__item-published-date {
  width: 100%;
}

.filtered-list__content-list--cards .filtered-list__card {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
  border-radius: 20px;
  padding-right: 30px;
  /* ✅ Purple card style */
  /* ✅ Lilac card style */
}
.filtered-list__content-list--cards .filtered-list__card:last-child {
  border-bottom: none;
}
.filtered-list__content-list--cards .filtered-list__card.--hidden {
  display: none;
}
.filtered-list__content-list--cards .filtered-list__card.card_style_purple {
  border-bottom: none;
  background-color: #35287C;
  color: #fff;
}
.filtered-list__content-list--cards .filtered-list__card.card_style_purple .filtered-list__card-apta-title,
.filtered-list__content-list--cards .filtered-list__card.card_style_purple .filtered-list__card-title,
.filtered-list__content-list--cards .filtered-list__card.card_style_purple .filtered-list__card-staff-title,
.filtered-list__content-list--cards .filtered-list__card.card_style_purple .filtered-list__card-location,
.filtered-list__content-list--cards .filtered-list__card.card_style_purple .filtered-list__card-full-bio,
.filtered-list__content-list--cards .filtered-list__card.card_style_purple .filtered-list__card-toggle {
  color: #fff;
}
.filtered-list__content-list--cards .filtered-list__card.card_style_purple .filtered-list__card-toggle::after {
  content: url("data:image/svg+xml;utf8,<svg width='13' height='14' viewBox='0 0 13 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.37305 0.875V6.41309H12.7295V7.58691H7.37305V13.125H6.23047V7.58691H0.875V6.41309H6.23047V0.875H7.37305Z' fill='%23ffffff' stroke='%23ffffff' stroke-width='0.25'/></svg>");
}
.filtered-list__content-list--cards .filtered-list__card.card_style_lilac {
  border-bottom: none;
  background-color: #E9E6FF;
  /* Keep default colors, so no text overrides here */
}
.filtered-list__content-list--cards .filtered-list__card-content {
  display: flex;
  gap: clamp(20px, 4.1095890411vw, 60px);
}
.filtered-list__content-list--cards .filtered-list__card-thumbnail {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 356px;
  height: 356px;
  border-radius: 20px;
}
.filtered-list__content-list--cards .filtered-list__card-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtered-list__content-list--cards .filtered-list__card-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  flex: 1;
}
.filtered-list__content-list--cards .filtered-list__card-apta-title {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #35287C;
}
.filtered-list__content-list--cards .filtered-list__card-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #35287C;
  margin: 0;
}
.filtered-list__content-list--cards .filtered-list__card-staff-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
}
.filtered-list__content-list--cards .filtered-list__card-location {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}
.filtered-list__content-list--cards .filtered-list__card-toggle {
  appearance: none;
  background: transparent;
  border: none;
  color: #6049E9;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-right: auto;
  padding-left: 0;
  padding-right: 21px;
  position: relative;
}
.filtered-list__content-list--cards .filtered-list__card-toggle::after {
  content: url("data:image/svg+xml;utf8,<svg width='13' height='14' viewBox='0 0 13 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.37305 0.875V6.41309H12.7295V7.58691H7.37305V13.125H6.23047V7.58691H0.875V6.41309H6.23047V0.875H7.37305Z' fill='%236049E9' stroke='%236049E9' stroke-width='0.25'/></svg>");
  display: inline-block;
  height: 14px;
  position: absolute;
  right: 0;
  top: 2px;
  transition: transform ease-in-out 0.175s;
  width: 13px;
}
.filtered-list__content-list--cards .filtered-list__card-toggle:hover {
  text-decoration: underline;
}
.filtered-list__content-list--cards .filtered-list__card-toggle.--expanded::after {
  transform: rotate(-45deg);
}
.filtered-list__content-list--cards .filtered-list__card-content-extended {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transition: height ease-in-out 0.175s, opacity ease-in-out 0.175s;
  will-change: height;
}
.filtered-list__content-list--cards .filtered-list__card-content-extended.--expanded {
  display: block;
  height: 100%;
  opacity: 1;
}
.filtered-list__content-list--cards .filtered-list__card-full-bio {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  padding-top: 16px;
}

.filtered-list__content-list--resources .filtered-list__item--resource {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.filtered-list__content-list--resources .filtered-list__item--resource:last-child {
  border-bottom: none;
}
.filtered-list__content-list--resources .filtered-list__item-content {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
.filtered-list__content-list--resources .filtered-list__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #F4F4F4;
  padding: 44px;
}
.filtered-list__content-list--resources .filtered-list__item-icon svg {
  width: clamp(24px, 1.9863013699vw, 29px);
  height: clamp(24px, 2.0547945205vw, 30px);
}
.filtered-list__content-list--resources .filtered-list__item-details {
  display: flex;
  flex: 1;
  gap: 20px;
  background-color: #F4F4F4;
  border-radius: 20px;
  padding: 31px 48px;
  justify-content: space-between;
}
.filtered-list__content-list--resources .filtered-list__item-details .download {
  height: 39px;
  margin: auto 0;
  flex-basis: 32%;
  max-width: 215px;
}
.filtered-list__content-list--resources .filtered-list__item-category {
  font-size: clamp(16px, 1.095890411vw, 16px);
  color: #35287C;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
}
.filtered-list__content-list--resources .filtered-list__item-excerpt {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 1.6;
  color: #0A061C;
}
.filtered-list__content-list--resources .filtered-list__item-member-only {
  font-size: clamp(14px, 1.095890411vw, 16px);
  color: #6049E9;
  font-weight: 700;
  margin-top: 8px;
}
.filtered-list__content-list--resources .filtered-list__action-button {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 9px 20px;
  color: #6049E9;
  background-color: #fff;
  border: 1px solid #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out, border-color 0.175s ease-in-out, color 0.175s ease-in-out;
  white-space: nowrap;
}
.filtered-list__content-list--resources .filtered-list__action-button:hover, .filtered-list__content-list--resources .filtered-list__action-button:active, .filtered-list__content-list--resources .filtered-list__action-button:focus {
  text-decoration: none;
}
.filtered-list__content-list--resources .filtered-list__action-button:visited {
  color: #6049E9;
}
.filtered-list__content-list--resources .filtered-list__action-button svg {
  margin-top: 0;
}
.filtered-list__content-list--resources .filtered-list__action-button svg path {
  fill: #6049E9;
  transition: fill 0.175s ease-in-out;
}
.filtered-list__content-list--resources .filtered-list__action-button.arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.filtered-list__content-list--resources .filtered-list__action-button:hover {
  color: #fff;
  background-color: #6049E9;
}
.filtered-list__content-list--resources .filtered-list__action-button:active {
  background-color: #35287C;
}
.filtered-list__content-list--resources .filtered-list__action-button:active:focus {
  box-shadow: none;
}
.filtered-list__content-list--resources .filtered-list__action-button:hover::after, .filtered-list__content-list--resources .filtered-list__action-button:active::after {
  transform: rotate(-45deg);
  background-color: #fff;
}
.filtered-list__content-list--resources .filtered-list__action-button:hover svg path, .filtered-list__content-list--resources .filtered-list__action-button:active svg path {
  fill: #fff;
}
.filtered-list__content-list--resources .filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.filtered-list__content-list--resources .filtered-list__action-button[disabled] {
  background-color: #fff;
  color: #0A061C;
  border-color: #0A061C;
  outline: none;
  pointer-events: none;
}
.filtered-list__content-list--resources .filtered-list__action-button[disabled].arrow::after {
  background-color: #0A061C;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button::after {
  background-color: #fff;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button svg path {
  fill: #fff;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:visited {
  color: #fff;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:visited svg path {
  fill: #fff;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:hover {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:hover::after {
  background-color: #6049E9;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:hover svg path, .--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:active svg path {
  fill: #6049E9;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:active {
  background-color: #6049E9;
  color: #fff;
  border-color: #6049E9;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:active::after {
  background-color: #fff;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:active:focus {
  box-shadow: none;
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .filtered-list__content-list--resources .filtered-list__action-button[disabled] {
  border-color: #7a7b7c;
  color: #7a7b7c;
}
.filtered-list__content-list--resources .filtered-list__group {
  margin-bottom: 40px;
}
.filtered-list__content-list--resources .filtered-list__group-title {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(20px, 1.3698630137vw, 20px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.filtered-list__content-list--resources .filtered-list__group-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filtered-list__content-list--resources .filtered-list__item-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(20px, 1.3698630137vw, 20px);
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 0 6px 0;
}
.filtered-list__content-list--resources .filtered-list__item-title a {
  color: #6049E9;
  text-decoration: none;
}
.filtered-list__content-list--resources .filtered-list__item-date {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(16px, 1.095890411vw, 16px);
  line-height: 1.4;
  letter-spacing: 0;
  color: #000;
}

.filtered-list__content-list--standards .filtered-list__item--standard:last-child {
  border-bottom: none;
}
.filtered-list__content-list--standards .filtered-list__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background: #F4F4F4;
  border-radius: 20px;
  padding: 40px;
}
.filtered-list__content-list--standards .filtered-list__item-icon svg {
  width: clamp(24px, 1.9863013699vw, 29px);
  height: clamp(24px, 2.0547945205vw, 30px);
}
.filtered-list__content-list--standards .filtered-list__item-icon .filtered-list__item-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F4F4F4;
  border-radius: 20px;
  padding: 24px 32px;
}
.filtered-list__content-list--standards .filtered-list__item-icon .filtered-list__item-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
}
.filtered-list__content-list--standards .filtered-list__item-icon .filtered-list__item-date {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: #6049E9;
}
.filtered-list__content-list--standards .filtered-list__item-icon .filtered-list__item-toggle {
  appearance: none;
  background: transparent;
  border: none;
  color: #6049E9;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-left: 20px;
  padding-right: 21px;
  position: relative;
}
.filtered-list__content-list--standards .filtered-list__item-icon .filtered-list__item-toggle:hover {
  text-decoration: underline;
}
.filtered-list__content-list--standards .filtered-list__item-icon .filtered-list__item-toggle.--expanded::after {
  transform: rotate(-45deg);
}
.filtered-list__content-list--standards .filtered-list__item-icon.--expanded::after {
  transform: rotate(-45deg);
}
.filtered-list__content-list--standards .filtered-list__item-content-extended {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transition: height ease-in-out 0.175s, opacity ease-in-out 0.175s;
  will-change: height;
}
.filtered-list__content-list--standards .filtered-list__item-content-extended.--expanded {
  display: block;
  height: 100%;
  opacity: 1;
}
.filtered-list__content-list--standards .filtered-list__standard-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #F4F4F4;
  border-radius: 16px;
  padding: 20px 24px;
}
.filtered-list__content-list--standards .filtered-list__standard-item-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filtered-list__item-action {
  display: flex;
  align-items: flex-start;
}

.filtered-list__action-button {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 20px;
  color: #fff;
  background-color: #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
  white-space: nowrap;
}
.filtered-list__action-button:hover, .filtered-list__action-button:active, .filtered-list__action-button:focus {
  text-decoration: none;
}
.filtered-list__action-button::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.filtered-list__action-button:hover, .filtered-list__action-button:focus, .filtered-list__action-button:active, .filtered-list__action-button:visited {
  text-decoration: none;
  color: #fff;
}
.filtered-list__action-button:hover::after, .filtered-list__action-button:active::after {
  transform: rotate(-45deg);
}
.filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.filtered-list__action-button:active {
  background-color: #35287C;
}
.filtered-list__action-button:active:focus {
  box-shadow: none;
}
.filtered-list__action-button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.filtered-list__action-button[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .filtered-list__action-button {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .filtered-list__action-button::after {
  background-color: #6049E9;
}
.--dark-bg .filtered-list__action-button:hover {
  color: #6049E9;
}
.--dark-bg .filtered-list__action-button:active {
  color: #fff;
  background-color: #6049E9;
}
.--dark-bg .filtered-list__action-button:active::after {
  background-color: #fff;
}
.--dark-bg .filtered-list__action-button:active:focus {
  box-shadow: none;
}
.--dark-bg .filtered-list__action-button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .filtered-list__action-button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
}
.--dark-bg .filtered-list__action-button[disabled]::after {
  background-color: #0A061C;
}

.filtered-list__pagination {
  margin-top: 40px;
}

.filtered-list__pagination-list {
  column-gap: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.filtered-list__pagination-list-item {
  padding: 0;
  transition: opacity ease-in-out 0.175s;
}
.filtered-list__pagination-list-item:not(:has(a)) {
  padding-block: 5px;
}
.filtered-list__pagination-list-item.--active .filtered-list__pagination-link {
  background-color: #6049E9;
  border-radius: 50%;
  color: #fff;
}
.filtered-list__pagination-list-item.--disabled {
  opacity: 0.25;
}
.filtered-list__pagination-list-item.--disabled .filtered-list__pagination-link {
  cursor: not-allowed;
  pointer-events: none;
}

.filtered-list__pagination-link {
  background-color: transparent;
  color: #6049E9;
  display: flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px;
  position: relative;
  text-decoration: none;
  transition: background-color ease-in-out 0.175s, color ease-in-out 0.175s;
}
.filtered-list__pagination-link:visited {
  color: #6049E9;
}
.filtered-list__pagination-link.--start-page::after, .filtered-list__pagination-link.--previous-page::after, .filtered-list__pagination-link.--next-page::after, .filtered-list__pagination-link.--end-page::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.filtered-list__pagination-link.--start-page::after, .filtered-list__pagination-link.--end-page::after {
  width: 24px;
  height: 20px;
}
.filtered-list__pagination-link.--previous-page::after, .filtered-list__pagination-link.--next-page::after {
  width: 28px;
  height: 20px;
}
.filtered-list__pagination-link.--start-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2220%22%20viewBox%3D%220%200%2024%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10.3587%2020L11.8529%2018.6037L2.99951%2010L11.8809%201.39583L10.3871%200L-0.000433922%2010.0132L10.3587%2020Z%22%20fill%3D%22%236049E9%22/%3E%3Cpath%20d%3D%22M22.2396%2020L23.7338%2018.6037L14.8804%2010L23.7617%201.39583L22.268%200L11.8804%2010.0132L22.2396%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}
.filtered-list__pagination-link.--previous-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2228%22%20height%3D%2220%22%20viewBox%3D%220%200%2028%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10.8752%2020L12.3694%2018.6037L4.49759%2011.0156H28V9.0113H4.49759L12.3974%201.39583L10.9036%200L0.516092%2010.0132L10.8752%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}
.filtered-list__pagination-link.--next-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2228%22%20height%3D%2220%22%20viewBox%3D%220%200%2028%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M17.1248%2020L15.6306%2018.6037L23.5024%2011.0156H0V9.0113H23.5024L15.6026%201.39583L17.0964%200L27.4839%2010.0132L17.1248%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}
.filtered-list__pagination-link.--end-page::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2220%22%20viewBox%3D%220%200%2024%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M13.403%2020L11.9088%2018.6037L20.7622%2010L11.8809%201.39583L13.3746%200L23.7622%2010.0132L13.403%2020Z%22%20fill%3D%22%236049E9%22/%3E%3Cpath%20d%3D%22M1.52215%2020L0.0279408%2018.6037L8.88135%2010L0%201.39583L1.49375%200L11.8813%2010.0132L1.52215%2020Z%22%20fill%3D%22%236049E9%22/%3E%3C/svg%3E");
}

.filtered-list__no-content {
  text-align: center;
  padding: 40px 20px;
  color: #7a7b7c;
}
.filtered-list__no-content p {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  margin: 0;
}

@media (min-width: 1101px) {
  .filtered-list__inner {
    row-gap: 64px;
  }

  .filtered-list__filter-sorting {
    column-gap: 50px;
  }
}
@media (max-width: 1100px) {
  .filtered-list__inner {
    row-gap: 56px;
  }

  .filtered-list__filter-dropdown select {
    min-width: 155px;
  }

  .filtered-list__filter-sort-label {
    min-width: 100px;
  }
}
@media (max-width: 700px) {
  .filtered-list__sorting,
.filtered-list__filter-sorting,
.filtered-list__filters {
    display: flex;
    align-items: flex-start;
    row-gap: 20px;
  }

  .filtered-list__sorting {
    position: relative;
  }

  .filtered-list__filter-dropdowns,
.filtered-list__filter-sorting {
    flex-direction: column;
  }

  .filtered-list__filter-dropdown .faux-select-group {
    position: initial;
  }
  .filtered-list__filter-dropdown .faux-select-group--toggle {
    min-width: 150px;
  }
  .filtered-list__filter-dropdown .faux-select-group--toggle::after {
    margin-left: auto;
  }
  .filtered-list__filter-dropdown .faux-select-group--toggle[aria-expanded=true]::before {
    top: 49px;
    left: 189px;
  }
  .filtered-list__filter-dropdown .faux-select-group--popup {
    top: 41px;
    width: 90vw;
    max-width: 320px;
  }
  .filtered-list__filter-dropdown select[name=filter-award-year] + .faux-select-group .faux-select-group--popup,
.filtered-list__filter-dropdown select[name=filter-year] + .faux-select-group .faux-select-group--popup,
.filtered-list__filter-dropdown select[name=filter-years] + .faux-select-group .faux-select-group--popup {
    width: 90vw;
    max-width: 320px;
  }
  .filtered-list__filter-dropdown:nth-child(2):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 110px;
  }
  .filtered-list__filter-dropdown:nth-child(2):not(.--sorter) .faux-select-group--popup {
    top: 102px;
  }
  .filtered-list__filter-dropdown:nth-child(3):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 171px;
  }
  .filtered-list__filter-dropdown:nth-child(3):not(.--sorter) .faux-select-group--popup {
    top: 163px;
  }
  .filtered-list__filter-dropdown:nth-child(4):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 232px;
  }
  .filtered-list__filter-dropdown:nth-child(4):not(.--sorter) .faux-select-group--popup {
    top: 224px;
  }
  .filtered-list__filter-dropdown:nth-child(5):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 293px;
  }
  .filtered-list__filter-dropdown:nth-child(5):not(.--sorter) .faux-select-group--popup {
    top: 285px;
  }
  .filtered-list__filter-dropdown:nth-child(6):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 354px;
  }
  .filtered-list__filter-dropdown:nth-child(6):not(.--sorter) .faux-select-group--popup {
    top: 346px;
  }
  .filtered-list__filter-dropdown:nth-child(7):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 415px;
  }
  .filtered-list__filter-dropdown:nth-child(7):not(.--sorter) .faux-select-group--popup {
    top: 407px;
  }
  .filtered-list__filter-dropdown:nth-child(8):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 476px;
  }
  .filtered-list__filter-dropdown:nth-child(8):not(.--sorter) .faux-select-group--popup {
    top: 468px;
  }
  .filtered-list__filter-dropdown:nth-child(9):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 537px;
  }
  .filtered-list__filter-dropdown:nth-child(9):not(.--sorter) .faux-select-group--popup {
    top: 529px;
  }
  .filtered-list__filter-dropdown:nth-child(10):not(.--sorter) .faux-select-group--toggle[aria-expanded=true]::before {
    top: 598px;
  }
  .filtered-list__filter-dropdown:nth-child(10):not(.--sorter) .faux-select-group--popup {
    top: 590px;
  }

  .filtered-list__filter-dropdown.--sorter::before {
    content: none;
  }

  .filtered-list__item-content, .filtered-list__hof-items-center {
    flex-direction: column;
    align-items: baseline;
  }

  .filtered-list__content-list--calendar .filtered-list__item-meta {
    min-width: auto;
    align-self: flex-start;
  }

  .filtered-list__content-list--awards .filtered-list__item-thumbnail,
.filtered-list__content-list--people .filtered-list__item-thumbnail {
    min-width: auto;
    max-width: 200px;
  }

  .filtered-list__content-list--cards .filtered-list__card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .filtered-list__content-list--cards .filtered-list__card-thumbnail {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
  }
  .filtered-list__content-list--cards .filtered-list__card-details {
    align-items: center;
  }
  .filtered-list__content-list--cards .filtered-list__card-toggle {
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .filtered-list__content-list--cards .filtered-list__card-thumbnail {
    width: 240px;
    height: 240px;
  }
  .filtered-list__content-list--cards .filtered-list__card-title {
    font-size: 24px;
  }
  .filtered-list__content-list--cards .filtered-list__card-apta-title,
.filtered-list__content-list--cards .filtered-list__card-staff-title,
.filtered-list__content-list--cards .filtered-list__card-location,
.filtered-list__content-list--cards .filtered-list__card-full-bio {
    font-size: 16px;
  }
}
.filtered-list__content-list--press .filtered-list__item--press {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 32px;
}
.filtered-list__content-list--press .filtered-list__item--press:last-child {
  border-bottom: none;
}
.filtered-list__content-list--press .filtered-list__item-thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: auto;
  aspect-ratio: 1/0.7;
  border-radius: 12px;
  overflow: hidden;
}
.filtered-list__content-list--press .filtered-list__item-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.filtered-list__content-list--press .filtered-list__item-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filtered-list__content-list--press .filtered-list__item-tag {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 6%;
  text-transform: uppercase;
  color: #35287C;
  background: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  position: absolute;
  top: 24px;
  left: 20px;
}
.filtered-list__content-list--press .filtered-list__item-title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #000;
}
.filtered-list__content-list--press .filtered-list__item-date {
  line-height: 1.5;
  letter-spacing: 0;
}
.filtered-list__content-list--press .filtered-list__action-button {
  white-space: nowrap;
}

.filtered-list__tcrp {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 48px);
}

.filtered-list__tcrp-parent-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filtered-list__tcrp-parent-title {
  font-size: clamp(28px, 2.4657534247vw, 36px);
  font-weight: 700;
  margin: 0;
  color: #0A061C;
}

.filtered-list__tcrp-parent-description {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #7a7b7c;
  margin: 0;
}

.filtered-list__tcrp-controls {
  display: flex;
  justify-content: flex-end;
}

.filtered-list__tcrp-expand-all {
  appearance: none;
  background: transparent;
  border: 0;
  color: #6049E9;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  padding: 0;
  text-decoration: underline;
}
.filtered-list__tcrp-expand-all:focus-visible {
  outline: 2px solid rgba(96, 73, 233, 0.35);
  outline-offset: 4px;
}

.filtered-list__tcrp-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}

.filtered-list__tcrp-group {
  border-top: 1px solid rgba(10, 6, 28, 0.08);
  border-bottom: 1px solid rgba(10, 6, 28, 0.08);
  overflow: hidden;
}

.filtered-list__tcrp-group-header {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: clamp(16px, 2vw, 24px);
}

.filtered-list__tcrp-group-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filtered-list__tcrp-group-title {
  font-size: clamp(22px, 1.7808219178vw, 26px);
  font-weight: 700;
  margin: 0;
  color: #0A061C;
}

.filtered-list__tcrp-group-count {
  color: #7a7b7c;
  font-weight: 500;
  font-size: clamp(14px, 1.095890411vw, 16px);
}

.filtered-list__tcrp-group-description {
  margin: 0;
  color: #7a7b7c;
  font-size: clamp(14px, 1.095890411vw, 16px);
}

.filtered-list__tcrp-group-toggle {
  align-items: center;
  appearance: none;
  background: none;
  border: none;
  color: #6049E9;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  padding: 8px 12px;
}
.filtered-list__tcrp-group-toggle svg {
  transition: transform ease-in-out 0.175s;
}
.filtered-list__tcrp-group-toggle.--expanded svg {
  transform: rotate(180deg);
}
.filtered-list__tcrp-group-toggle:focus-visible {
  outline: 2px solid rgba(96, 73, 233, 0.35);
  outline-offset: 4px;
}

.filtered-list__tcrp-group-panel {
  display: none;
  padding: clamp(16px, 2vw, 24px);
  padding-top: 0;
}
.filtered-list__tcrp-group-panel.--expanded {
  display: block;
}

.filtered-list__tcrp-empty {
  color: #7a7b7c;
  font-style: italic;
  margin: 0;
}

.filtered-list__content-list--tcrp,
.filtered-list__content-list--documents,
.filtered-list__tcrp-group-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}
.filtered-list__content-list--tcrp .filtered-list__item--tcrp,
.filtered-list__content-list--tcrp .filtered-list__item--document,
.filtered-list__content-list--documents .filtered-list__item--tcrp,
.filtered-list__content-list--documents .filtered-list__item--document,
.filtered-list__tcrp-group-panel .filtered-list__item--tcrp,
.filtered-list__tcrp-group-panel .filtered-list__item--document {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  border-bottom: 1px solid rgba(10, 6, 28, 0.08);
  padding-bottom: clamp(24px, 3vw, 40px);
}
.filtered-list__content-list--tcrp .filtered-list__item--tcrp:last-child,
.filtered-list__content-list--tcrp .filtered-list__item--document:last-child,
.filtered-list__content-list--documents .filtered-list__item--tcrp:last-child,
.filtered-list__content-list--documents .filtered-list__item--document:last-child,
.filtered-list__tcrp-group-panel .filtered-list__item--tcrp:last-child,
.filtered-list__tcrp-group-panel .filtered-list__item--document:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.filtered-list__content-list--tcrp .filtered-list__item-thumbnail,
.filtered-list__content-list--documents .filtered-list__item-thumbnail,
.filtered-list__tcrp-group-panel .filtered-list__item-thumbnail {
  position: relative;
  flex-shrink: 0;
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 1/1.3;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(96, 73, 233, 0.08);
}
.filtered-list__content-list--tcrp .filtered-list__item-thumbnail img,
.filtered-list__content-list--documents .filtered-list__item-thumbnail img,
.filtered-list__tcrp-group-panel .filtered-list__item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filtered-list__content-list--tcrp .filtered-list__item-thumbnail--placeholder,
.filtered-list__content-list--documents .filtered-list__item-thumbnail--placeholder,
.filtered-list__tcrp-group-panel .filtered-list__item-thumbnail--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.filtered-list__content-list--tcrp .filtered-list__item-thumbnail--placeholder::before,
.filtered-list__content-list--documents .filtered-list__item-thumbnail--placeholder::before,
.filtered-list__tcrp-group-panel .filtered-list__item-thumbnail--placeholder::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 29 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.80551 9.41665C8.18983 9.41665 8.52257 9.26442 8.80374 8.95997C9.08464 8.65522 9.22508 8.29456 9.22508 7.87801C9.22508 7.46115 9.08436 7.1005 8.80291 6.79605C8.52174 6.4913 8.19066 6.33892 7.80967 6.33892C7.4223 6.33892 7.08817 6.49145 6.80727 6.7965C6.5261 7.10155 6.38552 7.46055 6.38552 7.8735C6.38552 8.29306 6.5261 8.65522 6.80727 8.95997C7.08817 9.26442 7.42091 9.41665 7.80551 9.41665ZM7.80551 16.5346C8.18761 16.5346 8.5198 16.3837 8.80208 16.082C9.08408 15.7802 9.22508 15.4196 9.22508 15C9.22508 14.5804 9.08436 14.2183 8.80291 13.9135C8.52174 13.6091 8.19066 13.4569 7.80967 13.4569C7.4223 13.4569 7.08817 13.6091 6.80727 13.9135C6.5261 14.2183 6.38552 14.5804 6.38552 15C6.38552 15.4196 6.52666 15.7802 6.80894 16.082C7.09122 16.3837 7.42341 16.5346 7.80551 16.5346ZM7.80551 23.6611C8.18983 23.6611 8.52257 23.5087 8.80374 23.2039C9.08464 22.8995 9.22508 22.5388 9.22508 22.122C9.22508 21.7054 9.08436 21.3448 8.80291 21.04C8.52174 20.7356 8.19066 20.5834 7.80967 20.5834C7.4223 20.5834 7.08817 20.7359 6.80727 21.0409C6.5261 21.3457 6.38552 21.7045 6.38552 22.1175C6.38552 22.5373 6.5261 22.8995 6.80727 23.2039C7.08817 23.5087 7.42091 23.6611 7.80551 23.6611ZM3.37293 30C2.58682 30 1.91772 29.7007 1.36564 29.102C0.813288 28.5036 0.537109 27.7784 0.537109 26.9263V3.07366C0.537109 2.22162 0.813288 1.49641 1.36564 0.898025C1.91772 0.299341 2.5871 0 3.37376 0H20.5451L28.2157 8.31395V26.9254C28.2157 27.7781 27.9395 28.5036 27.3871 29.102C26.8351 29.7007 26.166 30 25.3799 30H3.37293Z' fill='%236049E9' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.filtered-list__content-list--tcrp .filtered-list__item-tag,
.filtered-list__content-list--documents .filtered-list__item-tag,
.filtered-list__tcrp-group-panel .filtered-list__item-tag {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #35287C;
  background: #fff;
  border-radius: 16px;
  padding: 6px 12px;
  position: absolute;
  top: 12px;
  left: 12px;
}
.filtered-list__content-list--tcrp .filtered-list__item-details,
.filtered-list__content-list--documents .filtered-list__item-details,
.filtered-list__tcrp-group-panel .filtered-list__item-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.filtered-list__content-list--tcrp .filtered-list__item-title,
.filtered-list__content-list--documents .filtered-list__item-title,
.filtered-list__tcrp-group-panel .filtered-list__item-title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(18px, 1.5068493151vw, 22px);
  line-height: 1.4;
  color: #0A061C;
}
.filtered-list__content-list--tcrp .filtered-list__item-title a,
.filtered-list__content-list--documents .filtered-list__item-title a,
.filtered-list__tcrp-group-panel .filtered-list__item-title a {
  color: inherit;
  text-decoration: none;
}
.filtered-list__content-list--tcrp .filtered-list__item-title a:hover,
.filtered-list__content-list--documents .filtered-list__item-title a:hover,
.filtered-list__tcrp-group-panel .filtered-list__item-title a:hover {
  text-decoration: underline;
}
.filtered-list__content-list--tcrp .filtered-list__item-report-number,
.filtered-list__content-list--documents .filtered-list__item-report-number,
.filtered-list__tcrp-group-panel .filtered-list__item-report-number {
  display: block;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 14px;
  color: #7a7b7c;
  margin-top: 4px;
}
.filtered-list__content-list--tcrp .filtered-list__item-date,
.filtered-list__content-list--documents .filtered-list__item-date,
.filtered-list__tcrp-group-panel .filtered-list__item-date {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: clamp(14px, 1.095890411vw, 16px);
  line-height: 1.4;
  color: #7a7b7c;
}
.filtered-list__content-list--tcrp .filtered-list__item-excerpt,
.filtered-list__content-list--documents .filtered-list__item-excerpt,
.filtered-list__tcrp-group-panel .filtered-list__item-excerpt {
  font-size: clamp(15px, 1.1643835616vw, 17px);
  line-height: 1.6;
  color: #0A061C;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filtered-list__content-list--tcrp .filtered-list__item-description-wrapper,
.filtered-list__content-list--documents .filtered-list__item-description-wrapper,
.filtered-list__tcrp-group-panel .filtered-list__item-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filtered-list__content-list--tcrp .filtered-list__item-description,
.filtered-list__content-list--documents .filtered-list__item-description,
.filtered-list__tcrp-group-panel .filtered-list__item-description {
  font-size: clamp(15px, 1.1643835616vw, 17px);
  line-height: 1.6;
  color: #0A061C;
}
.filtered-list__content-list--tcrp .filtered-list__item-description.--expandable,
.filtered-list__content-list--documents .filtered-list__item-description.--expandable,
.filtered-list__tcrp-group-panel .filtered-list__item-description.--expandable {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filtered-list__content-list--tcrp .filtered-list__item-description.--expandable.open,
.filtered-list__content-list--documents .filtered-list__item-description.--expandable.open,
.filtered-list__tcrp-group-panel .filtered-list__item-description.--expandable.open {
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  display: block;
  overflow: visible;
}
.filtered-list__content-list--tcrp .filtered-list__item-thumbnail--portrait,
.filtered-list__content-list--documents .filtered-list__item-thumbnail--portrait,
.filtered-list__tcrp-group-panel .filtered-list__item-thumbnail--portrait {
  width: clamp(140px, 16vw, 200px);
  aspect-ratio: 3/4;
}
.filtered-list__content-list--tcrp .filtered-list__item-thumbnail--portrait img,
.filtered-list__content-list--documents .filtered-list__item-thumbnail--portrait img,
.filtered-list__tcrp-group-panel .filtered-list__item-thumbnail--portrait img {
  border-radius: 10px;
}
.filtered-list__content-list--tcrp .filtered-list__document-toggle,
.filtered-list__content-list--tcrp .filtered-list__tcrp-toggle,
.filtered-list__content-list--documents .filtered-list__document-toggle,
.filtered-list__content-list--documents .filtered-list__tcrp-toggle,
.filtered-list__tcrp-group-panel .filtered-list__document-toggle,
.filtered-list__tcrp-group-panel .filtered-list__tcrp-toggle {
  font-weight: 500;
  color: #6049E9;
  font-size: clamp(14px, 1.095890411vw, 16px);
  cursor: pointer;
  border: 0;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0;
  gap: 8px;
  transition: color 0.175s ease-in-out;
}
.filtered-list__content-list--tcrp .filtered-list__document-toggle::after,
.filtered-list__content-list--tcrp .filtered-list__tcrp-toggle::after,
.filtered-list__content-list--documents .filtered-list__document-toggle::after,
.filtered-list__content-list--documents .filtered-list__tcrp-toggle::after,
.filtered-list__tcrp-group-panel .filtered-list__document-toggle::after,
.filtered-list__tcrp-group-panel .filtered-list__tcrp-toggle::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #6049E9;
  mask-image: url("/wp-content/themes/apta/images/caret-down.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.filtered-list__content-list--tcrp .filtered-list__document-toggle[aria-expanded=true]::after,
.filtered-list__content-list--tcrp .filtered-list__tcrp-toggle[aria-expanded=true]::after,
.filtered-list__content-list--documents .filtered-list__document-toggle[aria-expanded=true]::after,
.filtered-list__content-list--documents .filtered-list__tcrp-toggle[aria-expanded=true]::after,
.filtered-list__tcrp-group-panel .filtered-list__document-toggle[aria-expanded=true]::after,
.filtered-list__tcrp-group-panel .filtered-list__tcrp-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.filtered-list__content-list--tcrp .filtered-list__document-toggle:hover,
.filtered-list__content-list--tcrp .filtered-list__tcrp-toggle:hover,
.filtered-list__content-list--documents .filtered-list__document-toggle:hover,
.filtered-list__content-list--documents .filtered-list__tcrp-toggle:hover,
.filtered-list__tcrp-group-panel .filtered-list__document-toggle:hover,
.filtered-list__tcrp-group-panel .filtered-list__tcrp-toggle:hover {
  color: #35287C;
}
.filtered-list__content-list--tcrp .filtered-list__document-toggle:hover::after,
.filtered-list__content-list--tcrp .filtered-list__tcrp-toggle:hover::after,
.filtered-list__content-list--documents .filtered-list__document-toggle:hover::after,
.filtered-list__content-list--documents .filtered-list__tcrp-toggle:hover::after,
.filtered-list__tcrp-group-panel .filtered-list__document-toggle:hover::after,
.filtered-list__tcrp-group-panel .filtered-list__tcrp-toggle:hover::after {
  background-color: #35287C;
}
.filtered-list__content-list--tcrp .filtered-list__document-toggle:focus-visible,
.filtered-list__content-list--tcrp .filtered-list__tcrp-toggle:focus-visible,
.filtered-list__content-list--documents .filtered-list__document-toggle:focus-visible,
.filtered-list__content-list--documents .filtered-list__tcrp-toggle:focus-visible,
.filtered-list__tcrp-group-panel .filtered-list__document-toggle:focus-visible,
.filtered-list__tcrp-group-panel .filtered-list__tcrp-toggle:focus-visible {
  outline: 2px solid rgba(96, 73, 233, 0.35);
  outline-offset: 2px;
}
.filtered-list__content-list--tcrp .button--primary,
.filtered-list__content-list--documents .button--primary,
.filtered-list__tcrp-group-panel .button--primary {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.filtered-list__content-list--tcrp .button--primary svg,
.filtered-list__content-list--documents .button--primary svg,
.filtered-list__tcrp-group-panel .button--primary svg {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .filtered-list__content-list--tcrp .filtered-list__item--tcrp,
.filtered-list__tcrp-group-panel .filtered-list__item--tcrp {
    flex-direction: column;
  }
  .filtered-list__content-list--tcrp .filtered-list__item-thumbnail,
.filtered-list__tcrp-group-panel .filtered-list__item-thumbnail {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1/1.2;
  }

  .filtered-list__content-list--documents .filtered-list__item--document {
    flex-direction: column;
  }
  .filtered-list__content-list--documents .filtered-list__item-thumbnail--portrait {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 3/4;
  }

  .filtered-list__tcrp-group-header {
    flex-direction: column;
    gap: 12px;
  }

  .filtered-list__tcrp-group-toggle {
    align-self: flex-start;
  }
}
.flexible-cards-carousel {
  background-color: #F4F4F4;
}

.flexible-cards-carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(16px, 2.0547945205vw, 30px);
  margin-bottom: 52px;
}

.flexible-cards-carousel__title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(30px, 2.4657534247vw, 36px);
  line-height: 1.3;
  white-space: nowrap;
}

.flexible-cards-carousel__filters {
  display: flex;
  gap: 8px;
  flex: 1;
}

.flexible-cards-carousel__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flexible-cards-carousel__filter-item {
  margin: 0;
}

.flexible-cards-carousel__filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 30px;
  padding: 10px 20px;
  border: 1.5px solid #6049E9;
  background-color: transparent;
  color: #6049E9;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(14px, 1.095890411vw, 16px);
  line-height: 120%;
  letter-spacing: 0%;
  text-decoration: none;
  transition: all 0.175s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.flexible-cards-carousel__filter-button:visited {
  color: #6049E9;
}
.flexible-cards-carousel__filter-button.is-active, .flexible-cards-carousel__filter-button--active, .flexible-cards-carousel__filter-button:hover {
  background-color: #6049E9;
  color: #fff;
}
.flexible-cards-carousel__filter-button:focus {
  outline: 2px solid #6049E9;
  outline-offset: 2px;
}

.flexible-cards-carousel__cta {
  white-space: nowrap;
  margin-left: auto;
}

.flexible-cards-carousel__carousel-container {
  position: relative;
}

.flexible-cards-carousel__carousel {
  width: 100%;
  overflow: visible;
  margin: 0 -12px;
}
.flexible-cards-carousel__carousel .slick-slide {
  box-sizing: border-box;
}
.flexible-cards-carousel__carousel .slick-track {
  display: flex;
  align-items: stretch;
  margin-left: 0;
}
.flexible-cards-carousel__carousel .slick-list {
  margin: 0;
  padding: 0;
  overflow: visible;
  width: 100%;
}

.flexible-cards-carousel__slide {
  padding: 0 12px;
  box-sizing: border-box;
}

.flexible-cards-carousel__card-link-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.flexible-cards-carousel__card-link-wrapper .external-icon {
  display: none;
}

.flexible-cards-carousel__card {
  width: 100%;
  max-width: 456px;
  height: auto;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  position: relative;
}
.flexible-cards-carousel__card:hover .flexible-cards-carousel__image {
  transform: scale(1.05);
}

.flexible-cards-carousel__card-image {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}

.flexible-cards-carousel__image {
  width: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.175s ease-in-out;
}

.flexible-cards-carousel__card-content {
  padding-top: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flexible-cards-carousel__tag {
  color: #35287C;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 6%;
  text-transform: uppercase;
  margin: 0;
}

.flexible-cards-carousel__slide.flexible-cards-carousel__slide--first .flexible-cards-carousel__publication-date {
  display: none;
}
.flexible-cards-carousel__slide:not(.flexible-cards-carousel__slide--first) .flexible-cards-carousel__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flexible-cards-carousel__card-title {
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(20px, 1.6438356164vw, 24px);
  line-height: 120%;
  letter-spacing: -2%;
  margin: 0;
}

.flexible-cards-carousel__card-description {
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 150%;
  letter-spacing: 0%;
  margin: 0;
  flex: 1;
}

.flexible-cards-carousel__publication-date {
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 150%;
  letter-spacing: 0%;
  margin: 0;
  margin-top: auto;
}

.flexible-cards-carousel__card-link-label {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
  margin-top: auto;
}
.flexible-cards-carousel__card-link-label:hover, .flexible-cards-carousel__card-link-label:active, .flexible-cards-carousel__card-link-label:focus {
  text-decoration: none;
}
.flexible-cards-carousel__card-link-label::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.flexible-cards-carousel__card-link-label:visited {
  color: #35287C;
}
.flexible-cards-carousel__card-link-label:visited::after {
  background-color: #35287C;
}
.flexible-cards-carousel__card-link-label:hover, .flexible-cards-carousel__card-link-label:focus, .flexible-cards-carousel__card-link-label:active {
  color: #6049E9;
}
.flexible-cards-carousel__card-link-label:hover::after, .flexible-cards-carousel__card-link-label:active::after {
  transform: rotate(-45deg);
}
.flexible-cards-carousel__card-link-label:focus {
  border-bottom-color: #6049E9;
}
.flexible-cards-carousel__card-link-label:active {
  color: #35287C;
}
.flexible-cards-carousel__card-link-label:active::after {
  background-color: #35287C;
}
.flexible-cards-carousel__card-link-label:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.flexible-cards-carousel__card-link-label[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.flexible-cards-carousel__card-link-label[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .flexible-cards-carousel__card-link-label {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__card-link-label::after {
  background-color: #fff;
}
.--dark-bg .flexible-cards-carousel__card-link-label:hover {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__card-link-label:active {
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__card-link-label:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__card-link-label:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__card-link-label:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__card-link-label[disabled] {
  color: #E7E7E7;
}
.--dark-bg .flexible-cards-carousel__card-link-label[disabled]::after {
  background-color: #E7E7E7;
}

.flexible-cards-carousel--standards_updates .flexible-cards-carousel__card {
  border: 1px solid #E7E7E7;
  border-radius: 30px;
  background-color: #fff;
  padding: 32px;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__card:hover .flexible-cards-carousel__image {
  transform: none;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__card-content {
  padding-top: 0;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav {
  margin-top: auto;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:hover, .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active, .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:focus {
  text-decoration: none;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:visited {
  color: #35287C;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:visited::after {
  background-color: #35287C;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:hover, .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:focus, .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active {
  color: #6049E9;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:hover::after, .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active::after {
  transform: rotate(-45deg);
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:focus {
  border-bottom-color: #6049E9;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active {
  color: #35287C;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active::after {
  background-color: #35287C;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link::after {
  background-color: #fff;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:hover {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active {
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link[disabled] {
  color: #E7E7E7;
}
.--dark-bg .flexible-cards-carousel--standards_updates .flexible-cards-carousel__standards-nav-link[disabled]::after {
  background-color: #E7E7E7;
}

.flexible-cards-carousel__search-topics {
  margin-top: auto;
}

.flexible-cards-carousel__search-topics-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 150%;
  margin: 0 0 12px;
}

.flexible-cards-carousel__search-topics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flexible-cards-carousel__search-topic-link {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
}
.flexible-cards-carousel__search-topic-link:hover, .flexible-cards-carousel__search-topic-link:active, .flexible-cards-carousel__search-topic-link:focus {
  text-decoration: none;
}
.flexible-cards-carousel__search-topic-link::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.flexible-cards-carousel__search-topic-link:visited {
  color: #35287C;
}
.flexible-cards-carousel__search-topic-link:visited::after {
  background-color: #35287C;
}
.flexible-cards-carousel__search-topic-link:hover, .flexible-cards-carousel__search-topic-link:focus, .flexible-cards-carousel__search-topic-link:active {
  color: #6049E9;
}
.flexible-cards-carousel__search-topic-link:hover::after, .flexible-cards-carousel__search-topic-link:active::after {
  transform: rotate(-45deg);
}
.flexible-cards-carousel__search-topic-link:focus {
  border-bottom-color: #6049E9;
}
.flexible-cards-carousel__search-topic-link:active {
  color: #35287C;
}
.flexible-cards-carousel__search-topic-link:active::after {
  background-color: #35287C;
}
.flexible-cards-carousel__search-topic-link:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.flexible-cards-carousel__search-topic-link[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.flexible-cards-carousel__search-topic-link[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .flexible-cards-carousel__search-topic-link {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__search-topic-link::after {
  background-color: #fff;
}
.--dark-bg .flexible-cards-carousel__search-topic-link:hover {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__search-topic-link:active {
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__search-topic-link:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__search-topic-link:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__search-topic-link:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__search-topic-link[disabled] {
  color: #E7E7E7;
}
.--dark-bg .flexible-cards-carousel__search-topic-link[disabled]::after {
  background-color: #E7E7E7;
}

.flexible-cards-carousel__jobs-nav {
  margin-top: 0;
}

.flexible-cards-carousel__jobs-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flexible-cards-carousel__jobs-nav-link {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  color: #6049E9;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.175s ease-in-out, border-color 0.175s ease-in-out;
}
.flexible-cards-carousel__jobs-nav-link:hover, .flexible-cards-carousel__jobs-nav-link:active, .flexible-cards-carousel__jobs-nav-link:focus {
  text-decoration: none;
}
.flexible-cards-carousel__jobs-nav-link::after {
  content: "";
  display: block;
  padding-bottom: 3px;
  min-width: 12px;
  width: 12px;
  aspect-ratio: 1;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #6049E9;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.flexible-cards-carousel__jobs-nav-link:visited {
  color: #35287C;
}
.flexible-cards-carousel__jobs-nav-link:visited::after {
  background-color: #35287C;
}
.flexible-cards-carousel__jobs-nav-link:hover, .flexible-cards-carousel__jobs-nav-link:focus, .flexible-cards-carousel__jobs-nav-link:active {
  color: #6049E9;
}
.flexible-cards-carousel__jobs-nav-link:hover::after, .flexible-cards-carousel__jobs-nav-link:active::after {
  transform: rotate(-45deg);
}
.flexible-cards-carousel__jobs-nav-link:focus {
  border-bottom-color: #6049E9;
}
.flexible-cards-carousel__jobs-nav-link:active {
  color: #35287C;
}
.flexible-cards-carousel__jobs-nav-link:active::after {
  background-color: #35287C;
}
.flexible-cards-carousel__jobs-nav-link:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
}
.flexible-cards-carousel__jobs-nav-link[disabled] {
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.flexible-cards-carousel__jobs-nav-link[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link::after {
  background-color: #fff;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link:hover {
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link:active {
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link:active::after {
  background-color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link:active:focus {
  border-bottom-color: transparent;
  box-shadow: none;
  color: #E9E6FF;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link:focus {
  border-color: #fff;
  color: #fff;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link[disabled] {
  color: #E7E7E7;
}
.--dark-bg .flexible-cards-carousel__jobs-nav-link[disabled]::after {
  background-color: #E7E7E7;
}

.flexible-cards-carousel__card-cta {
  margin-top: auto;
}

.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.carousel-arrow {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: opacity 0.175s ease-in-out;
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel-arrow:hover:not(:disabled) {
  opacity: 0.7;
}
.carousel-arrow svg {
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .flexible-cards-carousel__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: clamp(32px, 3.5616438356vw, 52px);
  }

  .flexible-cards-carousel__filters {
    width: 100%;
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
  }

  .flexible-cards-carousel__filter-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-block: 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .flexible-cards-carousel__filter-list::-webkit-scrollbar {
    display: none;
  }
  .flexible-cards-carousel__filter-list.--grabbable {
    cursor: grab;
  }

  .flexible-cards-carousel__filter-item:first-child .flexible-cards-carousel__filter-button {
    margin-left: 20px;
  }
  .flexible-cards-carousel__filter-item:last-child .flexible-cards-carousel__filter-button {
    margin-right: 20px;
  }

  .flexible-cards-carousel__cta {
    margin-left: 0;
  }

  .flexible-cards-carousel__card-content {
    gap: clamp(12px, 1.095890411vw, 16px);
  }

  .flexible-cards-carousel__slide:not(.flexible-cards-carousel__slide--first) .flexible-cards-carousel__tag {
    top: clamp(16px, 4vw, 24px);
    left: clamp(16px, 4vw, 24px);
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
  }

  .carousel-navigation {
    margin-top: clamp(32px, 3.2876712329vw, 48px);
    gap: clamp(16px, 1.6438356164vw, 24px);
  }

  .flexible-cards-carousel--standards_updates .flexible-cards-carousel__card {
    padding: 24px;
  }
}
@media screen and (max-width: 650px) {
  .flexible-cards-carousel__filter-list {
    gap: 6px;
  }

  .flexible-cards-carousel__filter-button {
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
  }
}
.header-image-2col {
  background-color: #fff;
}

.header-image-2col__inner {
  display: flex;
  flex-direction: column;
}

.header-image-2col__header {
  display: flex;
}

.header-image-2col__header-content {
  display: flex;
  flex-direction: column;
  row-gap: 37px;
}

.header-image-2col__header-title {
  font-size: clamp(24px, 3.0136986301vw, 44px);
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

.header-image-2col__header-thumbnail {
  flex-shrink: 0;
}

.header-image-2col__header-image {
  border-radius: 20px;
}

.header-image-2col__grid {
  display: grid;
  gap: 20px;
}

.header-image-2col__grid-left,
.header-image-2col__grid-right {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}

.header-image-2col__item {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  max-width: 500px;
  row-gap: 26px;
}

.header-image-2col__item-title {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-left: 70px;
  position: relative;
  text-transform: uppercase;
}
.header-image-2col__item-title::before {
  background-image: url("data:image/svg+xml;utf8,<svg width='45' height='40' viewBox='0 0 45 40' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M36.5395 24L29.0403 30.272C28.9327 30.3621 28.8462 30.4701 28.7856 30.5899C28.725 30.7098 28.6916 30.839 28.6872 30.9703C28.6828 31.1016 28.7076 31.2324 28.76 31.3552C28.8125 31.478 28.8917 31.5904 28.993 31.686C29.0944 31.7816 29.2159 31.8585 29.3507 31.9124C29.4855 31.9662 29.6309 31.9959 29.7786 31.9998C29.9263 32.0037 30.0735 31.9817 30.2116 31.9351C30.3498 31.8885 30.4762 31.8181 30.5838 31.728L40.1463 23.728C40.258 23.6345 40.347 23.5217 40.4078 23.3965C40.4686 23.2713 40.5 23.1364 40.5 23C40.5 22.8636 40.4686 22.7287 40.4078 22.6035C40.347 22.4783 40.258 22.3655 40.1463 22.272L30.5838 14.272C30.4762 14.1819 30.3498 14.1115 30.2116 14.0649C30.0735 14.0183 29.9263 13.9963 29.7786 14.0002C29.6309 14.0041 29.4855 14.0338 29.3507 14.0876C29.2159 14.1415 29.0944 14.2184 28.993 14.314C28.8917 14.4096 28.8125 14.522 28.76 14.6448C28.7076 14.7676 28.6828 14.8984 28.6872 15.0297C28.6916 15.161 28.725 15.2902 28.7856 15.4101C28.8462 15.5299 28.9327 15.6379 29.0403 15.728L36.5395 22H11.2495C10.056 22 8.91146 21.5786 8.06754 20.8284C7.22363 20.0783 6.74952 19.0609 6.74952 18V9C6.74952 8.73478 6.631 8.48043 6.42002 8.29289C6.20904 8.10536 5.92289 8 5.62452 8C5.32616 8 5.04 8.10536 4.82903 8.29289C4.61805 8.48043 4.49952 8.73478 4.49952 9V18C4.49952 19.5913 5.21068 21.1174 6.47655 22.2426C7.74242 23.3679 9.45931 24 11.2495 24H36.5395Z' fill='%236049E9'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
}

.header-image-2col__item-description {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.5;
}

.header-image-2col__link {
  color: #6049E9;
  display: inline-flex;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-right: auto;
  position: relative;
  text-decoration: none;
}
.header-image-2col__link::after {
  background-image: url("data:image/svg+xml;utf8,<svg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M9.8625 7.0625H0V5.9375H9.8625L5.2125 1.2875L6 0.5L12 6.5L6 12.5L5.2125 11.7125L9.8625 7.0625Z' fill='%236049E9'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 13px;
  pointer-events: none;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform ease-in-out 0.175s;
  width: 12px;
}
.header-image-2col__link:focus::after, .header-image-2col__link:hover::after {
  transform: rotate(-45deg) translateY(-50%);
}

@media screen and (max-width: 800px) {
  .header-image-2col__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1100px) {
  .header-image-2col__inner {
    row-gap: 40px;
  }

  .header-image-2col__header {
    flex-direction: column;
    row-gap: 40px;
  }

  .header-image-2col__header-image {
    margin: auto;
  }
}
@media screen and (min-width: 800px) {
  .header-image-2col__grid {
    column-gap: 156px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 70px;
  }
}
@media screen and (min-width: 1100px) {
  .header-image-2col__inner {
    row-gap: 96px;
  }

  .header-image-2col__header {
    column-gap: 145px;
    flex-direction: row;
  }

  .header-image-2col__header-content {
    margin-block: auto;
  }
}
.--under-header {
  padding-top: var(--header-height);
}
.--under-header .main-breadcrumbs {
  padding-top: 100px;
}

.hero-dark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(360px, 41.6666666667vw, 800px);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: #18113C;
  background-image: url("/wp-content/themes/apta/images/bg-lines.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-dark:has(+ .l-container--xlarge > .summary, + .summary) {
  padding-bottom: 200px;
}
.hero-dark:has(+ .l-container--xlarge > .summary, + .summary) + .l-container--xlarge > .summary,
.hero-dark:has(+ .l-container--xlarge > .summary, + .summary) + .summary {
  position: relative;
  margin-top: -120px;
}

.hero-dark__inner {
  padding-top: clamp(60px, 10.9589041096vw, 160px);
  padding-bottom: clamp(60px, 6.5753424658vw, 96px);
  text-align: center;
}

.hero-dark__title {
  color: #fff;
  font-size: clamp(28px, 2.8767123288vw, 42px);
  margin-bottom: clamp(16px, 2.7397260274vw, 40px);
}

.hero-dark__text {
  width: 696px;
  margin: 0 auto;
  opacity: 0.7;
}

.hero-dark__description {
  color: #F4F4F4;
  font-size: clamp(16px, 1.6438356164vw, 24px);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-dark__date {
  color: #F4F4F4;
  font-size: clamp(14px, 1.3698630137vw, 20px);
  font-weight: 500;
}

.has-hero-under-header:has(.page-content > .--under-header:first-child) .faux-header {
  display: none;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child) header {
  position: fixed;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child) .header__logo .logo-short:not(.white) {
  display: none;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child) .header__logo .logo-short.white {
  display: block;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).header-is-fixed .header__logo .logo-short.white {
  display: none;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child):not(.header-is-fixed):not(.menu-is-open) .header__navigation--utility.desktop .resources-menu a,
.has-hero-under-header:has(.page-content > .--under-header:first-child):not(.header-is-fixed):not(.menu-is-open) .header__navigation--utility.desktop .account-menu-toggle {
  color: #fff;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child):not(.header-is-fixed):not(.menu-is-open) .header__navigation--utility.desktop svg path {
  fill: #fff;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child):not(.header-is-fixed):not(.menu-is-open) .header__toggable--scrollable .main-menu__list .main-menu__link {
  color: #fff;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open .header__logo .logo-short:not(.white) {
  display: block;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open .header__logo .logo-short.white {
  display: none;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open.header-is-fixed .header__logo .logo-short:not(.white) {
  display: none;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open:not(.header-is-fixed) .header__navigation--utility.desktop .resources-menu a,
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open:not(.header-is-fixed) .header__navigation--utility.desktop .account-menu-toggle {
  color: #000;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open:not(.header-is-fixed) .header__navigation--utility.desktop svg path {
  fill: #000;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open .header__toggable--scrollable .main-menu__list .main-menu__list-item .main-menu__link {
  color: #000;
}
.has-hero-under-header:has(.page-content > .--under-header:first-child).submenu-is-open .header__toggable--scrollable .main-menu__list .main-menu__list-item.submenu--revealed .main-menu__link {
  color: #fff;
}

@media (max-width: 1024px) {
  .has-hero-under-header:has(.page-content > .--under-header:first-child) .header__logo .logo-short.white {
    display: none;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child) .header__logo .logo-full:not(.white) {
    display: none;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child) .header__logo .logo-full.white {
    display: block;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).header-is-fixed .header__logo .logo-full:not(.white) {
    display: block;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).header-is-fixed .header__logo .logo-full.white {
    display: none;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).menu-is-open .header__logo .logo-full:not(.white) {
    display: none;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).menu-is-open .header__logo .logo-full.white {
    display: block;
  }

  .hero-dark__text {
    width: 100%;
  }

  .has-hero-under-header:has(.page-content > .--under-header:first-child) .main-menu__toggle {
    color: #fff;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child) .main-menu__toggle svg path {
    fill: #fff;
    stroke: #fff;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).header-is-fixed .main-menu__toggle {
    color: #000;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).header-is-fixed .main-menu__toggle svg path {
    fill: #6049E9;
    stroke: #6049E9;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).menu-is-open .main-menu__toggle {
    color: #fff;
  }
  .has-hero-under-header:has(.page-content > .--under-header:first-child).menu-is-open .main-menu__toggle svg path {
    fill: #6049E9;
    stroke: #6049E9;
  }
}
.hero-event {
  background-color: #18113C;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  position: relative;
}
.hero-event.has-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #18113C;
  opacity: 0.9;
}

.hero-event__background {
  filter: grayscale(1);
}

.hero-event__background,
.hero-event__background-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-event__background-image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-event__background-overlay {
  z-index: 2;
}

.hero-event__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  z-index: 3;
}

.hero-event__eyebrow {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-event__title {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 68px);
  letter-spacing: -1.36px;
  line-height: 1.3;
}

.hero-event__date-location {
  display: flex;
  flex-direction: column;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.4;
  row-gap: 12px;
}

.hero-event__date {
  font-weight: 600;
}

.hero-event__location {
  font-weight: 400;
}

.hero-event__callout {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  max-width: 427px;
}
.hero-event__callout .external-icon {
  display: none;
}

.hero-event__callout-message {
  display: inline-block;
  font-weight: 600;
  margin: auto;
  padding-left: 57px;
  padding-top: 8px;
  position: relative;
}
.hero-event__callout-message::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="41" height="40" viewBox="0 0 41 40"><path d="M32.9801 24L26.3141 30.272C26.2185 30.3621 26.1415 30.4701 26.0877 30.5899C26.0338 30.7098 26.0041 30.839 26.0002 30.9703C25.9963 31.1016 26.0183 31.2324 26.065 31.3552C26.1116 31.478 26.182 31.5904 26.2721 31.686C26.3622 31.7816 26.4702 31.8585 26.59 31.9124C26.7098 31.9662 26.8391 31.9959 26.9704 31.9998C27.1017 32.0037 27.2325 31.9817 27.3553 31.9351C27.4781 31.8885 27.5905 31.8181 27.6861 31.728L36.1861 23.728C36.2853 23.6345 36.3645 23.5217 36.4185 23.3965C36.4726 23.2713 36.5005 23.1364 36.5005 23C36.5005 22.8636 36.4726 22.7287 36.4185 22.6035C36.3645 22.4783 36.2853 22.3655 36.1861 22.272L27.6861 14.272C27.5905 14.1819 27.4781 14.1115 27.3553 14.0649C27.2325 14.0183 27.1017 13.9963 26.9704 14.0002C26.8391 14.0041 26.7098 14.0338 26.59 14.0876C26.4702 14.1415 26.3622 14.2184 26.2721 14.314C26.182 14.4096 26.1116 14.522 26.065 14.6448C26.0183 14.7676 25.9963 14.8984 26.0002 15.0297C26.0041 15.161 26.0338 15.2902 26.0877 15.4101C26.1415 15.5299 26.2185 15.6379 26.3141 15.728L32.9801 22H10.5001C9.4392 22 8.42178 21.5786 7.67164 20.8284C6.92149 20.0783 6.50006 19.0609 6.50006 18V9C6.50006 8.73478 6.39471 8.48043 6.20717 8.29289C6.01964 8.10536 5.76528 8 5.50006 8C5.23485 8 4.98049 8.10536 4.79296 8.29289C4.60542 8.48043 4.50006 8.73478 4.50006 9V18C4.50006 19.5913 5.13221 21.1174 6.25742 22.2426C7.38264 23.3679 8.90877 24 10.5001 24H32.9801Z" fill="white"/></svg>') no-repeat center;
  background-size: contain;
  content: "";
  height: 40px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 41px;
}

.hero-event__sublinks {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  max-width: 1420px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.hero-event__sublinks .hero-event__sublinks-nav {
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-inline: 20px;
}
@media (max-width: 1100px) {
  .hero-event__sublinks .hero-event__sublinks-nav {
    width: auto;
  }
}

.hero-event__sublinks-list {
  column-gap: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding-left: 0;
}
@media (max-width: 550px) {
  .hero-event__sublinks-list {
    flex-direction: column;
  }
}

.hero-event__sublinks-list-item {
  flex-shrink: 0;
  list-style: none;
  padding: 0;
  padding-inline: clamp(20px, 3.94vw, 60px);
  max-width: 100%;
}
.hero-event__sublinks-list-item:nth-of-type(n+2) {
  border-left: 1px solid #d6d6d6;
}
@media (max-width: 550px) {
  .hero-event__sublinks-list-item:nth-of-type(n+2) {
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid #d6d6d6;
  }
}

.hero-event__sublinks-list-link,
.hero-event__sublinks-list-link.external {
  color: #6049E9;
  display: flex;
  font-size: clamp(16px, 1.31vw, 20px);
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-decoration: none;
}
.hero-event__sublinks-list-link:hover,
.hero-event__sublinks-list-link.external:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1100px) {
  .hero-event {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .hero-event__content {
    padding-bottom: 85px;
    padding-top: 150px;
    row-gap: 18px;
  }
  .hero-event__content.--has-breadcrumbs {
    padding-top: 50px;
  }
  .hero-event__content.--has-menu {
    padding-bottom: 70px;
  }

  .hero-event__sublinks {
    min-height: 58px;
  }

  .hero-event__sublinks-nav {
    padding: 18px 50px;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .hero-event *[class*=l-container--] {
    padding-inline: 30px;
  }

  .hero-event {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .hero-event__content {
    padding-bottom: 172px;
    padding-top: 330px;
    row-gap: 24px;
  }
  .hero-event__content.--has-breadcrumbs {
    padding-top: 89px;
  }
  .hero-event__content.--has-menu {
    padding-bottom: 96px;
  }

  .hero-event__sublinks {
    min-height: 80px;
  }

  .hero-event__sublinks-nav {
    padding: 26px 56px;
  }
}
@keyframes wipeUpDesktop {
  to {
    height: 132px;
  }
}
@keyframes wipeExpandingDesktop {
  to {
    width: 520px;
  }
}
@keyframes wipeHorizonsDesktop {
  to {
    width: 680px;
  }
}
@keyframes wipeMobile {
  to {
    width: 435px;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}
@keyframes slideSideways {
  to {
    transform: translateX(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-homepage {
  position: relative;
  margin-top: calc(clamp(100px, 8.21vw, 120px) * -1);
}
.hero-homepage.fullscreen {
  padding-block: 0;
}
.hero-homepage + .tabbed-highlighted-content .l-container--xlarge {
  position: relative;
  z-index: 1;
}
.hero-homepage + .tabbed-highlighted-content .tabbed-highlighted-content__tabs-nav {
  transform: translateY(50px);
  opacity: 0;
}
.hero-homepage + .tabbed-highlighted-content .tabbed-highlighted-content__tabs-content {
  transform: translateY(200px);
  opacity: 0;
}
.hero-homepage:has(.--step-2.start) + .tabbed-highlighted-content .tabbed-highlighted-content__tabs-nav {
  animation: slideUp 1.3s ease-out 1.9s forwards, fadeIn 1.3s ease-out 1.9s forwards;
}
.hero-homepage:has(.--step-2.start) + .tabbed-highlighted-content .tabbed-highlighted-content__tabs-content {
  animation: slideUp 1.3s ease-out 1.1s forwards, fadeIn 1.3s ease-out 1.1s forwards;
}

.hero-homepage--loading-screen {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  z-index: 3;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out;
}
.loading-is-hidden .hero-homepage--loading-screen {
  opacity: 0;
  pointer-events: none;
}
.hero-homepage--loading-screen:has(+ .--step-2.start) .hero-homepage__decorations svg {
  opacity: 0;
}

.hero-homepage__decorations {
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  min-height: 1080px;
  background-color: transparent;
  background-image: linear-gradient(180deg, white 90%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.hero-homepage__decorations .l-container--max {
  position: relative;
  height: 100vh;
}
.hero-homepage__decorations svg {
  position: absolute;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.hero-homepage__decorations svg.left {
  top: clamp(100px, 13.0208333333vw, 250px);
  left: -12.34%;
  width: 53%;
  min-width: 800px;
}
.hero-homepage__decorations svg.center {
  top: clamp(100px, 41.095890411vw, 600px);
  left: clamp(100px, 25.3424657534vw, 370px);
  width: 50%;
  min-width: 950px;
}
.hero-homepage__decorations svg.right {
  top: 74px;
  right: -10%;
  width: 40%;
  min-width: 800px;
}

.hero-homepage-step {
  position: relative;
}
.hero-homepage-step:not(.--step-1) {
  display: none;
}
.hero-homepage-step.--step-1 {
  display: flex;
  flex-direction: column;
  padding-top: clamp(100px, 8.21vw, 120px);
  min-height: 100vh;
  height: 100%;
  width: 100%;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}
.hero-homepage-step.--step-1.complete {
  opacity: 0;
}
.hero-homepage-step.--step-1 > .l-container--xlarge {
  margin-block: auto;
}
@media (max-width: 1024px) {
  .hero-homepage-step.--step-1 > .desktop-only {
    display: none;
  }
}
.hero-homepage-step.--step-2 {
  display: flex;
  margin-top: calc(clamp(100px, 8.21vw, 120px) * -1);
  width: 100%;
  background-color: #F4F4F4;
}
.hero-homepage-step.--step-2 svg.left {
  top: auto;
  bottom: -50%;
  left: -18.78%;
  width: 60.7%;
}
.hero-homepage-step.--step-2 svg.right {
  top: auto;
  bottom: -34%;
  right: -22%;
  width: 57%;
}
.hero-homepage-step.--step-2.start .hero-homepage__title label.has-background {
  animation: slideUp 1.3s ease-out 1.1s forwards, fadeIn 1.3s ease-out 1.1s forwards;
}
.hero-homepage-step.--step-2.start .hero-homepage__title .word-group svg {
  animation: slideSideways 1.1s ease-out 1.9s forwards, fadeIn 1.1s ease-out 1.9s forwards;
}
.hero-homepage-step.--step-2.start .hero-homepage__title label:not(.has-background) {
  animation: slideSideways 1.1s ease-out 2.5s forwards, fadeIn 1.1s ease-out 2.5s forwards;
}
.hero-homepage-step.--step-2.start .hero-homepage__subtitle,
.hero-homepage-step.--step-2.start .hero-homepage__sponsored {
  animation: slideUp 1.3s ease-out 3.1s forwards, fadeIn 1.3s ease-out 3.1s forwards;
}

.hero-homepage__title .title {
  fill: #000;
  dominant-baseline: middle;
  white-space: pre;
}
.--step-1 .hero-homepage__title .desktop-only {
  transform: translateY(10vh);
}
.--step-1 .hero-homepage__title .desktop-only svg text {
  opacity: 0;
}
.--step-1 .hero-homepage__title .desktop-only svg text.connecting {
  transform: translateY(50%);
}
.--step-1 .hero-homepage__title .desktop-only svg text.communities {
  transform: translateY(50%);
}
.--step-1 .hero-homepage__title .desktop-only svg text.expanding {
  transform: translateX(38%);
}
.--step-1 .hero-homepage__title .desktop-only svg text.horizons {
  transform: translateX(-10%);
}
.--step-1 .hero-homepage__title .desktop-only .arrow {
  opacity: 0;
  transform: translateX(-5%);
}
.--step-1.start .hero-homepage__title .desktop-only {
  animation: slideUp 1.5s ease-in-out 3.5s forwards;
}
.--step-1.start .hero-homepage__title .desktop-only #rectConnect {
  animation: wipeUpDesktop 0.5s ease-out forwards;
}
.--step-1.start .hero-homepage__title .desktop-only #rectComm {
  animation: wipeUpDesktop 0.5s ease-out 0.5s forwards;
}
.--step-1.start .hero-homepage__title .desktop-only #rectExpand {
  animation: wipeExpandingDesktop 0.5s ease-out 1.1s forwards;
}
.--step-1.start .hero-homepage__title .desktop-only #rectHoriz {
  animation: wipeHorizonsDesktop 0.5s ease-out 1.7s forwards;
}
.--step-1.start .hero-homepage__title .desktop-only svg text.connecting {
  animation: slideUp 0.5s ease-out forwards, fadeIn 0.4s ease-out forwards;
}
.--step-1.start .hero-homepage__title .desktop-only svg text.communities {
  animation: slideUp 0.5s ease-out 0.5s forwards, fadeIn 0.4s ease-out 0.5s forwards;
}
.--step-1.start .hero-homepage__title .desktop-only svg text.expanding {
  animation: slideSideways 0.5s ease-out 1.1s forwards, fadeIn 0.4s ease-out 1.1s forwards;
}
.--step-1.start .hero-homepage__title .desktop-only svg text.horizons {
  animation: slideSideways 0.5s ease-out 1.85s forwards, fadeIn 0.4s ease-out 1.85s forwards;
}
.--step-1.start .hero-homepage__title .desktop-only .arrow {
  animation: slideSideways 0.3s ease-out 1.6s forwards, fadeIn 0.3s ease-out 1.6s forwards;
}
@media (max-width: 1024px) {
  .hero-homepage__title .desktop-only {
    display: none;
  }
}
.hero-homepage__title .mobile-only {
  display: none;
  margin: 0 auto;
  width: 100%;
  max-width: 640px;
}
@media (max-width: 1024px) {
  .hero-homepage__title .mobile-only {
    display: block;
  }
}
.hero-homepage__title .mobile-only svg {
  width: 100%;
}
.--step-1 .hero-homepage__title .mobile-only .arrow {
  opacity: 0;
}
.--step-1.start .hero-homepage__title .mobile-only #rectConnectMob {
  animation: wipeMobile 1s ease-out forwards;
}
.--step-1.start .hero-homepage__title .mobile-only #rectCommMob {
  animation: wipeMobile 1s ease-out 0.3s forwards;
}
.--step-1.start .hero-homepage__title .mobile-only #rectExpandMob {
  animation: wipeMobile 1s ease-out 0.6s forwards;
}
.--step-1.start .hero-homepage__title .mobile-only #rectHorizMob {
  animation: wipeMobile 1s ease-out 0.9s forwards;
}
.--step-1.start .hero-homepage__title .mobile-only .arrow {
  animation: fadeIn 0.5s ease-out 0.6s forwards;
}
.hero-homepage__title.initial {
  display: flex;
  font-size: 104px;
}
.--step-2 .hero-homepage__title {
  display: flex;
  gap: 20px;
  font-size: clamp(48px, 6.7272727273vw, 74px);
  line-height: 1;
}
.--step-2 .hero-homepage__title .word-group--in-transit {
  overflow: hidden;
}
.--step-2 .hero-homepage__title label {
  padding-block: 20px;
}
.--step-2 .hero-homepage__title label:not(.has-background) {
  display: flex;
  white-space: nowrap;
  opacity: 0;
  transform: translatex(-100%);
}
.--step-2 .hero-homepage__title label.has-background {
  padding-inline: 41px;
  border-radius: 20px;
  background-color: #6049E9;
  color: #fff;
  transform: translateY(100%);
  opacity: 0;
}
.--step-2 .hero-homepage__title .word-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.--step-2 .hero-homepage__title .word-group svg {
  min-width: clamp(44px, 6.9090909091vw, 76px);
  transform: translateX(-100%);
  opacity: 0;
}

.hero-homepage--train {
  opacity: 0;
  transform: translateX(-30%);
}
@media (min-width: 1025px) {
  .hero-homepage--train {
    position: absolute;
    top: 58%;
    left: 0;
    width: 37.08%;
    max-height: 712px;
    margin: 0;
    transition: margin 0.5s ease-in-out;
  }
  .loading-is-hidden .hero-homepage--train {
    margin-top: -10%;
  }
  .--step-1.start .hero-homepage--train {
    animation: slideSideways 1s ease-out 3.8s forwards, fadeIn 1s ease-out 3.8s forwards;
  }
}
@media (max-width: 1024px) {
  .--step-1.start .hero-homepage--train {
    animation: slideSideways 1s ease-out 2s forwards, fadeIn 1s ease-out 2s forwards;
  }
}

.--step-1 .hero-homepage__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: clamp(90px, 6.25vw, 120px);
  margin-right: clamp(0px, 8.904109589vw, 130px);
  margin-left: auto;
  width: 45%;
  max-width: 450px;
  transform: translateY(20%);
  opacity: 0;
  padding: clamp(24px, 2.0833333333vw, 40px);
  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(10, 6, 28, 0.08);
}
.--step-1.start .hero-homepage__text {
  animation: slideUp 1.2s ease-out 3.7s forwards, fadeIn 1s ease-out 3.7s forwards;
}
@media (max-width: 1024px) {
  .--step-1.start .hero-homepage__text {
    animation: slideUp 1.2s ease-out 2.5s forwards, fadeIn 1s ease-out 2.5s forwards;
  }
}
.--step-2 .hero-homepage__text {
  position: relative;
}

.--step-1 .hero-homepage__subtitle {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  padding-top: 2px;
  padding-left: 67px;
  background-image: url("/wp-content/themes/apta/images/connected-link-arrow.png");
  background-repeat: no-repeat;
  background-size: 32px 24px;
  background-position: 0 0;
}
.--step-2 .hero-homepage__subtitle {
  margin-top: clamp(20px, 7vw, 49px);
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
}

.--step-1 .hero-homepage__description {
  color: #0A061C;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  line-height: 1.5;
}

.hero-homepage__buttons {
  display: flex;
  gap: clamp(14px, 3.4285714286vw, 24px);
  padding-bottom: 0;
}
.hero-homepage__buttons .button--secondary {
  background-color: transparent;
}
.hero-homepage__buttons .button--secondary:hover {
  background-color: #6049E9;
}
.hero-homepage__buttons .button--secondary:active {
  background-color: #35287C;
}

.hero-homepage__inner {
  position: relative;
  padding-top: clamp(40px, 6.1979166667vw, 119px);
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
}
.loading-is-hidden .hero-homepage__inner {
  transform: translateY(-100px);
}
.hero-homepage__inner .mobile-only {
  display: none;
}
@media (max-width: 1024px) {
  .hero-homepage__inner .mobile-only {
    display: block;
  }
}

.hero-homepage-step__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 53px;
  padding-inline: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1674px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
.hero-homepage-step__inner > svg {
  position: absolute;
  min-width: 620px;
  pointer-events: none;
}
.hero-homepage-step__inner > svg.left {
  left: -18.78%;
  top: -27%;
  width: 60.7%;
}
.hero-homepage-step__inner > svg.right {
  right: -22%;
  top: -33%;
  width: 57%;
}

.hero-homepage__sponsored {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  transform: translateY(100%);
  opacity: 0;
}

.hero-homepage__sponsored-label {
  font-size: 12px;
  text-transform: uppercase;
}

.hero-homepage__sponsored-logo {
  max-width: 123px;
}
.hero-homepage__sponsored-logo img {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .hero-homepage {
    z-index: 3;
  }
}
@media (max-width: 1024px) {
  .hero-homepage__decorations {
    min-height: calc(100vh + clamp(200px, 55vw, 560px));
    background-image: linear-gradient(180deg, white 95%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-homepage__title.initial {
    font-size: 48px;
  }

  .hero-homepage--train {
    margin-left: -20px;
    width: 85%;
    max-width: 580px;
  }

  .--step-1 .hero-homepage__text {
    align-items: flex-end;
    margin-top: 20px;
    margin-right: 0;
    width: 90%;
  }
  .--step-1 .hero-homepage__description {
    text-align: right;
    font-size: clamp(14px, 2.5714285714vw, 18px);
  }

  .--step-2 .hero-homepage__title {
    flex-direction: column;
    align-items: center;
  }
  .--step-2 .hero-homepage__title label {
    padding-block: 0;
  }
  .--step-2 .hero-homepage__title label.has-background {
    padding-inline: clamp(20px, 5.8571428571vw, 41px);
    padding-block: clamp(15px, 2.8571428571vw, 20px);
  }

  .hero-homepage-step.--step-2 svg.left {
    bottom: -46%;
    left: -45%;
    min-width: 800px;
  }
  .hero-homepage-step.--step-2 svg.right {
    display: none;
  }
}
.hero-internal {
  position: relative;
}

.hero-internal--simple {
  background-color: #fff;
  margin-top: clamp(32px, 5.4794520548vw, 80px);
  margin-bottom: clamp(40px, 6.5753424658vw, 96px);
}
.hero-internal--simple .hero-internal__inner {
  position: relative;
  padding: 64px 100px;
  padding-block: clamp(40px, 4.3835616438vw, 64px);
  padding-inline: clamp(40px, 6.8493150685vw, 100px);
  border-radius: 30px;
  background: linear-gradient(180deg, #FFF -66.09%, #F4F4F4 100%);
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .hero-internal--simple .l-container--xlarge {
    padding: 0;
  }
}
.hero-internal--simple .decor {
  position: absolute;
  height: 100%;
}
.hero-internal--simple .decor.--left {
  top: 0;
  left: 0;
}
.hero-internal--simple .decor.--right {
  bottom: 0;
  right: 0;
}
.hero-internal--simple .hero-internal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 13.2727272727vw, 146px);
  z-index: 1;
}
.hero-internal--simple .main-breadcrumbs {
  justify-content: flex-start;
  padding-top: 0;
}
.hero-internal--simple .breadcrumbs__list-item.--last {
  display: none;
}
.hero-internal--simple .breadcrumbs__list-item:nth-last-child(2) a::after {
  content: none;
}
.hero-internal--simple .hero-internal__title {
  font-size: clamp(48px, 5.0909090909vw, 56px);
}

.hero-internal--description_cta .main-breadcrumbs {
  padding-top: 100px;
}
.hero-internal--description_cta .hero-internal__text-content {
  display: flex;
  gap: 40px;
  margin-top: clamp(40px, 9.0909090909vw, 100px);
}
@media (max-width: 800px) {
  .hero-internal--description_cta .hero-internal__text-content {
    flex-direction: column;
  }
}
.hero-internal--description_cta .hero-internal__text-content .column {
  flex: 1;
}
.hero-internal--description_cta .hero-internal__description {
  font-size: clamp(18px, 2.1818181818vw, 24px);
  line-height: 1.4;
  font-weight: 500;
}
.hero-internal--description_cta .hero-internal__description + .hero-internal__cta-container {
  margin-top: 24px;
}

.hero-internal--full {
  padding: 0;
  margin-bottom: 60px;
}
.hero-internal--full .hero-internal__container {
  padding: 0;
}
@media screen and (max-width: 650px) {
  .hero-internal--full .hero-internal__container {
    padding: 0;
  }
}
.hero-internal--full .hero-internal__title {
  margin-top: clamp(34px, 9.0909090909vw, 100px);
  margin-bottom: 23px;
}
@media (max-width: 1024px) {
  .hero-internal--full .hero-internal__title {
    margin-top: 34px;
    margin-bottom: 10px;
  }
}
.hero-internal--full .hero-internal__background {
  width: 100%;
  height: clamp(450px, 40.6849315068vw, 594px);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.hero-internal--full .hero-internal__content-wrapper {
  position: relative;
}
.hero-internal--full .hero-internal__content-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 53.55%;
}
.hero-internal--full .hero-internal__content-box::before, .hero-internal--full .hero-internal__content-box::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-bottom-right-radius: 20px;
  box-shadow: 20px 0 0 0 #fff;
}
.hero-internal--full .hero-internal__content-box::before {
  bottom: 0;
  left: -40px;
}
.hero-internal--full .hero-internal__content-box::after {
  top: -40px;
  right: 0;
}
.hero-internal--full .hero-internal__content-box__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.7808219178vw, 26px);
  padding-top: clamp(24px, 2.7397260274vw, 40px);
  padding-left: clamp(24px, 4.3835616438vw, 64px);
  background-color: #fff;
  border-top-left-radius: 25px;
}
.hero-internal--full .hero-internal__subtitle {
  font-size: clamp(20px, 1.6438356164vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #0A061C;
}
.hero-internal--full .hero-internal__description {
  font-size: clamp(14px, 1.2328767123vw, 18px);
}
@media (max-width: 800px) {
  .hero-internal--full .hero-internal__background {
    height: clamp(240px, 56.25vw, 450px);
  }
  .hero-internal--full .hero-internal__content-wrapper {
    margin-top: -40px;
    margin-left: 30px;
  }
  .hero-internal--full .hero-internal__content-box {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
  }
  .hero-internal--full .hero-internal__content-box::before {
    content: none;
  }
}

.industry-insights {
  position: relative;
  background-color: #F4F4F4;
}
.industry-insights::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: url("/wp-content/themes/apta/images/grid-pattern-tile.svg");
  mask-size: 833px auto;
  mask-position: 16% 40%;
  background-color: #E7E7E7;
}
.home .industry-insights::before {
  content: none;
}
.industry-insights .l-container--xlarge {
  position: relative;
}

.industry-insights__inner {
  display: flex;
  flex-direction: column;
}

.industry-insights__header {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
  text-align: center;
}

.industry-insights__header-eyebrow {
  font-size: clamp(16px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}

.industry-insights__header-title {
  font-size: clamp(22px, 3.0136986301vw, 44px);
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
}

.industry-insights__header-description {
  font-size: 18px;
  margin: auto;
  max-width: 456px;
}

.industry-insights__grid {
  display: grid;
  padding: 24px 0;
}

.industry-insights__grid-card-link {
  height: 100%;
  text-decoration: none;
}
.industry-insights__grid-card-link:focus, .industry-insights__grid-card-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: unset;
}
.industry-insights__grid-card-link.industry-insights__grid-card-link {
  color: unset;
  display: inline-flex;
  font-size: unset;
  gap: unset;
}
.industry-insights__grid-card-link.industry-insights__grid-card-link svg {
  display: none;
}

.industry-insights__grid-card {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 252px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.industry-insights__grid-card.--has-link {
  cursor: pointer;
}
.industry-insights__grid-card.--background {
  color: #fff;
}
.industry-insights__grid-card.--background::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.85%, rgba(0, 0, 0, 0.9) 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.industry-insights__grid-card:nth-child(2) {
  background-color: #6049E9;
  color: #fff;
}
.industry-insights__grid-card:nth-child(7) {
  background-color: #007BFF;
  color: #fff;
}

.industry-insights__grid-bg-image-wrapper {
  flex: 1 0 auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

.industry-insights__grid-bg-image {
  display: block;
  height: 100%;
  max-width: none;
  min-width: 100%;
}

.industry-insights__grid-icon-wrapper {
  position: absolute;
}

.industry-insights__grid-card-content {
  color: inherit;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  position: relative;
  row-gap: 16px;
  z-index: 3;
}

.industry-insights__grid-card-title {
  font-size: clamp(20px, 1.9178082192vw, 28px);
}

.industry-insights__grid-card-description {
  font-size: clamp(16px, 1.2328767123vw, 18px);
}

.industry-insights__cta-wrapper {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1100px) {
  .industry-insights__inner {
    row-gap: 50px;
  }

  .industry-insights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .industry-insights__grid-icon-wrapper {
    right: 30px;
    top: 30px;
  }

  .industry-insights__grid-icon {
    max-height: 50px;
  }

  .industry-insights__grid-card-content {
    padding: 30px;
  }
}
@media screen and (max-width: 650px) {
  .industry-insights__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-insights__grid-card {
    grid-column: span 1;
    grid-row: span 1;
  }
  .industry-insights__grid-card:nth-of-type(1), .industry-insights__grid-card:nth-of-type(5) {
    min-height: 426px;
  }
}
@media (min-width: 650px) and (max-width: 1100px) {
  .industry-insights__grid-card:nth-of-type(1) {
    grid-row: 1/3;
  }
  .industry-insights__grid-card:nth-of-type(5) {
    grid-row: 3/5;
    grid-column: 2;
  }
  .industry-insights__grid-card:nth-of-type(7) {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1100px) {
  .industry-insights__inner {
    row-gap: 64px;
  }

  .industry-insights__grid {
    grid-template-columns: 40.67% 32.2% 23.72%;
    grid-template-rows: repeat(3, auto);
    gap: 24px;
  }

  .industry-insights__grid-card:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .industry-insights__grid-card:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .industry-insights__grid-card:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .industry-insights__grid-card:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .industry-insights__grid-card:nth-child(5) {
    grid-column: 2/3;
    grid-row: 2/4;
  }
  .industry-insights__grid-card:nth-child(6) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .industry-insights__grid-card:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
  .industry-insights__grid-card:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .industry-insights__grid-card:nth-child(1) .industry-insights__grid-card-title,
.industry-insights__grid-card:nth-child(1) .industry-insights__grid-card-description, .industry-insights__grid-card:nth-child(2) .industry-insights__grid-card-title,
.industry-insights__grid-card:nth-child(2) .industry-insights__grid-card-description, .industry-insights__grid-card:nth-child(4) .industry-insights__grid-card-title,
.industry-insights__grid-card:nth-child(4) .industry-insights__grid-card-description, .industry-insights__grid-card:nth-child(5) .industry-insights__grid-card-title,
.industry-insights__grid-card:nth-child(5) .industry-insights__grid-card-description {
    max-width: 80%;
  }
  .industry-insights__grid-card:nth-child(3) .industry-insights__grid-card-title,
.industry-insights__grid-card:nth-child(3) .industry-insights__grid-card-description, .industry-insights__grid-card:nth-child(6) .industry-insights__grid-card-title,
.industry-insights__grid-card:nth-child(6) .industry-insights__grid-card-description, .industry-insights__grid-card:nth-child(7) .industry-insights__grid-card-title,
.industry-insights__grid-card:nth-child(7) .industry-insights__grid-card-description {
    max-width: 83%;
  }

  .industry-insights__grid-icon-wrapper {
    right: 40px;
    top: 40px;
  }

  .industry-insights__grid-card-content {
    padding: 40px;
  }

  .industry-insights__grid-card-title,
.industry-insights__grid-card-description {
    margin-right: auto;
  }
}
.key-issues-section {
  overflow: hidden;
  position: relative;
}
.key-issues-section .l-container--xlarge {
  position: relative;
}
.key-issues-section .mobile-only {
  display: none;
}
@media (max-width: 900px) {
  .key-issues-section .mobile-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .key-issues-section .desktop-only {
    display: none;
  }
}

.key-issues-section__background-image-container {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.key-issues-section__background-image-container .l-container--max {
  position: relative;
  padding: 0;
}
.key-issues-section__background-image-container .l-container--max::before, .key-issues-section__background-image-container .l-container--max::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: #0A061C;
}
.key-issues-section__background-image-container .l-container--max::before {
  right: 100%;
}
.key-issues-section__background-image-container .l-container--max::after {
  left: 100%;
}

.key-issues-section__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.key-issues-section__background-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0a061c 0%, rgba(10, 6, 28, 0.92) 20%, rgba(10, 6, 28, 0.92) 80%, #0a061c 100%);
}

.key-issues-section__background-grid {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: url("/wp-content/themes/apta/images/grid-pattern-tile.svg");
  mask-size: 833px auto;
  mask-position: 16% 40%;
  background-color: #3F3959;
}

.key-issues-section__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.key-issues-section__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.key-issues-section__nav-item {
  display: flex;
  gap: clamp(16px, 1.6438356164vw, 24px);
}
.key-issues-section__nav-item svg {
  display: none;
  width: clamp(50px, 5.4794520548vw, 80px);
}
.key-issues-section__nav-item:has(.key-issues-section__nav-button[aria-selected=true]) svg {
  display: block;
}
.key-issues-section__nav-item:has(.key-issues-section__nav-button[aria-selected=true]) .key-issues-section__nav-button {
  margin-left: 0;
}

.key-issues-section__nav-button {
  margin: 0;
  margin-left: -30px;
  transform: translateX(0);
  padding: 0.35em 0.53em;
  border-radius: 20px;
  text-align: left;
  border: 0;
  background-color: transparent;
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: clamp(40px, 3.8356164384vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #8F89B5;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.key-issues-section__nav-button[aria-selected=true] {
  background-color: #fff;
  color: #35287C;
}
.key-issues-section__nav-button:not([aria-selected=true]):hover {
  transform: translateX(10px);
}

.key-issues-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  width: 44%;
  max-width: 535px;
}

@media (min-width: 901px) {
  .key-issues-section__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-block: clamp(70px, 6.8493150685vw, 100px);
    padding-inline: clamp(50px, 4.7945205479vw, 70px);
    padding-right: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: rgba(96, 73, 233, 0.9);
    color: #fff;
  }
  .key-issues-section__panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 300vw;
    height: 100%;
    background-color: rgba(96, 73, 233, 0.9);
    z-index: 1;
  }
  .key-issues-section__panel:not(.key-issues-section__panel--active) {
    display: none;
  }
}
@media (min-width: 901px) and (max-width: 900px) {
  .key-issues-section__panel:not(.key-issues-section__panel--active) {
    display: flex;
  }
}
.key-issues-section__label {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.key-issues-section__heading {
  font-size: clamp(28px, 2.1917808219vw, 32px);
}

.key-issues-section__description {
  font-size: clamp(16px, 1.3698630137vw, 20px);
  line-height: 1.5;
}

.key-issues-section__issues-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  margin-top: auto;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}
.key-issues-section__issues-link:visited {
  color: #fff;
}
.key-issues-section__issues-link:hover {
  color: #fff;
  text-decoration: underline;
}
.key-issues-section__issues-link::before, .key-issues-section__issues-link::after {
  content: "";
  display: block;
  pointer-events: none;
  aspect-ratio: 1;
}
.key-issues-section__issues-link::before {
  width: clamp(80px, 13.4vw, 134px);
  border-radius: 100%;
  border: 2px solid #fff;
}
.key-issues-section__issues-link::after {
  position: absolute;
  top: clamp(27px, 4.6vw, 46px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(26px, 4.5vw, 45px);
  mask-image: url("/wp-content/themes/apta/images/arrow-right-large-white.svg");
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: #fff;
}
.key-issues-section__issues-link label {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  font-size: 16px;
  white-space: nowrap;
  pointer-events: none;
}

.key-issues-section__accordion-group-title {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.key-issues-section__accordion--expander {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 20px;
  padding-left: 0;
  margin: 0;
  width: 100%;
  border: 0;
  border-radius: 20px;
  text-align: left;
  color: #fff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0);
  transition: padding-left 0.3s linear, background-color 0.3s linear, color 0.3s linear;
}
.key-issues-section__accordion--expander svg {
  transform: rotate(0);
  transition: transform 0.3s linear;
}
.key-issues-section__accordion--expander svg path {
  fill: #6049E9;
}
.key-issues-section__accordion-group.active .key-issues-section__accordion--expander {
  transform: none;
  background-color: white;
  padding-left: 20px;
  color: #35287C;
}
.key-issues-section__accordion-group.active .key-issues-section__accordion--expander svg {
  transform: rotate(-180deg);
}

@media (max-width: 900px) {
  .key-issues-section {
    background-color: #0A061C;
  }
  .key-issues-section h2 {
    margin-bottom: -20px;
  }

  .key-issues-section__background-image {
    display: none;
  }

  .key-issues-section__background-grid {
    mask-position: 20px -250px;
    mask-size: 832px auto;
    opacity: 0.5;
  }

  .key-issues-section__inner.mobile-only h2 {
    font-size: clamp(18px, 1.3698630137vw, 20px);
    font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
    margin-bottom: -20px;
    color: #fff;
  }

  .key-issues-section__accordion {
    width: 100%;
  }

  .key-issues-section__panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
    color: #fff;
  }

  .key-issues-section__description {
    font-size: 20px;
    line-height: 1.5;
  }

  .key-issues-section__issues-link {
    flex-direction: row-reverse;
    margin-left: 0;
  }
  .key-issues-section__issues-link::before {
    margin-right: auto;
    width: 64px;
  }
  .key-issues-section__issues-link::after {
    top: 21px;
    right: 20px;
    left: auto;
    transform: none;
    width: 22px;
  }
  .key-issues-section__issues-link label {
    margin-left: auto;
  }
}
.leadership-cards__inner {
  margin: 0 auto;
  max-width: 936px;
}

.leadership-cards__title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(30px, 2.4657534247vw, 36px);
  line-height: 1.3;
  font-size: clamp(30px, 3.6vw, 36px);
  margin-bottom: 1.3em;
}

.leadership-cards__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 8vw, 80px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.leadership-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  color: #000;
  background-color: #fff;
}
.leadership-card.purple {
  background-color: #35287C;
  color: #fff;
}
.leadership-card.lilac {
  background-color: #E9E6FF;
}

.leadership-card__image {
  position: relative;
  display: flex;
  margin-bottom: auto;
  min-width: 38%;
  width: 38%;
}
.purple .leadership-card__image, .lilac .leadership-card__image {
  padding-bottom: 40px;
  margin-top: 40px;
  margin-left: 40px;
  min-width: calc(38% - 40px);
  width: calc(38% - 40px);
}
@media (max-width: 800px) {
  .purple .leadership-card__image, .lilac .leadership-card__image {
    margin-left: 0;
    padding-bottom: 0;
    margin-top: clamp(30px, 4vw, 40px);
    padding-inline: clamp(30px, 4vw, 40px);
    width: auto;
    min-width: 0;
    flex-grow: 1;
  }
}
.leadership-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.leadership-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
  padding-block: clamp(30px, 4vw, 40px);
  padding-inline: clamp(20px, 5.6vw, 56px);
  width: 62%;
}

.leadership-card__role {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
  color: #35287C;
}
.purple .leadership-card__role {
  color: #fff;
}

.leadership-card__name {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(30px, 2.4657534247vw, 36px);
  line-height: 1.3;
  font-size: 28px;
  color: #35287C;
}
.purple .leadership-card__name {
  color: #fff;
}

.leadership-card__bio-inner.--expandable .full {
  display: none;
}
.leadership-card__bio-inner.--expandable.open .short {
  display: none;
}
.leadership-card__bio-inner.--expandable.open .full {
  display: block;
}

.leadership-card__bio-toggle {
  font-weight: 500;
  color: #6049E9;
  text-decoration: none;
  font-size: clamp(14px, 1.095890411vw, 16px);
  box-shadow: 0 0 20px #6049e900;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 0;
  gap: 8px;
  position: relative;
  text-align: center;
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
}
.purple .leadership-card__bio-toggle, .lilac .leadership-card__bio-toggle {
  color: #fff;
}
.purple .leadership-card__bio-toggle::after, .lilac .leadership-card__bio-toggle::after {
  background-color: #fff;
}
.purple .leadership-card__bio-toggle:hover, .lilac .leadership-card__bio-toggle:hover {
  color: #8F89B5;
}
.purple .leadership-card__bio-toggle:hover::after, .lilac .leadership-card__bio-toggle:hover::after {
  background-color: #8F89B5;
}
.leadership-card__bio-toggle:visited {
  color: #6049E9;
}
.leadership-card__bio-toggle::after {
  background-color: #6049E9;
  content: "";
  display: block;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/plus.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
  width: 16px;
}
.leadership-card__bio-toggle[aria-expanded=true]::after {
  mask-image: none;
  height: 2px;
}
.leadership-card__bio-toggle:hover {
  color: #35287C;
}
.leadership-card__bio-toggle:hover::after {
  background-color: #35287C;
}

@media (max-width: 800px) {
  .leadership-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .leadership-card.white:last-child {
    padding-bottom: 0;
  }

  .leadership-card__image,
.leadership-card__content {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .white .leadership-card__image,
.white .leadership-card__content {
    padding-inline: 0;
  }
}
.location-info {
  background-color: #0A061C;
  background-image: url("/wp-content/themes/apta/images/bg-dots-transparent.png");
  background-position: center;
}

.location-info__inner {
  display: flex;
  flex-direction: column;
  row-gap: 55px;
}

.location-info__heading {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
}

.location-info__cards {
  display: flex;
}

.location-info__card {
  background-color: #35287C;
  background-size: cover;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.location-info__card-overlay {
  background-color: rgba(53, 40, 124, 0.9);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.location-info__card-content {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 32px;
  position: relative;
  row-gap: 20px;
  transition: background-color ease-in-out 0.175s;
  z-index: 2;
}
.location-info__card-content:hover, .location-info__card-content:focus {
  background-color: #fff;
  cursor: pointer;
}
.location-info__card-content:hover .location-info__card-eyebrow,
.location-info__card-content:hover .location-info__card-title,
.location-info__card-content:hover .location-info__card-read-more, .location-info__card-content:focus .location-info__card-eyebrow,
.location-info__card-content:focus .location-info__card-title,
.location-info__card-content:focus .location-info__card-read-more {
  color: #6049E9;
}
.location-info__card-content:hover .location-info__card-cutoff,
.location-info__card-content:hover .location-info__card-description,
.location-info__card-content:hover .location-info__card-phone, .location-info__card-content:focus .location-info__card-cutoff,
.location-info__card-content:focus .location-info__card-description,
.location-info__card-content:focus .location-info__card-phone {
  color: #35287C;
}
.location-info__card-content:hover .location-info__card-read-more::after, .location-info__card-content:focus .location-info__card-read-more::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="34" height="35" viewBox="0 0 34 35" fill="none"><path d="M18.085 0.875V16.4004H33.0449V19.2373H18.085V34.7627H15.3418V19.2373H0.381836V16.4004H15.3418V0.875H18.085Z" fill="%236049E9" stroke="%236049E9" stroke-width="0.25"/></svg>');
  transform: rotate(-45deg);
}

.location-info__card-eyebrow,
.location-info__card-title,
.location-info__card-cutoff,
.location-info__card-description,
.location-info__card-phone,
.location-info__card-read-more.location-info__card-read-more {
  color: #fff;
  transition: color ease-in-out 0.1s;
}

.location-info__card-eyebrow {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5;
  text-transform: uppercase;
}

.location-info__card-title {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.4;
  font-weight: 500;
}

.location-info__card-content-inner {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.location-info__card-cutoff,
.location-info__card-description {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.location-info__card-phone {
  text-decoration: none;
}
.location-info__card-phone .external-icon {
  display: none;
}

.location-info__card-read-more {
  align-items: center;
  display: flex;
  line-height: 35px;
  margin-left: auto;
  margin-top: auto;
  padding-right: 50px;
  position: relative;
  text-decoration: none;
}
.location-info__card-read-more.location-info__card-read-more {
  color: #fff;
}
.location-info__card-read-more::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="34" height="35" viewBox="0 0 34 35" fill="none"><path d="M18.085 0.875V16.4004H33.0449V19.2373H18.085V34.7627H15.3418V19.2373H0.381836V16.4004H15.3418V0.875H18.085Z" fill="white" stroke="white" stroke-width="0.25"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 35px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform ease-in-out 0.175s;
  transform: rotate(0deg);
  width: 34px;
}

@media screen and (min-width: 1100px) {
  .location-info__cards {
    column-gap: 4px;
    flex-direction: row;
  }

  .location-info__card {
    background-color: #35287C;
    flex: 1;
    min-height: 705px;
  }
  .location-info__card:first-of-type {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .location-info__card:last-of-type {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .location-info__card-content {
    min-height: 50%;
  }

  .location-info__card-content-inner {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .location-info__cards {
    align-items: center;
    margin: auto;
    width: 100%;
  }

  .location-info__card {
    max-width: 470px;
    min-height: clamp(400px, 45.45vw, 500px);
    width: 100%;
  }

  .location-info__cards {
    flex-direction: column;
    row-gap: 4px;
  }

  .location-info__card:first-of-type {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  .location-info__card:last-of-type {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .location-info__card-content-inner {
    margin-bottom: 24px;
  }
}
.home .mission-highlights-grid {
  position: relative;
  margin-top: 0 !important;
  padding-block: clamp(90px, 6.8493150685vw, 100px);
}
.home .mission-highlights-grid::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: url("/wp-content/themes/apta/images/grid-pattern-tile.svg");
  mask-size: 833px auto;
  mask-position: 16% 40%;
  background-color: #EEE;
  z-index: -1;
}
.home .mission-highlights-grid + .ticker {
  margin-top: 0;
}

.mission-highlights-grid__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mission-highlights-grid__inner h2 {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(48px, 4.6575342466vw, 68px);
  line-height: 1.3;
  font-size: clamp(58px, 7.012987013vw, 108px);
  line-height: 1.2;
}

.mission-highlights-grid__intro-text {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.mission-highlights-grid--row {
  position: relative;
  display: flex;
  width: 100%;
}

.mission-highlights-grid--first-row {
  justify-content: center;
  margin-top: clamp(16px, 2.5974025974vw, 40px);
  margin-bottom: clamp(30px, 3.2467532468vw, 50px);
}

.mission-highlights-grid--second-row,
.mission-highlights-grid--third-row {
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5974025974vw, 40px);
}

.mission-highlights-grid--forth-row {
  justify-content: space-between;
  gap: 40px;
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  margin-top: clamp(45px, 4.2207792208vw, 65px);
}

.mission-highlights-grid__description {
  padding-top: 2px;
  padding-left: 50px;
  min-width: 35.4%;
  width: 35.4%;
  font-size: clamp(16px, 1.2328767123vw, 18px);
  background-image: url("/wp-content/themes/apta/images/connected-link-arrow.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 32px 24px;
}

.mission-highlights-grid__forth-row--right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 1;
  gap: clamp(24px, 2.2077922078vw, 34px);
}

.mission-highlights-grid__buttons {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(12px, 1.038961039vw, 16px);
}

.mission-highlights-grid__image {
  height: auto;
  border-radius: 70px;
}
.mission-highlights-grid__image.mobile-only {
  display: none;
}
.mission-highlights-grid__image.--1, .mission-highlights-grid__image.--4 {
  width: 16.47%;
  max-width: 210px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.mission-highlights-grid__image.--2, .mission-highlights-grid__image.--3 {
  width: 20%;
  max-width: 255px;
}
.mission-highlights-grid__image.--1 {
  left: 18.95%;
}
.mission-highlights-grid__image.--4 {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 30%;
}

@media (max-width: 850px) {
  .mission-highlights-grid__image:not(.mobile-only) {
    display: none;
  }
  .mission-highlights-grid__image.mobile-only {
    display: block;
  }
  .mission-highlights-grid__image.--1 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-left: auto;
  }
  .mission-highlights-grid__image.--3 {
    margin-top: 40px;
    margin-right: auto;
    width: 100%;
    max-width: 210px;
  }

  .mission-highlights-grid--first-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .mission-highlights-grid--second-row,
.mission-highlights-grid--third-row {
    justify-content: flex-start;
  }

  .mission-highlights-grid--forth-row {
    width: 100%;
  }

  .mission-highlights-grid__description {
    width: 44%;
    min-width: 44%;
  }
}
@media (max-width: 750px) {
  .mission-highlights-grid--forth-row {
    flex-direction: column;
    align-items: flex-end;
  }

  .mission-highlights-grid__description {
    width: 92%;
    max-width: 490px;
    min-width: 0;
    font-size: 18px;
  }
}
.newsletter-and-social-links-section {
  position: relative;
  margin-bottom: -50px;
  background-color: #F4F4F4;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  z-index: 1;
}
.newsletter-and-social-links-section::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: url("/wp-content/themes/apta/images/grid-pattern-tile.svg");
  mask-size: 833px auto;
  mask-position: 16% 40%;
  background-color: rgba(122, 123, 124, 0.15);
}
.newsletter-and-social-links-section .mobile-only {
  display: none;
}
.newsletter-and-social-links-section .l-container--large {
  position: relative;
}

.newsletter-and-social-links-section__inner {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.newsletter-and-social-links-section__left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 54.44%;
}

.newsletter-and-social-links-section__newsletter-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
  padding: 40px clamp(20px, 3.63vw, 40px);
  padding-bottom: 20px;
  background-color: #fff;
  border-radius: 30px;
}

.newsletter-and-social-links-section__logo {
  margin-bottom: 13px;
  max-width: 180px;
}
.newsletter-and-social-links-section__logo img {
  max-width: 100%;
  height: auto;
}

.newsletter-and-social-links-section__title {
  font-size: clamp(20px, 2.1818181818vw, 24px);
}

.newsletter-and-social-links-section__note {
  font-size: clamp(14px, 1.4545454545vw, 16px);
}

.newsletter-and-social-links-section__form-container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.newsletter-and-social-links-section__form-container label {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}
.newsletter-and-social-links-section__form-container form {
  display: flex;
  gap: 8px;
}
.newsletter-and-social-links-section__form-container .gform-body {
  flex-grow: 1;
}
.newsletter-and-social-links-section__form-container .gform-body .gfield input[type=email] {
  padding: 0 32px;
  height: 42px;
  font-size: 16px;
  border: 0;
  border-radius: 30px;
  background: #E7E7E7;
  box-shadow: none;
  color: #35287C;
}
.newsletter-and-social-links-section__form-container .gform-body .gfield input[type=email]::placeholder {
  color: #35287C;
}
.newsletter-and-social-links-section__form-container .gform-theme--foundation .gform-footer {
  position: relative;
  display: block;
  margin-top: 0;
  width: 42px;
  height: 42px;
  border-radius: 30px;
  background-color: #6049E9;
}
.newsletter-and-social-links-section__form-container .gform-theme--foundation .gform-footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  pointer-events: none;
}
.newsletter-and-social-links-section__form-container .gform-theme--foundation .gform-footer .gform_button {
  display: block;
  width: 42px;
  height: 42px;
  text-indent: -999999px;
  border-radius: 30px !important;
  background-color: transparent !important;
  cursor: pointer;
  width: 100% !important;
  aspect-ratio: 1;
  padding: 0;
  box-shadow: 0 0 0 !important;
}
.newsletter-and-social-links-section__form-container small {
  font-size: 11px;
  line-height: 1.5;
}

.newsletter-and-social-links-section__social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 22px clamp(22px, 3.12vw, 40px);
  color: #fff;
  background-color: #35287C;
  border-radius: 30px;
}

.newsletter-and-social-links-section__social-links--title {
  font-size: clamp(18px, 2.5vw, 20px);
}

.newsletter-and-social-links-section__social-list {
  gap: clamp(10px, 1.56vw, 20px);
}
.newsletter-and-social-links-section__social-list a {
  width: clamp(40px, 3.75vw, 48px);
}
.newsletter-and-social-links-section__social-list a svg {
  display: block;
}

.newsletter-and-social-links-section__social-link svg {
  width: clamp(16px, 1.5625vw, 20px);
  aspect-ratio: 1/1;
}
.newsletter-and-social-links-section__social-link .external-icon {
  display: none;
}

.newsletter-and-social-links-section__social-title {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  margin: 0;
  padding: 0;
}

.newsletter-and-social-links-section__right-column {
  width: 43.1%;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
}

.newsletter-and-social-links-section__links-area {
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 40px clamp(20px, 3.63vw, 40px);
}
.newsletter-and-social-links-section__links-area h3 {
  font-size: 20px;
}

.newsletter-and-social-links-section__links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: clamp(33px, 3.45vw, 38px);
  margin: 0 -10px;
}
.newsletter-and-social-links-section__links-list li {
  break-inside: avoid;
  width: 50%;
  padding: 0 10px;
}
.newsletter-and-social-links-section__links-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}
.newsletter-and-social-links-section__links-list a::before {
  content: "";
  width: clamp(25px, 2.9vw, 32px);
  min-width: clamp(25px, 2.9vw, 32px);
  aspect-ratio: 1/0.75;
  background-image: url("/wp-content/themes/apta/images/connected-link-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.newsletter-and-social-links-section__links-list a:hover {
  text-decoration: underline;
}
.newsletter-and-social-links-section__links-list a span {
  display: flex;
}

@media screen and (max-width: 800px) {
  .newsletter-and-social-links-section.fullscreen {
    padding-block: 40px;
  }
  .newsletter-and-social-links-section .desktop-only {
    display: none;
  }
  .newsletter-and-social-links-section .mobile-only {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-and-social-links-section__inner {
    flex-direction: column;
  }

  .newsletter-and-social-links-section__left-column {
    width: 100%;
  }

  .newsletter-and-social-links-section__right-column {
    width: 100%;
  }

  .newsletter-and-social-links-section__social-list {
    gap: 20px;
  }
}
.nominations__container {
  display: flex;
  flex-direction: column;
  row-gap: 38px;
}

.nominations__header {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.nominations__award {
  display: flex;
  border-top: 1px solid #000;
  padding-top: 40px;
}
.nominations__award:not(:first-of-type) {
  margin-top: 56px;
}

.nominations__award-description li,
.nominations__award-description p {
  font-size: 16px;
}

.nominations__award-cta {
  margin-top: 32px;
}

.nominations__award-thumbnail {
  flex-shrink: 0;
}

.nominations__award-image {
  border-radius: 30px;
}

@media screen and (max-width: 1100px) {
  .nominations__award {
    flex-direction: column;
    row-gap: 24px;
  }
}
@media screen and (min-width: 1100px) {
  .nominations__award {
    column-gap: 24px;
    flex-direction: row;
    justify-content: space-between;
  }
}
/**
 * Page Sidebar Navigation Block Styles
 * Uses shared sidebar layout from _sidebar-layout.scss
 */
@media (max-width: 1100px) {
  .page-sidebar-navigation [class*=l-container--] {
    padding-top: 0;
  }
}

.page-sidebar-navigation__inner {
  display: flex;
  justify-content: space-between;
}

.page-sidebar-navigation__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 28%;
  max-width: 336px;
}

.page-sidebar-navigation__content {
  width: 66.2%;
}
.page-sidebar-navigation__content > .block.summary:first-child {
  margin-top: 0;
}

.page-sidebar-navigation__group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page-sidebar-navigation__group label {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(10, 6, 28, 0.5);
}
.page-sidebar-navigation__group .section-navigation {
  display: none;
}

.page-sidebar-navigation__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-sidebar-navigation__list li {
  display: flex;
  gap: 12px;
}
.page-sidebar-navigation__list li.current-page svg {
  max-width: 22px;
}
.page-sidebar-navigation__list li.current-page path {
  fill: #000;
}
.page-sidebar-navigation__list a {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  text-decoration: none;
}
.page-sidebar-navigation__list a[aria-current=page] {
  color: #000;
  pointer-events: none;
}
.page-sidebar-navigation__list a[aria-current=page]:visited {
  color: #000;
}
.page-sidebar-navigation__list a:hover {
  text-decoration: underline;
}

.page-sidebar-navigation__sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 30px;
}

.sidebar-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-contact-info__title,
.sidebar-related-info__title {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
}

.sidebar-contact-info__subtitle {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.sidebar-contact-info__name,
.sidebar-contact-info__address,
.sidebar-contact-info__contact {
  font-size: clamp(14px, 1.095890411vw, 16px);
  line-height: 1.5;
}

.sidebar-contact-info__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-contact-info__link {
  font-size: clamp(14px, 1.095890411vw, 16px);
  text-decoration: none;
}
.sidebar-contact-info__link:hover {
  text-decoration: underline;
}

.sidebar-related-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-related-info__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-related-info__links a {
  font-weight: 400;
}

.sidebar-ad-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
}

.sidebar-ad-section__text-above {
  font-size: clamp(14px, 1.095890411vw, 16px);
  line-height: 1.5;
}

.sidebar-ad-section__code {
  width: 100%;
}
.sidebar-ad-section__code img {
  max-width: 100%;
  height: auto;
}

.sidebar-ad-section__link-below {
  text-align: center;
}

.sidebar-ad-section__link {
  font-weight: 400;
}

.page-sidebar-navigation__content > .block .l-container--reading,
.page-sidebar-navigation__content > .block .l-container--xlarge,
.page-sidebar-navigation__content > .block .l-container--large,
.page-sidebar-navigation__content > .block .l-container--medium {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.page-sidebar-navigation__content .wysiwyg-block .wysiwyg__content {
  font-size: clamp(14px, 1.095890411vw, 16px);
}
.page-sidebar-navigation__content .wysiwyg-block .wysiwyg__content h1, .page-sidebar-navigation__content .wysiwyg-block .wysiwyg__content h2, .page-sidebar-navigation__content .wysiwyg-block .wysiwyg__content h3, .page-sidebar-navigation__content .wysiwyg-block .wysiwyg__content h4, .page-sidebar-navigation__content .wysiwyg-block .wysiwyg__content h5, .page-sidebar-navigation__content .wysiwyg-block .wysiwyg__content h6 {
  font-size: clamp(16px, 1.2328767123vw, 18px);
}
.page-sidebar-navigation__content .buttons-grid__items {
  gap: 15px;
  grid-template-columns: 1fr;
}
.page-sidebar-navigation__content .buttons-grid__item {
  padding: 15px;
  font-size: clamp(14px, 1.095890411vw, 16px);
}
.page-sidebar-navigation__content .buttons-grid__heading {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  margin-bottom: 10px;
}
.page-sidebar-navigation__content .summary-block .summary__inner {
  padding: 15px;
}
.page-sidebar-navigation__content .summary-block .summary__title {
  font-size: clamp(12px, 0.9589041096vw, 14px);
  margin-bottom: 8px;
}
.page-sidebar-navigation__content .summary-block .summary__description {
  font-size: clamp(14px, 1.095890411vw, 16px);
}
.page-sidebar-navigation__content .summary-block .summary__description p {
  margin-bottom: 10px;
}
.page-sidebar-navigation__content .summary-block .summary__description p:last-child {
  margin-bottom: 0;
}
.page-sidebar-navigation__content .summary-block .summary__description ul, .page-sidebar-navigation__content .summary-block .summary__description ol {
  margin-bottom: 10px;
  padding-left: 20px;
}
.page-sidebar-navigation__content .accordion-block .accordion-block__heading {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  margin-bottom: 15px;
}
.page-sidebar-navigation__content .accordion-block .accordion-block__item {
  margin-bottom: 10px;
}
.page-sidebar-navigation__content .accordion-block .accordion-block__item:last-child {
  margin-bottom: 0;
}
.page-sidebar-navigation__content .accordion-block .accordion-block__header {
  font-size: clamp(14px, 1.095890411vw, 16px);
  padding: 12px 15px;
}
.page-sidebar-navigation__content .accordion-block .accordion-block__content {
  padding: 15px;
}
.page-sidebar-navigation__content .accordion-block .accordion-block__content .wysiwyg__content {
  font-size: clamp(14px, 1.095890411vw, 16px);
}
.page-sidebar-navigation__content .accordion-block .accordion-block__content .wysiwyg__content p {
  margin-bottom: 8px;
}
.page-sidebar-navigation__content .accordion-block .accordion-block__content .wysiwyg__content p:last-child {
  margin-bottom: 0;
}
.page-sidebar-navigation__content .cta-grid-block .cta-grid-block__grid {
  grid-template-columns: 1fr;
  gap: 15px;
}
.page-sidebar-navigation__content .cta-grid-block .cta-grid-block__card {
  font-size: clamp(14px, 1.095890411vw, 16px);
}
.page-sidebar-navigation__content .cta-grid-block .cta-grid-block__heading {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  margin-bottom: 10px;
}
.page-sidebar-navigation__content .content-index-block .content-index-block__list {
  column-count: 1;
}
.page-sidebar-navigation__content .content-index-block .content-index-block__link {
  font-size: clamp(16px, 1.2328767123vw, 18px);
}
.page-sidebar-navigation__content .leadership-cards .leadership-cards__grid {
  grid-template-columns: 1fr;
}
.page-sidebar-navigation__content .leadership-cards .leadership-card {
  font-size: clamp(14px, 1.095890411vw, 16px);
}
.page-sidebar-navigation__content .filtered-list.--bg-gray {
  padding: 30px;
}
.page-sidebar-navigation__content .table-block,
.page-sidebar-navigation__content .tablepress-block {
  max-width: 100%;
  overflow: hidden;
}
.page-sidebar-navigation__content .table-block table,
.page-sidebar-navigation__content .tablepress-block table {
  max-width: 100%;
  font-size: 14px;
}
.page-sidebar-navigation__content .table-block table th, .page-sidebar-navigation__content .table-block table td,
.page-sidebar-navigation__content .tablepress-block table th,
.page-sidebar-navigation__content .tablepress-block table td {
  padding: 8px 10px;
  font-size: 14px;
}
.page-sidebar-navigation__content .tablepress-block__shortcode-inner {
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-block: 1px;
  padding-inline: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  cursor: grab;
  width: calc(100% + 20px);
  max-width: 100%;
}
.page-sidebar-navigation__content .tablepress-block__shortcode-inner::-webkit-scrollbar {
  height: 8px;
}
.page-sidebar-navigation__content .tablepress-block__shortcode-inner::-webkit-scrollbar-track {
  background: transparent;
}
.page-sidebar-navigation__content .tablepress-block__shortcode-inner::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
@media (max-width: 800px) {
  .page-sidebar-navigation__content .tablepress-block__shortcode-inner {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.page-sidebar-navigation__content .two-column-text-wysiwyg-block__left {
  flex: 0 0 auto;
  width: 25%;
}
.page-sidebar-navigation__content .two-column-text-wysiwyg-block__right {
  flex: 0 0 auto;
  width: calc(75% - 32px);
}
.page-sidebar-navigation__content .two-column-text-wysiwyg-block__right h2, .page-sidebar-navigation__content .two-column-text-wysiwyg-block__right h3, .page-sidebar-navigation__content .two-column-text-wysiwyg-block__right h4, .page-sidebar-navigation__content .two-column-text-wysiwyg-block__right h5, .page-sidebar-navigation__content .two-column-text-wysiwyg-block__right h6 {
  word-break: break-word;
}

@media (max-width: 1024px) {
  .page-sidebar-navigation__content .two-column-text-wysiwyg-block__left,
.page-sidebar-navigation__content .two-column-text-wysiwyg-block__right {
    width: 100%;
  }
}
@media (min-width: 851px) {
  .section-navigation--toggable {
    display: block !important;
  }
}
@media (max-width: 850px) {
  .page-sidebar-navigation__inner {
    flex-direction: column;
    gap: clamp(20px, 5.8823529412vw, 50px);
  }

  .page-sidebar-navigation__sidebar {
    width: 100%;
    max-width: 100%;
  }
  .page-sidebar-navigation__sidebar .section-navigation {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 0;
    background-color: transparent;
    transition: border-radius 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 400;
    height: 40px;
    color: #000;
    cursor: pointer;
  }
  .page-sidebar-navigation__sidebar .section-navigation::after {
    content: "";
    display: block;
    height: 16px;
    mask-image: url("/wp-content/themes/apta/images/caret-down.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transform: rotate(0deg);
    transition: transform 0.175s ease-in-out;
    width: 16px;
    background-color: #6049E9;
  }

  .page-sidebar-navigation__group {
    gap: 0;
  }
  .page-sidebar-navigation__group > label {
    margin-bottom: 30px;
  }

  .section-navigation--toggable {
    display: none;
    background: #6049E9;
    padding: 20px;
    padding-top: 40px;
    border-radius: 20px;
    position: relative;
    margin-top: 10px;
  }
  .section-navigation--toggable::before {
    content: "";
    border-color: transparent transparent #6049E9;
    border-style: solid;
    border-width: 0 10px 10px;
    display: block;
    height: 0;
    left: 50px;
    position: absolute;
    bottom: 100%;
    transform: rotate(0deg) translateX(-50%);
    width: 0;
  }

  .page-sidebar-navigation__list {
    gap: 10px;
  }
  .page-sidebar-navigation__list li {
    display: flex;
  }
  .page-sidebar-navigation__list li:last-child {
    margin-bottom: 0;
  }
  .page-sidebar-navigation__list li.current-page path {
    fill: #fff;
  }
  .page-sidebar-navigation__list a {
    font-size: 16px;
    color: #fff;
  }
  .page-sidebar-navigation__list a[aria-current=page], .page-sidebar-navigation__list a[aria-current=page]:visited {
    color: #fff;
  }

  .page-sidebar-navigation__content {
    width: 100%;
  }

  .page-sidebar-navigation__sections {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .page-sidebar-navigation__sections h4.sidebar-related-info__title {
    margin-bottom: 0;
    color: #fff;
  }
  .page-sidebar-navigation__sections a {
    color: #fff;
  }
  .page-sidebar-navigation__sections a:hover {
    color: #fff;
    text-decoration: underline;
  }
}
@media (max-width: 550px) {
  .page-sidebar-navigation__list {
    column-count: 1;
  }
}
.resource-grid-section {
  position: relative;
}
.resource-grid-section::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: url("/wp-content/themes/apta/images/grid-pattern-tile.svg");
  mask-size: 833px auto;
  mask-position: 16% 40%;
  background-color: #EEE;
  z-index: -1;
}
.page-sidebar-navigation__content .resource-grid-section::before {
  content: none;
}

.resource-grid-section__inner {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.resource-grid-section__header {
  display: flex;
  column-gap: 145px;
}

.resource-grid-section__header-content {
  display: flex;
  flex-direction: column;
  row-gap: 37px;
  margin-bottom: 80px;
  margin-top: auto;
}

.resource-grid-section__header-title {
  font-size: clamp(24px, 3.0136986301vw, 44px);
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

.resource-grid-section__header-description {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.5;
}

.resource-grid-section__header-thumbnail {
  flex-shrink: 0;
  object-fit: contain;
  overflow: hidden;
  border-radius: 20px;
}

.resource-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 100px;
  row-gap: 70px;
}

.resource-grid-section__item {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  max-width: 500px;
  row-gap: 26px;
}

.resource-grid-section__item-title {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-left: 70px;
  position: relative;
  text-transform: uppercase;
}
.resource-grid-section__item-title::before {
  background-image: url("data:image/svg+xml;utf8,<svg width='45' height='40' viewBox='0 0 45 40' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M36.5395 24L29.0403 30.272C28.9327 30.3621 28.8462 30.4701 28.7856 30.5899C28.725 30.7098 28.6916 30.839 28.6872 30.9703C28.6828 31.1016 28.7076 31.2324 28.76 31.3552C28.8125 31.478 28.8917 31.5904 28.993 31.686C29.0944 31.7816 29.2159 31.8585 29.3507 31.9124C29.4855 31.9662 29.6309 31.9959 29.7786 31.9998C29.9263 32.0037 30.0735 31.9817 30.2116 31.9351C30.3498 31.8885 30.4762 31.8181 30.5838 31.728L40.1463 23.728C40.258 23.6345 40.347 23.5217 40.4078 23.3965C40.4686 23.2713 40.5 23.1364 40.5 23C40.5 22.8636 40.4686 22.7287 40.4078 22.6035C40.347 22.4783 40.258 22.3655 40.1463 22.272L30.5838 14.272C30.4762 14.1819 30.3498 14.1115 30.2116 14.0649C30.0735 14.0183 29.9263 13.9963 29.7786 14.0002C29.6309 14.0041 29.4855 14.0338 29.3507 14.0876C29.2159 14.1415 29.0944 14.2184 28.993 14.314C28.8917 14.4096 28.8125 14.522 28.76 14.6448C28.7076 14.7676 28.6828 14.8984 28.6872 15.0297C28.6916 15.161 28.725 15.2902 28.7856 15.4101C28.8462 15.5299 28.9327 15.6379 29.0403 15.728L36.5395 22H11.2495C10.056 22 8.91146 21.5786 8.06754 20.8284C7.22363 20.0783 6.74952 19.0609 6.74952 18V9C6.74952 8.73478 6.631 8.48043 6.42002 8.29289C6.20904 8.10536 5.92289 8 5.62452 8C5.32616 8 5.04 8.10536 4.82903 8.29289C4.61805 8.48043 4.49952 8.73478 4.49952 9V18C4.49952 19.5913 5.21068 21.1174 6.47655 22.2426C7.74242 23.3679 9.45931 24 11.2495 24H36.5395Z' fill='%236049E9'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
}

.resource-grid-section__item-description {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.5;
}

.resource-grid-section__cta {
  color: #6049E9;
  display: inline-flex;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-right: auto;
  position: relative;
  text-decoration: none;
}
.resource-grid-section__cta::after {
  background-image: url("data:image/svg+xml;utf8,<svg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M9.8625 7.0625H0V5.9375H9.8625L5.2125 1.2875L6 0.5L12 6.5L6 12.5L5.2125 11.7125L9.8625 7.0625Z' fill='%236049E9'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 13px;
  pointer-events: none;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform ease-in-out 0.175s;
  width: 12px;
}
.resource-grid-section__cta:focus::after, .resource-grid-section__cta:hover::after {
  transform: rotate(-45deg) translateY(-50%);
}

.page-sidebar-navigation__content .resource-grid-section__header {
  display: grid;
  column-gap: 50px;
  grid-template-columns: repeat(2, 1fr);
}
.page-sidebar-navigation__content .resource-grid-section__grid {
  column-gap: 50px;
}

@media screen and (max-width: 1100px) {
  .resource-grid-section__inner {
    row-gap: 40px;
  }

  .resource-grid-section__header {
    flex-direction: column;
    row-gap: 40px;
  }
  .page-sidebar-navigation__content .resource-grid-section__header {
    display: flex;
    column-gap: 0;
  }

  .resource-grid-section__header-thumbnail {
    margin-inline: auto;
  }

  .resource-grid-section__header-image {
    margin: auto;
  }

  .resource-grid-section__header-content {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .page-sidebar-navigation__content .resource-grid-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 800px) {
  .resource-grid-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .resource-grid-section__item {
    gap: 20px;
  }
}
.section-nav {
  background-color: #F4F4F4;
}
.section-nav.block + .block, .block + .section-nav.block {
  margin-top: 0;
}

.page-content .section-nav.block + .block,
.page-content .block + .section-nav.block {
  padding-top: clamp(90px, 8.904109589vw, 130px);
}

.section-nav__list {
  column-gap: 1px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.section-nav__button {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  background-color: #fff;
  border: none;
  color: #35287C;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.4;
  padding: 24px 40px;
  transition: background-color ease-in-out 0.175s;
}
.section-nav__button.--active {
  background-color: #E9E6FF;
}
.section-nav__button[disabled] {
  cursor: default;
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .section-nav__list {
    column-gap: 8px;
    justify-content: flex-start;
    left: -20px;
    position: relative;
    width: calc(100% + 40px);
  }
  .section-nav__list.--grabbable {
    cursor: grab;
    overflow-x: auto;
  }
  .section-nav__list.--dragging {
    cursor: grabbing;
  }

  .section-nav__button {
    border-radius: 15px;
    text-wrap: nowrap;
  }
  .section-nav__button:first-of-type {
    margin-left: 20px;
  }
  .section-nav__button:last-of-type {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1101px) {
  .section-nav__button:first-of-type {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
  }
  .section-nav__button:last-of-type {
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
  }
}
.sponsors-carousel {
  padding: 60px 0;
}
.sponsors-carousel__container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px;
}
.sponsors-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .sponsors-carousel__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sponsors-carousel__title {
  margin: 0;
  margin-bottom: clamp(20px, 2.7397260274vw, 40px);
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #0A061C;
}
@media screen and (max-width: 650px) {
  .sponsors-carousel__title {
    margin-bottom: 15px;
  }
}
.sponsors-carousel__slider-container {
  position: relative;
  margin-inline: calc(clamp(23px, 2.94vw, 43px) * -1);
}
.sponsors-carousel__slider {
  position: relative;
  overflow: hidden;
  visibility: visible !important;
}
.sponsors-carousel__slider.slick-initialized {
  visibility: visible !important;
}
.sponsors-carousel__slider.slick-initialized .sponsors-carousel__slide {
  display: block !important;
}
.sponsors-carousel__slider .slick-arrow.slick-prev, .sponsors-carousel__slider .slick-arrow.slick-next {
  display: none !important;
}
.sponsors-carousel__slider .slick-track,
.sponsors-carousel__slider .slick-slide {
  display: flex !important;
}
.sponsors-carousel__slider .slick-list {
  overflow: visible !important;
}
.sponsors-carousel__slider .slick-slide {
  height: auto;
}
.sponsors-carousel__slider .slick-slide > div {
  display: flex;
  width: 100%;
}
.sponsors-carousel__slide {
  padding: 0;
  padding-inline: clamp(23px, 2.9452054795vw, 43px);
  box-sizing: border-box;
  display: flex !important;
  /* Important to override Slick's default behavior */
  align-items: center;
  justify-content: center;
  float: none !important;
  /* Override Slick's float */
  height: auto !important;
  /* Ensure proper height */
  outline: none;
}
.sponsors-carousel__sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.175s;
}
.sponsors-carousel__sponsor:hover, .sponsors-carousel__sponsor:focus {
  opacity: 0.8;
}
.sponsors-carousel__logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
.sponsors-carousel .carousel-navigation {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
@media screen and (max-width: 650px) {
  .sponsors-carousel .carousel-navigation {
    padding: 0;
  }
}
.sponsors-carousel .carousel-navigation .carousel-arrow {
  background: transparent;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.sponsors-carousel .carousel-navigation .carousel-arrow:hover {
  transform: scale(1.1);
}
.sponsors-carousel .carousel-navigation .carousel-arrow:focus {
  outline: none;
}
.sponsors-carousel .carousel-navigation .carousel-arrow[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.sponsors-carousel .carousel-navigation .carousel-arrow[disabled]:hover {
  transform: none;
}
.sponsors-carousel .carousel-navigation .carousel-arrow.arrow--prev {
  transform: rotate(180deg);
}
.sponsors-carousel .carousel-navigation .carousel-arrow.arrow--prev:hover {
  transform: rotate(180deg) scale(1.1);
}
.sponsors-carousel .carousel-navigation .carousel-arrow svg {
  width: 28px;
  height: 20px;
}
.sponsors-carousel .carousel-navigation .carousel-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sponsors-carousel .slick-prev,
.sponsors-carousel .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 48px;
  height: 48px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 1;
}
.sponsors-carousel .slick-dots {
  position: relative;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.sponsors-carousel .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}
.sponsors-carousel .slick-dots li.slick-active button {
  background-color: #6049E9;
}

.standards-groups__inner {
  display: flex;
  justify-content: space-between;
}

.standards-groups__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 28%;
  max-width: 336px;
}
.standards-groups__sidebar label {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(10, 6, 28, 0.5);
}
.standards-groups__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.standards-groups__sidebar ul a {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  text-decoration: none;
}
.standards-groups__sidebar ul a:hover {
  text-decoration: underline;
}

.has-sidebar .standards-groups__heading {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(30px, 2.4657534247vw, 36px);
  line-height: 1.3;
}

.standards-groups__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4.4705882353vw, 38px);
  max-width: 936px;
  width: 100%;
  margin: 0 auto;
}

.standards-groups__items {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4.7058823529vw, 40px);
}

.standards-groups__item {
  background-color: #F4F4F4;
  border-radius: 20px;
  text-decoration: none;
}
.standards-groups__item:hover .button--tertiary::after, .standards-groups__item:focus .button--tertiary::after {
  transform: rotate(-45deg);
}

.standards-groups__item-inner {
  display: flex;
  gap: 4.8%;
  padding: clamp(20px, 2.8181818182vw, 31px);
}

.standards-groups__image-wrapper {
  display: flex;
  align-items: flex-start;
  width: 32.5%;
  min-width: 32.5%;
}
.standards-groups__image-wrapper img {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 1100px) {
  .standards-groups__image-wrapper {
    min-width: 200px;
  }
}

.standards-groups__item-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.standards-groups__item-title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(20px, 1.6438356164vw, 24px);
  line-height: 1.4;
}
.standards-groups__item-title:hover {
  text-decoration: underline;
}

.standards-groups__item-description {
  color: #000;
}

@media (max-width: 850px) {
  .standards-groups__inner {
    flex-direction: column;
    gap: clamp(20px, 5.8823529412vw, 50px);
  }

  .standards-groups__sidebar {
    width: 100%;
    max-width: 100%;
  }
  .standards-groups__sidebar ul {
    display: block;
    column-count: 2;
    column-gap: 40px;
  }
  .standards-groups__sidebar li {
    margin-bottom: clamp(14px, 2.08vw, 30px);
  }

  .has-sidebar .standards-groups__content {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .standards-groups__sidebar ul {
    column-count: 1;
  }

  .standards-groups__item-inner {
    flex-direction: column;
    gap: 20px;
  }

  .standards-groups__image-wrapper {
    width: 100%;
  }
}
.summary {
  margin: 60px 0;
}
.summary__wrapper {
  padding-block: clamp(40px, 3.5616438356vw, 52px);
  padding-inline: clamp(30px, 4.2465753425vw, 62px);
  background-color: #34287C;
  border-radius: 20px;
}
.summary__heading {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(16px, 1.3698630137vw, 20px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 16px 0;
  line-height: 1.4;
}
.summary__rule {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  width: 100%;
  margin-bottom: clamp(24px, 2.4657534247vw, 36px);
}
.summary__content {
  color: #fff;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  line-height: 1.4;
}
.summary__content p {
  margin: 0 0 16px 0;
}
.summary__content p:last-child {
  margin-bottom: 0;
}
.summary__content ul, .summary__content ol {
  margin: 0 0 16px 0;
  padding-left: 20px;
}
.summary__content ul:last-child, .summary__content ol:last-child {
  margin-bottom: 0;
}
.summary__content ul li, .summary__content ol li {
  margin-bottom: 8px;
  color: #fff;
}
.summary__content ul li:last-child, .summary__content ol li:last-child {
  margin-bottom: 0;
}
.summary__content ul li::marker, .summary__content ol li::marker {
  color: #fff;
}
.summary__content ul ul, .summary__content ol ol, .summary__content ul ol, .summary__content ol ul {
  margin: 8px 0 0 0;
}
.summary__content a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.175s;
}
.summary__content a:hover {
  color: #fff;
  text-decoration: none;
}
.summary__content a:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 2px;
}
.summary__content a:visited {
  color: #E9E6FF;
}
.summary__content a.external path {
  fill: #fff;
}
.summary__content strong, .summary__content b {
  font-weight: 700;
  color: #fff;
}
.summary__content em, .summary__content i {
  font-style: italic;
  color: #fff;
}
.summary__content code {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 0.9em;
}
.summary__content blockquote {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding-left: 16px;
  margin: 16px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.summary__content a:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (prefers-contrast: high) {
  .summary {
    background-color: #000;
    border: 2px solid #fff;
  }
  .summary__rule {
    background-color: #fff;
  }
  .summary__content a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }
}

.tabbed-highlighted-content {
  background-color: #F4F4F4;
}

.tabbed-highlighted-content__content {
  display: flex;
  flex-direction: column;
}

.tabbed-highlighted-content__select-wrapper {
  display: none;
}

.tabbed-highlighted-content__tabs-nav {
  column-gap: 1px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.home .tabbed-highlighted-content__tabs-nav {
  display: none;
}

.tabbed-highlighted-content__tab-button {
  font-size: clamp(16px, 1.2328767123vw, 18px);
  background-color: #fff;
  border: none;
  color: #35287C;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.4;
  padding: 24px 40px;
  transition: background-color ease-in-out 0.175s;
}
.tabbed-highlighted-content__tab-button.--active {
  background-color: #E9E6FF;
}

.tabbed-highlighted-content__tab-panel {
  display: none;
}
.tabbed-highlighted-content__tab-panel.--active {
  display: flex;
}

.tabbed-highlighted-content__highlight {
  border-radius: 30px;
  max-width: 576px;
  overflow: hidden;
}

.tabbed-highlighted-content__highlight-image {
  position: relative;
}
.tabbed-highlighted-content__highlight-image::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 56.34%);
  content: "";
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.tabbed-highlighted-content__highlight-title {
  font-size: clamp(24px, 2.1917808219vw, 32px);
  color: #fff;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
  left: 48px;
  position: absolute;
  top: 56px;
  z-index: 2;
  max-width: calc(100% - 96px);
}

.tabbed-highlighted-content__highlight-link {
  background-color: #fff;
  transition: background-color ease-in-out 0.175s;
  display: block;
  text-decoration: none;
  position: relative;
  padding: 26px 75px 30px 48px;
}
.tabbed-highlighted-content__highlight-link::after {
  background: url('data:image/svg+xml;utf8,<svg width="36" height="26" viewBox="0 0 36 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.2622 26L20.3197 24.1848L30.5531 14.3203H0V11.7147H30.5531L20.2834 1.81458L22.2253 0L35.7291 13.0172L22.2622 26Z" fill="%236049E9"/></svg>') no-repeat center center;
  background-size: contain;
  bottom: 24px;
  content: "";
  height: 26px;
  pointer-events: none;
  position: absolute;
  right: 27px;
  transition: transform 0.3s ease, filter 0.3s ease;
  width: 36px;
}
.tabbed-highlighted-content__highlight-link:hover, .tabbed-highlighted-content__highlight-link:focus {
  background-color: #6049E9;
}
.tabbed-highlighted-content__highlight-link:hover::after, .tabbed-highlighted-content__highlight-link:focus::after {
  background: url('data:image/svg+xml;utf8,<svg width="36" height="26" viewBox="0 0 36 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.2622 26L20.3197 24.1848L30.5531 14.3203H0V11.7147H30.5531L20.2834 1.81458L22.2253 0L35.7291 13.0172L22.2622 26Z" fill="white"/></svg>') no-repeat center center;
  background-size: contain;
  transform: rotate(-45deg);
}
.tabbed-highlighted-content__highlight-link:hover .tabbed-highlighted-content__list-item-title,
.tabbed-highlighted-content__highlight-link:hover .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__highlight-link:hover .tabbed-highlighted-content__list-item-date, .tabbed-highlighted-content__highlight-link:focus .tabbed-highlighted-content__list-item-title,
.tabbed-highlighted-content__highlight-link:focus .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__highlight-link:focus .tabbed-highlighted-content__list-item-date {
  color: #fff;
}
.tabbed-highlighted-content__highlight-link:hover .tabbed-highlighted-content__highlight-category, .tabbed-highlighted-content__highlight-link:hover .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__highlight-link:hover .tabbed-highlighted-content__highlight-date,
.tabbed-highlighted-content__highlight-link:hover .tabbed-highlighted-content__list-item-date, .tabbed-highlighted-content__highlight-link:focus .tabbed-highlighted-content__highlight-category, .tabbed-highlighted-content__highlight-link:focus .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__highlight-link:focus .tabbed-highlighted-content__highlight-date,
.tabbed-highlighted-content__highlight-link:focus .tabbed-highlighted-content__list-item-date {
  color: #fff;
}

.tabbed-highlighted-content__highlight-content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.tabbed-highlighted-content__highlight-category, .tabbed-highlighted-content__list-item-category {
  color: #35287C;
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.tabbed-highlighted-content__highlight-date, .tabbed-highlighted-content__list-item-date {
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.tabbed-highlighted-content__highlight .tabbed-highlighted-content__highlight-date, .tabbed-highlighted-content__highlight .tabbed-highlighted-content__list-item-date {
  font-size: 18px;
}

.tabbed-highlighted-content__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-basis: 0;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  row-gap: 16px;
}

.tabbed-highlighted-content__list-item.--all-link {
  column-gap: 14px;
  display: flex;
  flex-direction: row;
}
.tabbed-highlighted-content__list-item.--all-link .tabbed-highlighted-content__list-item-link {
  width: 100%;
}

.tabbed-highlighted-content__list-item-content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.tabbed-highlighted-content__list-item-content-row {
  display: flex;
}

.tabbed-highlighted-content__list-item-link {
  background-color: #fff;
  transition: background-color ease-in-out 0.175s;
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
}
.tabbed-highlighted-content__list-item-link::after {
  background: url('data:image/svg+xml;utf8,<svg width="36" height="26" viewBox="0 0 36 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.2622 26L20.3197 24.1848L30.5531 14.3203H0V11.7147H30.5531L20.2834 1.81458L22.2253 0L35.7291 13.0172L22.2622 26Z" fill="%236049E9"/></svg>') no-repeat center center;
  background-size: contain;
  bottom: 24px;
  content: "";
  height: 26px;
  pointer-events: none;
  position: absolute;
  right: 27px;
  transition: transform 0.3s ease, filter 0.3s ease;
  width: 36px;
}
.tabbed-highlighted-content__list-item-link:hover, .tabbed-highlighted-content__list-item-link:focus {
  background-color: #6049E9;
}
.tabbed-highlighted-content__list-item-link:hover::after, .tabbed-highlighted-content__list-item-link:focus::after {
  background: url('data:image/svg+xml;utf8,<svg width="36" height="26" viewBox="0 0 36 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.2622 26L20.3197 24.1848L30.5531 14.3203H0V11.7147H30.5531L20.2834 1.81458L22.2253 0L35.7291 13.0172L22.2622 26Z" fill="white"/></svg>') no-repeat center center;
  background-size: contain;
  transform: rotate(-45deg);
}
.tabbed-highlighted-content__list-item-link:hover .tabbed-highlighted-content__list-item-title,
.tabbed-highlighted-content__list-item-link:hover .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link:hover .tabbed-highlighted-content__list-item-date, .tabbed-highlighted-content__list-item-link:focus .tabbed-highlighted-content__list-item-title,
.tabbed-highlighted-content__list-item-link:focus .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link:focus .tabbed-highlighted-content__list-item-date {
  color: #fff;
}
.tabbed-highlighted-content__list-item-link:hover .tabbed-highlighted-content__highlight-category, .tabbed-highlighted-content__list-item-link:hover .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link:hover .tabbed-highlighted-content__highlight-date,
.tabbed-highlighted-content__list-item-link:hover .tabbed-highlighted-content__list-item-date, .tabbed-highlighted-content__list-item-link:focus .tabbed-highlighted-content__highlight-category, .tabbed-highlighted-content__list-item-link:focus .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link:focus .tabbed-highlighted-content__highlight-date,
.tabbed-highlighted-content__list-item-link:focus .tabbed-highlighted-content__list-item-date {
  color: #fff;
}

.tabbed-highlighted-content__list-item-link-all {
  background-color: #6049E9;
  color: #fff;
  display: block;
  text-decoration: none;
  position: relative;
  align-items: flex-end;
  display: flex;
  transition: background-color ease-in-out 0.175s;
}
.tabbed-highlighted-content__list-item-link-all::after {
  background: url('data:image/svg+xml;utf8,<svg width="36" height="26" viewBox="0 0 36 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.2622 26L20.3197 24.1848L30.5531 14.3203H0V11.7147H30.5531L20.2834 1.81458L22.2253 0L35.7291 13.0172L22.2622 26Z" fill="white"/></svg>') no-repeat center center;
  background-size: contain;
  bottom: 24px;
  content: "";
  height: 26px;
  pointer-events: none;
  position: absolute;
  right: 27px;
  transition: transform 0.3s ease, filter 0.3s ease;
  width: 36px;
}
.tabbed-highlighted-content__list-item-link-all:hover, .tabbed-highlighted-content__list-item-link-all:focus {
  background-color: #8F89B5;
  color: #fff;
}
.tabbed-highlighted-content__list-item-link-all:hover::after, .tabbed-highlighted-content__list-item-link-all:focus::after {
  background: url('data:image/svg+xml;utf8,<svg width="36" height="26" viewBox="0 0 36 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.2622 26L20.3197 24.1848L30.5531 14.3203H0V11.7147H30.5531L20.2834 1.81458L22.2253 0L35.7291 13.0172L22.2622 26Z" fill="white"/></svg>') no-repeat center center;
  background-size: contain;
  transform: rotate(-45deg);
}
.tabbed-highlighted-content__list-item-link-all:hover .tabbed-highlighted-content__list-item-title,
.tabbed-highlighted-content__list-item-link-all:hover .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link-all:hover .tabbed-highlighted-content__list-item-date, .tabbed-highlighted-content__list-item-link-all:focus .tabbed-highlighted-content__list-item-title,
.tabbed-highlighted-content__list-item-link-all:focus .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link-all:focus .tabbed-highlighted-content__list-item-date {
  color: #fff;
}
.tabbed-highlighted-content__list-item-link-all:hover .tabbed-highlighted-content__highlight-category, .tabbed-highlighted-content__list-item-link-all:hover .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link-all:hover .tabbed-highlighted-content__highlight-date,
.tabbed-highlighted-content__list-item-link-all:hover .tabbed-highlighted-content__list-item-date, .tabbed-highlighted-content__list-item-link-all:focus .tabbed-highlighted-content__highlight-category, .tabbed-highlighted-content__list-item-link-all:focus .tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-link-all:focus .tabbed-highlighted-content__highlight-date,
.tabbed-highlighted-content__list-item-link-all:focus .tabbed-highlighted-content__list-item-date {
  color: #fff;
}
.tabbed-highlighted-content__list-item-link-all:visited {
  color: #fff;
}

.tabbed-highlighted-content__list-item-link,
.tabbed-highlighted-content__list-item-link-all {
  border-radius: 30px;
  padding: 29px 80px 24px 48px;
}

.tabbed-highlighted-content__list-item-title {
  font-size: clamp(18px, 1.3698630137vw, 20px);
  color: #000;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.4;
}

.tabbed-highlighted-content__list-item-title,
.tabbed-highlighted-content__list-item-category,
.tabbed-highlighted-content__list-item-date {
  transition: color ease-in-out 0.175s;
}

@media screen and (max-width: 1100px) {
  .tabbed-highlighted-content__content {
    row-gap: 45px;
  }

  .tabbed-highlighted-content__select-wrapper {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    color: #35287C;
    cursor: pointer;
    display: block;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    position: relative;
    transition: background-color ease-in-out 0.175s;
  }
  .tabbed-highlighted-content__select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 17px;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg width="17" height="10" viewBox="0 0 17 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.1924 0.599835L16.5 1.9087L9.3734 9.03777C9.25921 9.15269 9.12342 9.24388 8.97384 9.30612C8.82426 9.36835 8.66386 9.40039 8.50185 9.40039C8.33984 9.40039 8.17944 9.36835 8.02986 9.30612C7.88029 9.24388 7.74449 9.15269 7.6303 9.03777L0.5 1.9087L1.80763 0.601069L8.5 7.2922L15.1924 0.599835Z" fill="%236049E9"/></svg>') no-repeat center center;
    background-size: contain;
    pointer-events: none;
  }
  .tabbed-highlighted-content__select-wrapper:focus {
    background-color: #E9E6FF;
  }

  .tabbed-highlighted-content__select {
    font-size: clamp(16px, 1.2328767123vw, 18px);
    appearance: none;
    border: none;
    color: #35287C;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.4;
    padding: 24px 40px;
    width: 100%;
  }

  .tabbed-highlighted-content__tab-panel.--active {
    flex-direction: column;
    row-gap: 24px;
  }

  .tabbed-highlighted-content__list {
    order: 2;
  }

  .tabbed-highlighted-content__list-item {
    flex-direction: column;
    row-gap: 24px;
  }
  .tabbed-highlighted-content__list-item.--all-link {
    row-gap: 24px;
    flex-direction: column;
  }

  .tabbed-highlighted-content__list-item-link-all {
    margin: auto;
  }

  .tabbed-highlighted-content__highlight {
    margin: auto;
    order: 1;
  }
}
@media screen and (max-width: 800px) {
  .tabbed-highlighted-content__tabs-nav {
    column-gap: 8px;
    justify-content: flex-start;
    left: -20px;
    padding-bottom: 14px;
    position: relative;
    width: calc(100% + 40px);
  }
  .tabbed-highlighted-content__tabs-nav.--grabbable {
    cursor: grab;
    overflow-x: auto;
  }
  .tabbed-highlighted-content__tabs-nav.--dragging {
    cursor: grabbing;
  }

  .tabbed-highlighted-content__tab-button {
    border-radius: 15px;
    text-wrap: nowrap;
  }
  .tabbed-highlighted-content__tab-button:first-of-type {
    margin-left: 20px;
  }
  .tabbed-highlighted-content__tab-button:last-of-type {
    margin-right: 20px;
  }

  .tabbed-highlighted-content__list-item-content-row {
    flex-direction: column;
    row-gap: 10px;
  }
}
@media screen and (min-width: 801px) {
  .tabbed-highlighted-content__tabs-nav {
    display: flex;
  }

  .home .tabbed-highlighted-content__tabs-nav {
    display: none;
  }

  .tabbed-highlighted-content__list-item-content-row {
    column-gap: 16px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1101px) {
  .tabbed-highlighted-content__select-wrapper {
    display: none;
  }

  .tabbed-highlighted-content__content {
    row-gap: 59px;
  }

  .tabbed-highlighted-content__select-wrapper {
    display: none;
  }

  .tabbed-highlighted-content__tab-panel.--active {
    column-gap: 24px;
    flex-direction: row;
  }

  .tabbed-highlighted-content__tab-button:first-of-type {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
  }
  .tabbed-highlighted-content__tab-button:last-of-type {
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
  }

  .tabbed-highlighted-content__list-item.--all-link {
    column-gap: 14px;
    flex-direction: row;
  }

  .tabbed-highlighted-content__list-item-link-all {
    flex: 0 0 clamp(220px, 18.75vw, 240px);
    max-width: 240px;
  }

  .tabbed-highlighted-content__highlight {
    flex: 0 0 576px;
    margin-bottom: auto;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1250px) {
  .--all-link .tabbed-highlighted-content__list-item-content-row {
    flex-direction: column;
  }
}
.tablepress-block__container {
  display: flex;
  flex-direction: column;
}

.tablepress-block__shortcode {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
}

.tablepress-block__shortcode-inner {
  display: flex;
}
@media (max-width: 800px) {
  .tablepress-block__shortcode-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-block: 1px;
    padding-inline: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

.tablepress-block__shortcode .tablepress-table-name {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(20px, 1.6438356164vw, 24px);
  line-height: 1.4;
}
.tablepress-block__shortcode .dt-container {
  margin-bottom: 0;
}
.tablepress-block__shortcode .dt-container .dt-layout-cell {
  padding: 0;
}
.tablepress-block__shortcode .dt-layout-row:has(.dt-layout-start) {
  margin-bottom: 30px;
}
.tablepress-block__shortcode .dt-column-title {
  color: #000;
  font-weight: 600;
}
@media (max-width: 800px) {
  .tablepress-block__shortcode .tablepress {
    white-space: nowrap;
  }
}
.tablepress-block__shortcode .tablepress > :where(thead, tfoot) > tr {
  vertical-align: middle;
  word-break: normal;
}
.tablepress-block__shortcode .tablepress > :where(thead, tfoot) > tr > * {
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
}
.tablepress-block__shortcode .tablepress > :where(thead, tfoot) > tr.row-1 {
  background-color: #F4F4F4;
}
.tablepress-block__shortcode .tablepress > :where(thead, tfoot) > tr.row-1 th:first-of-type {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.tablepress-block__shortcode .tablepress > :where(thead, tfoot) > tr.row-1 th:last-of-type {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.tablepress-block__shortcode .tablepress > :where(thead) + tbody > :where(:not(.child)) > *,
.tablepress-block__shortcode .tablepress > tbody > * ~ :where(:not(.child)) > *,
.tablepress-block__shortcode .tablepress > tfoot > :where(:first-child) > * {
  border-top: none;
}
.tablepress-block__shortcode .tablepress > :where(thead, tbody) > tr > * {
  padding-block: clamp(20px, 1.9178082192vw, 28px);
  padding-inline: clamp(20px, 3.4246575342vw, 50px);
}
.tablepress-block__shortcode .tablepress > :where(thead, tbody) > tr th,
.tablepress-block__shortcode .tablepress > :where(thead, tbody) > tr td {
  font-size: 16px;
}
.tablepress-block__shortcode .tablepress > :where(tbody) > tr:nth-of-type(n+2) {
  border-top: 1px solid #0A061C;
}
.tablepress-block__shortcode .tablepress > :where(tbody) > tr td {
  color: #0A061C;
}
.tablepress-block__shortcode .tablepress > :where(tbody) > tr td a {
  display: inline-flex;
  margin-right: auto;
}

.text-image-contained .l-container--xlarge {
  max-width: 1213px;
}

.text-image-contained__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(40px, 9.5890410959vw, 140px);
}
.right .text-image-contained__wrapper {
  flex-direction: row-reverse;
}

.text-image-contained--top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-image-contained__eyebrow {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-image-contained__title {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(20px, 1.6438356164vw, 24px);
  line-height: 1.4;
}

.text-image-contained__description {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
}

.text-image-contained__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  max-width: 58.82%;
}
.free_shape .text-image-contained__content {
  max-width: 49.19%;
}

.text-image-contained__downloads {
  margin-top: clamp(1px, 1vw, 8px);
}

.text-image-contained__cta-wrapper {
  margin-top: clamp(1px, 1.25vw, 10px);
}

.text-image-contained__image-wrapper {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  height: auto;
}
.text-image-contained__image-wrapper.free_shape {
  max-width: 38.87%;
}
.text-image-contained__image-wrapper.square {
  max-width: 25.57%;
}
.text-image-contained__image-wrapper img {
  object-fit: contain;
}

.text-image-contained__downloads-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

@media (max-width: 650px) {
  .text-image-contained__wrapper,
.right .text-image-contained__wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .no-image .text-image-contained__wrapper,
.no-image .right .text-image-contained__wrapper {
    flex-direction: column;
  }

  .text-image-contained__content {
    width: 100%;
    max-width: 100%;
  }
  .free_shape .text-image-contained__content, .square .text-image-contained__content {
    width: 100%;
    max-width: 100%;
  }

  .text-image-contained__image-wrapper.free_shape, .text-image-contained__image-wrapper.square {
    max-width: 100%;
    width: 100%;
  }
  .text-image-contained__image-wrapper.free_shape img, .text-image-contained__image-wrapper.square img {
    width: 100%;
  }
}
.text-image-full-width {
  position: relative;
  display: flex;
  min-height: clamp(455px, 47.602739726vw, 695px);
  background-color: #F4F4F4;
}
.text-image-full-width::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: url("/wp-content/themes/apta/images/grid-pattern-tile.svg");
  mask-size: 833px auto;
  mask-position: 16% 40%;
  background-color: rgba(122, 123, 124, 0.15);
}
.text-image-full-width.fullscreen {
  padding-block: clamp(90px, 7.8767123288vw, 115px);
}
.text-image-full-width.fullscreen + .text-image-full-width {
  padding-top: 0;
}
.text-image-full-width .l-container--xlarge {
  position: relative;
  display: flex;
  align-items: center;
}

.text-image-full-width__inner {
  display: flex;
  width: 100%;
}
.left .text-image-full-width__inner {
  justify-content: flex-end;
}

.text-image-full-width__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 40.39%;
}

.text-image-full-width__powered-by {
  display: flex;
  align-items: center;
  gap: 16px;
}
.text-image-full-width__powered-by span {
  white-space: nowrap;
}
.text-image-full-width__powered-by img {
  max-width: 155px;
}

.text-image-full-width__cta + .text-image-full-width__description {
  margin-top: 16px;
}

.text-image-full-width__description + .text-image-full-width__cta {
  margin-top: 8px;
}

.text-image-full-width__image-container {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.text-image-full-width__image-container .l-container--max {
  display: flex;
  align-items: center;
  padding: 0;
}

.text-image-full-width__image-inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.left .text-image-full-width__image-inner {
  justify-content: flex-start;
}
.right .text-image-full-width__image-inner {
  justify-content: flex-end;
}

.text-image-full-width__image {
  display: flex;
  align-items: center;
  width: 55%;
  max-width: 865px;
  max-height: 465px;
  overflow: hidden;
  border-radius: 20px;
}
.right .text-image-full-width__image {
  margin-right: -20px;
}
.left .text-image-full-width__image {
  margin-left: -20px;
}
.text-image-full-width__image img {
  width: 100%;
}

@media (max-width: 900px) {
  .text-image-full-width {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .left .text-image-full-width__inner, .right .text-image-full-width__inner {
    justify-content: center;
  }

  .text-image-full-width__content {
    width: 100%;
    max-width: 670px;
  }

  .text-image-full-width__image-container {
    position: relative;
    top: auto;
    transform: none;
  }

  .text-image-full-width__content {
    width: 100%;
  }

  .text-image-full-width__image {
    width: 90%;
  }
}
.ticker {
  background-color: #E7E7E7;
  overflow: hidden;
  width: 100%;
}
.ticker__container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: ticker-scroll 20s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation-duration: 0s;
  }
}
.ticker__track:hover {
  animation-play-state: paused;
}
.ticker__content {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker__item {
  display: inline-block;
  padding: 14px 20px 18px;
  color: #6049E9;
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.two-column-text-wysiwyg-block {
  margin-top: clamp(40px, 5.4794520548vw, 80px);
}
.two-column-text-wysiwyg-block__inner {
  padding-top: 24px;
  border-top: 1px solid #0A061C;
}
.two-column-text-wysiwyg-block__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .two-column-text-wysiwyg-block__content {
    flex-direction: column;
    gap: 24px;
  }
}
.two-column-text-wysiwyg-block__left {
  flex: 0 0 38%;
}
@media (max-width: 1024px) {
  .two-column-text-wysiwyg-block__left {
    flex: none;
  }
}
.two-column-text-wysiwyg-block__right {
  flex: 1;
}
@media (max-width: 1024px) {
  .two-column-text-wysiwyg-block__right {
    flex: none;
  }
}
.two-column-text-wysiwyg-block__heading {
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #0A061C;
  margin: 0;
  font-style: normal;
}
.two-column-text-wysiwyg-block__wysiwyg .embed {
  position: relative;
  aspect-ratio: 16/9;
}
.two-column-text-wysiwyg-block__wysiwyg .embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.two-column-text-wysiwyg-block__wysiwyg img.size-full, .two-column-text-wysiwyg-block__wysiwyg img.size-large {
  width: 100%;
  height: auto;
}

.upcoming-events {
  background-color: #E7E7E7;
}

.upcoming-events__inner {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.upcoming-events__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4.6vw, 46px);
}

.upcoming-events__title {
  font-size: clamp(30px, 2.4657534247vw, 36px);
  color: #0A061C;
  display: flex;
  justify-content: center;
}

.upcoming-events__dynamic-header {
  margin-top: 23px;
  font-size: 16px;
  color: #35287C;
  display: flex;
  justify-content: center;
}
.upcoming-events__dynamic-header p {
  margin: 0;
}
.upcoming-events__dynamic-header strong {
  color: #0A061C;
}

.upcoming-events__events-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.upcoming-events__no-events {
  display: flex;
  justify-content: center;
}

.upcoming-events__view-all-wrapper {
  display: flex;
  justify-content: center;
}

.upcoming-events__view-all-pill {
  display: inline-block;
  border: 1px solid #34287C;
  border-radius: 20px;
  padding: 12px 28px;
  font-size: 16px;
  line-height: 1;
  color: #34287C;
  background-color: transparent;
  text-decoration: none;
  transition: background-color 0.175s ease-out, color 0.175s ease-out;
}
.upcoming-events__view-all-pill:hover {
  background-color: #6049E9;
  color: #fff;
  border-color: #6049E9;
}

.upcoming-events__archive {
  border-top: 1px solid #E7E7E7;
  text-align: center;
  margin-top: 44px;
}

.upcoming-events__archive-title {
  font-family: "Space Grotesk", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.upcoming-events__archive-link a {
  background-color: transparent;
}
.upcoming-events__archive-link a:hover {
  background-color: #6049E9;
  color: #fff;
}

.event-card {
  background-color: #fff;
  border-radius: 20px;
  transition: all 0.175s;
}

.event-card__grid {
  position: relative;
  padding: 30px;
}

.event-card__grid--inner {
  display: flex;
  align-items: center;
  gap: 4%;
}

.event-card__media {
  display: flex;
  width: clamp(148px, 4.5vw + 112px, 185px);
  border-radius: 20px;
  overflow: hidden;
}
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.175s;
}
.event-card__media img:hover {
  transform: scale(1.05);
}

.event-card__details {
  flex: 1 0 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding-block: 6px;
  margin-right: clamp(180px, 15.2054794521vw, 222px);
}
.no-registration .event-card__details {
  margin-right: 0;
}
.no-media .event-card__details {
  margin-left: clamp(1px, 8.2191780822vw, 120px);
}

.event-card__datetime {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 3px;
  font-size: 18px;
  color: #000;
}
.event-card__datetime .event-card__date {
  font-weight: 700;
}
.event-card__datetime .event-card__time span {
  text-transform: uppercase;
}

.event-card__location {
  font-family: "Space Mono", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 18px;
  color: #35287C;
}

.event-card__title {
  font-size: clamp(18px, 1.5068493151vw, 22px);
}
.event-card__title a {
  color: #6049E9;
  text-decoration: none;
}
.event-card__title a:hover {
  color: #34287C;
}

.event-card__excerpt {
  color: #7a7b7c;
  margin-bottom: 0;
}

.event-card__cta {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
.event-card__cta:has(a) {
  display: block;
}

.event-card__cta--inner {
  position: relative;
  padding-top: 22px;
  padding-left: 22px;
  background-color: #E7E7E7;
  border-top-left-radius: 20px;
}
.event-card__cta--inner::before, .event-card__cta--inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-bottom-right-radius: 20px;
  box-shadow: 20px 0 0 0 #E7E7E7;
}
.event-card__cta--inner::before {
  bottom: 0;
  left: -40px;
}
.event-card__cta--inner::after {
  top: -40px;
  right: 0;
}

.event-card__button {
  position: relative;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Inter", "Adobe Garamond Pro", Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
  font-size: 1.8em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 20px;
  color: #fff;
  background-color: #6049E9;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(96, 73, 233, 0);
  transition: background-color 0.175s ease-in-out, box-shadow 0.175s ease-in-out;
  display: flex;
  gap: clamp(16px, 1.6438356164vw, 24px);
  padding-block: clamp(16px, 1.5068493151vw, 22px);
  padding-inline: clamp(22px, 2.4657534247vw, 36px);
  font-size: clamp(16px, 1.3698630137vw, 20px);
  font-weight: 600;
  border-radius: 20px;
}
.event-card__button:hover, .event-card__button:active, .event-card__button:focus {
  text-decoration: none;
}
.event-card__button::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("/wp-content/themes/apta/images/arrow-right.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.event-card__button:hover, .event-card__button:focus, .event-card__button:active, .event-card__button:visited {
  text-decoration: none;
  color: #fff;
}
.event-card__button:hover::after, .event-card__button:active::after {
  transform: rotate(-45deg);
}
.event-card__button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.event-card__button:active {
  background-color: #35287C;
}
.event-card__button:active:focus {
  box-shadow: none;
}
.event-card__button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
  outline: none;
  pointer-events: none;
}
.event-card__button[disabled]::after {
  background-color: #0A061C;
}
.--dark-bg .event-card__button {
  background-color: #fff;
  color: #6049E9;
}
.--dark-bg .event-card__button::after {
  background-color: #6049E9;
}
.--dark-bg .event-card__button:hover {
  color: #6049E9;
}
.--dark-bg .event-card__button:active {
  color: #fff;
  background-color: #6049E9;
}
.--dark-bg .event-card__button:active::after {
  background-color: #fff;
}
.--dark-bg .event-card__button:active:focus {
  box-shadow: none;
}
.--dark-bg .event-card__button:focus {
  box-shadow: 0 0 40px rgba(96, 73, 233, 0.4);
}
.--dark-bg .event-card__button[disabled] {
  background-color: #E7E7E7;
  color: #0A061C;
}
.--dark-bg .event-card__button[disabled]::after {
  background-color: #0A061C;
}
.event-card__button.external {
  gap: 24px;
}
.event-card__button::after {
  content: none;
}
.event-card__button label {
  pointer-events: none;
  font-size: 20px;
  line-height: 1.4;
}
.event-card__button svg {
  width: clamp(24px, 2.397260274vw, 35px);
  pointer-events: none;
  transform: rotate(0deg);
  transition: transform 0.175s ease-in-out;
}
.event-card__button svg.external-icon {
  display: none;
}
.event-card__button svg path {
  fill: #fff;
}
.event-card__button:hover svg, .event-card__button:active svg {
  transform: rotate(-45deg);
}

.event-card__button--muted {
  background-color: #E7E7E7;
  color: #0A061C;
}
.event-card__button--muted:hover {
  background-color: #cecece;
}

.event-card__registration-pending {
  font-size: 14px;
  font-style: italic;
  color: #7a7b7c;
  text-align: center;
}

@media (max-width: 1024px) {
  .event-card__grid--inner {
    gap: 31px;
  }
}
@media (max-width: 800px) {
  .event-card__grid--inner {
    padding-bottom: 64px;
    gap: clamp(20px, 3.875vw, 31px);
  }

  .event-card__details {
    width: calc(100% - 285px);
    margin-right: 0;
  }

  .no-registration .event-card__grid--inner {
    padding-bottom: 0;
  }
  .no-registration .event-card__details {
    width: 100%;
  }

  .no-media .event-card__details {
    margin-left: 0;
  }

  .event-card__media {
    width: 100%;
    max-width: 285px;
  }
}
@media (max-width: 600px) {
  .event-card__grid--inner {
    flex-direction: column;
  }

  .event-card__details {
    width: 100%;
  }
}
.winner-awards-accordions.fullscreen {
  background-color: #F4F4F4;
}
.winner-awards-accordions.fullscreen .winner-awards-accordions__winner-icon,
.winner-awards-accordions.fullscreen .winner-awards-accordions__winner-summary {
  background-color: #fff;
}
.winner-awards-accordions.fullscreen .winner-awards-accordions__winner-item {
  background-color: rgba(255, 255, 255, 0);
}
.winner-awards-accordions.fullscreen .winner-awards-accordions__winner-item.active {
  background-color: white;
}
.winner-awards-accordions .pagination__pages li.pagination__page-previous a svg {
  transform: none;
}
.page-sidebar-navigation__content .winner-awards-accordions.fullscreen {
  border-radius: 6px;
}
.page-sidebar-navigation__content .winner-awards-accordions.fullscreen .winner-awards-accordions__inner {
  padding-inline: 30px;
}

.winner-awards-accordions__header {
  display: flex;
  margin-bottom: 40px;
}
.winner-awards-accordions__header h2 {
  margin-right: auto;
}

.winner-awards-accordions__accordion-control {
  margin-left: auto;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.winner-awards-accordions__winners-list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.6363636364vw, 40px);
}

.winner-awards-accordions__winner-item {
  border-radius: 20px;
  background-color: rgba(244, 244, 244, 0);
  transition: background-color 0.1s ease-in-out;
}
.winner-awards-accordions__winner-item.active {
  background-color: #f4f4f4;
}

.winner-awards-accordions__winner-header {
  display: flex;
  gap: 14px;
}

.winner-awards-accordions__winner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(60px, 10.9090909091vw, 120px);
  background: #F4F4F4;
  border-radius: 20px;
}
.page-sidebar-navigation__content .winner-awards-accordions__winner-icon {
  min-width: clamp(60px, 11.6438356164vw, 170px);
}
.page-sidebar-navigation__content .winner-awards-accordions__winner-icon svg {
  width: clamp(40px, 4.1095890411vw, 60px);
}
.winner-awards-accordions__winner-icon svg {
  width: clamp(40px, 5.4545454545vw, 60px);
  transition: width 0.3s ease-in-out;
}
.active .winner-awards-accordions__winner-icon svg {
  width: 66px;
  width: clamp(44px, 6vw, 66px);
}

.winner-awards-accordions__winner-summary {
  display: flex;
  justify-content: space-between;
  gap: clamp(14px, 1.3698630137vw, 20px);
  gap: 20px;
  flex-grow: 1;
  padding-block: clamp(20px, 2.1917808219vw, 32px);
  padding-inline: clamp(20px, 3.0821917808vw, 45px);
  background: #F4F4F4;
  border-radius: 20px;
}
.page-sidebar-navigation__content .winner-awards-accordions__winner-summary {
  gap: clamp(14px, 1.3698630137vw, 20px);
}

.winner-awards-accordions__winner-summary--wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-grow: 1;
}

.winner-awards-accordions__winner-summary--group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex-grow: 1;
}

.winner-awards-accordions__winner-title {
  font-size: clamp(20px, 2.1818181818vw, 24px);
  font-weight: 700;
}

.winner-awards-accordions__winner-organization {
  font-size: clamp(18px, 1.8181818182vw, 20px);
  font-weight: 700;
  color: #6049E9;
}

.winner-awards-accordions__categories {
  font-size: 16px;
  color: #7a7b7c;
}

.winner-awards-accordions__winner-file {
  margin-right: 20px;
}

.winner-awards-accordions__winner-content {
  padding-top: clamp(20px, 2.7397260274vw, 40px);
  padding-bottom: clamp(40px, 5.4794520548vw, 80px);
}

.winner-awards-accordions__winner-full-content {
  padding-left: calc(clamp(100px, 11.64vw, 120px) + 14px + clamp(30px, 3.08vw, 45px));
  padding-right: 30px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.active .winner-awards-accordions__winner-full-content {
  opacity: 1;
}
.winner-awards-accordions__winner-full-content .l-container--reading {
  margin-left: 0;
  padding-left: 0;
}
@media (max-width: 1024px) {
  .winner-awards-accordions__winner-full-content {
    padding-left: 30px;
  }
}

.winner-awards-accordions__winner-toggle {
  margin-block: auto;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.winner-awards-accordions__winner-toggle svg {
  min-width: 24px;
}

.winner-awards-accordions__pagination {
  margin-top: clamp(50px, 7.2727272727vw, 80px);
}

.winner-awards-accordions__winner-item.--hidden {
  display: none;
}

.wysiwyg-block .embed {
  position: relative;
  aspect-ratio: 16/9;
}
.wysiwyg-block .embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-sidebar-navigation__content .wysiwyg-block .embed iframe {
  width: 100% !important;
  height: 100% !important;
}

.wysiwyg-block img.size-full, .wysiwyg-block img.size-large {
  max-width: 100%;
  height: auto;
}

/* Overrides, finally */
/**
 * This is an emergency override - avoid unless you have to.
 * this file gets loaded last of all the theme SASS.
 */
/* Slick CSS - Inline essential styles to avoid 404 errors */
/* Basic Slick styling - this is the minimal required CSS for Slick to work */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.whitelist-domain-link svg {
  display: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
/*# sourceMappingURL=sourcemaps/main.css.map */
