:root {
  --brand-color: #DA365F;
  --brand-secondary-color: #4E49C7;
  --brand-background-color: #ffffff;
  --gray-light: #fafafa;
  --gray-dark: #2c3647;
  --headline_font_family: "Lato", sans-serif;
  --headline_font_style: 900;
  --paragraph_font_family: "PT Sans", sans-serif;
  --paragraph_body_font_style: 400;
  --paragraph_preamble_font_style: 700;
  --miscellaneous_font_family: "Lato", sans-serif;
  --miscellaneous_font_style: 400;
}

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

.sr-only {
  border: 0;
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

html {
  height: 100%;
}

body {
  background-color: #fbfbfb;
  color: #444444;
  display: flex;
  flex-direction: column;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  font-size: 16px;
  font-weight: 400;
  font-weight: var(--miscellaneous_font_style);
  line-height: 24px;
  margin: 0;
  min-height: 100%;
  overscroll-behavior: none;
}
body.hosted__body {
  height: auto;
  min-height: auto;
}
body > main {
  flex-grow: 1;
  padding-top: 3rem;
  position: relative;
}
body .container-wide,
body .container-slim {
  margin: 0 auto 2rem;
  max-width: 1200px;
  padding-bottom: 2rem;
  width: calc(100% - 2rem);
}
body .container-slim {
  max-width: 864px;
}

.reverse-order {
  display: flex;
  flex-direction: column-reverse;
}

#skip-to-content {
  background-color: #4f4e65;
  border-bottom-right-radius: 0.25rem;
  color: white;
  font-size: 0.875rem;
  left: 0;
  padding: 0.25rem 0.5rem;
  position: fixed;
  top: -50px;
  z-index: 9999;
}
#skip-to-content:focus {
  top: 0;
}

address {
  font-style: normal;
}

dl {
  margin: 0.5rem 0;
  padding: 0;
  display: grid;
  grid-gap: 0.25rem 0.5rem;
  grid-template-columns: max-content;
  font-size: 0.875rem;
}
dl dt {
  font-weight: bold;
}
dl dd {
  margin: 0;
  grid-column-start: 2;
}

h1, h2, h3 {
  color: #222222;
  font-family: "Lato", sans-serif;
  font-family: var(--headline_font_family);
  font-weight: 900;
  font-weight: var(--headline_font_style);
}
h1.is-underlined, h2.is-underlined, h3.is-underlined {
  border-bottom: 4px solid var(--brand-color);
  display: inline-block;
  width: fit-content;
}
h1.is-heading, h2.is-heading, h3.is-heading {
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 1.75rem;
  line-height: 2rem;
  margin-bottom: 2rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

h2 {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}

h3 {
  font-size: 1.125rem;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  margin-top: 2rem;
}

p,
ol,
ul {
  font-family: "PT Sans", sans-serif;
  font-family: var(--paragraph_font_family);
  font-size: 1.125rem;
  font-weight: 400;
  font-weight: var(--paragraph_body_font_style);
  line-height: 2rem;
  margin-bottom: 0;
  margin-top: 2rem;
}
p:first-child,
ol:first-child,
ul:first-child {
  margin-top: 0;
}

a {
  color: var(--brand-secondary-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus, a:active {
  opacity: 80%;
}

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

sup {
  line-height: initial;
}

h1 + *,
h2 + *,
h3 + * {
  margin-top: 0;
}

.preview__header {
  background-color: #000000;
  color: #ffffff;
  font-size: 1.125rem;
  padding: 0.75rem;
  text-align: center;
}
.preview__header a {
  color: #ffffff;
  cursor: pointer;
  text-decoration: underline;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 0;
  list-style: none;
  margin-bottom: -2rem;
}
.grid > * {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-1\/2 {
  width: 50% !important;
}

.w-1\/3 {
  width: 33.333333% !important;
}

.w-2\/3 {
  width: 66.666667% !important;
}

.w-1\/4 {
  width: 25% !important;
}

.w-3\/4 {
  width: 75% !important;
}

.w-1\/6 {
  width: 16.666667% !important;
}

.w-5\/6 {
  width: 83.333333% !important;
}

.w-full {
  width: 100% !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.none {
  display: none !important;
}

@media screen and (min-width: 576px) {
  .sm\:w-1\/2 {
    width: 50% !important;
  }
  .sm\:w-1\/3 {
    width: 33.333333% !important;
  }
  .sm\:w-2\/3 {
    width: 66.666667% !important;
  }
  .sm\:w-1\/4 {
    width: 25% !important;
  }
  .sm\:w-3\/4 {
    width: 75% !important;
  }
  .sm\:w-1\/6 {
    width: 16.666667% !important;
  }
  .sm\:w-5\/6 {
    width: 83.333333% !important;
  }
  .sm\:w-full {
    width: 100% !important;
  }
  .sm\:block {
    display: block !important;
  }
  .sm\:inline {
    display: inline !important;
  }
  .sm\:none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:w-1\/2 {
    width: 50% !important;
  }
  .md\:w-1\/3 {
    width: 33.333333% !important;
  }
  .md\:w-2\/3 {
    width: 66.666667% !important;
  }
  .md\:w-1\/4 {
    width: 25% !important;
  }
  .md\:w-3\/4 {
    width: 75% !important;
  }
  .md\:w-1\/6 {
    width: 16.666667% !important;
  }
  .md\:w-5\/6 {
    width: 83.333333% !important;
  }
  .md\:w-full {
    width: 100% !important;
  }
  .md\:block {
    display: block !important;
  }
  .md\:inline {
    display: inline !important;
  }
  .md\:none {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:w-1\/2 {
    width: 50% !important;
  }
  .lg\:w-1\/3 {
    width: 33.333333% !important;
  }
  .lg\:w-2\/3 {
    width: 66.666667% !important;
  }
  .lg\:w-1\/4 {
    width: 25% !important;
  }
  .lg\:w-3\/4 {
    width: 75% !important;
  }
  .lg\:w-1\/6 {
    width: 16.666667% !important;
  }
  .lg\:w-5\/6 {
    width: 83.333333% !important;
  }
  .lg\:w-full {
    width: 100% !important;
  }
  .lg\:block {
    display: block !important;
  }
  .lg\:inline {
    display: inline !important;
  }
  .lg\:none {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:w-1\/2 {
    width: 50% !important;
  }
  .xl\:w-1\/3 {
    width: 33.333333% !important;
  }
  .xl\:w-2\/3 {
    width: 66.666667% !important;
  }
  .xl\:w-1\/4 {
    width: 25% !important;
  }
  .xl\:w-3\/4 {
    width: 75% !important;
  }
  .xl\:w-1\/6 {
    width: 16.666667% !important;
  }
  .xl\:w-5\/6 {
    width: 83.333333% !important;
  }
  .xl\:w-full {
    width: 100% !important;
  }
  .xl\:block {
    display: block !important;
  }
  .xl\:inline {
    display: inline !important;
  }
  .xl\:none {
    display: none !important;
  }
}
.blurred-background-container {
  height: 582px;
  left: 0;
  max-height: calc(54.18vw + 96px);
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.blurred-background-svg {
  animation: 0.5s ease-in keyframes_fadeIn;
  display: block;
  height: calc(100% + 60px);
  margin-left: -2rem;
  margin-top: -2rem;
  max-height: none;
  min-height: 100%;
  top: 0;
  width: calc(100% + 2 * 2rem);
  z-index: -2;
}

@keyframes keyframes_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button {
  background-color: var(--brand-secondary-color);
  border: 1px solid var(--brand-secondary-color);
  border-radius: 0.25rem;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  font-size: 18px;
  font-weight: 400;
  font-weight: var(--miscellaneous_font_style);
  line-height: 20px;
  padding: 0.75rem 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.button:hover, .button:focus {
  background-color: var(--brand-secondary-color);
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
}
.button:focus {
  opacity: 0.8;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.button.button-outline {
  background-color: transparent;
  color: var(--brand-secondary-color);
}
.button.button-outline:hover, .button.button-outline:focus {
  background-color: transparent;
  color: var(--brand-secondary-color);
}

.button-icon {
  cursor: pointer;
  height: 24px;
  transition: all 0.3s ease-in-out;
  width: 24px;
}
.button-icon > svg {
  fill: none;
  stroke: #222222;
  transition: all 0.3s ease-in-out;
}
.button-icon:hover > svg {
  opacity: 0.8;
}
.button-icon:focus > svg {
  opacity: 0.8;
}

.button-icon--circle {
  border-radius: 100%;
}
.button-icon--circle > svg {
  fill: #222222;
  stroke: none;
}

.js-material-grid a.button.js-follow.is-media {
  background-color: transparent;
  border: none;
  padding: 0;
}

.collapsible-container {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.collapsible-container button.js-expand {
  order: 2;
  width: max-content;
  margin: 0 auto;
}

.collapsible-text {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 1rem;
  max-height: 320px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease-in-out;
}
.collapsible-text.-expanded {
  max-height: 100%;
}

.collapsible-text:not(.-expanded)::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  bottom: 0;
  content: "";
  height: 160px;
  position: absolute;
  right: 0;
  width: 100%;
}

custom-header,
custom-footer {
  background-color: #ffffff;
}

.select_nav {
  line-height: 0;
  height: 50px;
  position: relative;
}
.select_nav label {
  background-color: #ffffff;
  border: 1px solid #D1D0DA;
  border-radius: 0.25rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  max-height: 50vh;
  min-height: 50px;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.select_nav label a {
  align-items: center;
  color: #222222;
  display: none;
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin: 0.5rem;
  padding: 0.25rem 2.5rem 0.25rem 0.5rem;
}
.select_nav label a.has-line-before {
  margin-top: 0;
  position: initial;
}
.select_nav label a.has-line-before::before {
  border-top: 1px solid #D1D0DA;
  content: "";
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: -1rem;
}
.select_nav label a:hover {
  background-color: #D1D0DA;
}
.select_nav label a.active {
  background-color: #D1D0DA;
  display: flex;
  pointer-events: none;
}
.select_nav label > .active ~ .active {
  display: none;
}
.select_nav label img {
  height: 17px;
  margin-right: 0.75rem;
  width: auto;
}
.select_nav label i {
  line-height: 0;
  margin-right: 0.75rem;
}
.select_nav > i {
  display: inline-block;
  line-height: 0;
  pointer-events: none;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.select_nav svg {
  stroke: #222222;
}
.select_nav .select__toggle {
  display: none;
}
.select_nav .select__toggle:not(:checked) ~ label a.active {
  background-color: #ffffff;
}
.select_nav .select__toggle:checked ~ i {
  display: none;
}
.select_nav .select__toggle:checked ~ label,
.select_nav .select__toggle ~ label:focus-within {
  box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
  cursor: auto;
  left: 0;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
.select_nav .select__toggle:checked ~ label a,
.select_nav .select__toggle ~ label:focus-within a {
  display: flex;
  pointer-events: initial;
}
.select_nav .select__toggle:checked ~ label a.is-disabled,
.select_nav .select__toggle ~ label:focus-within a.is-disabled {
  background-color: #fbfbfb;
  color: #9897AC;
  pointer-events: none;
}
.select_nav .select__toggle:checked ~ label a.has-line-before,
.select_nav .select__toggle ~ label:focus-within a.has-line-before {
  margin-top: 2rem;
  position: relative;
}
.select_nav .select__toggle:checked ~ label a.has-line-before::before,
.select_nav .select__toggle ~ label:focus-within a.has-line-before::before {
  display: block;
}
.select_nav .select__toggle:checked ~ label a.closed-placeholder,
.select_nav .select__toggle ~ label:focus-within a.closed-placeholder {
  display: none;
}
.select_nav.opens-top .select__toggle:checked ~ label, .select_nav.opens-top .select__toggle ~ label:focus-within {
  bottom: 0;
  top: auto;
}
.select_nav.is-disabled {
  pointer-events: none;
}
.select_nav.is-disabled svg {
  stroke: #9897AC;
}
.select_nav.is-disabled .select__toggle:not(:checked) ~ label a.active {
  background-color: #fbfbfb;
  color: #9897AC;
}

.filters {
  margin-bottom: 0;
  display: none;
  align-items: flex-end;
}

.title-with-button {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.title-with-button:has(#hidden-filters-toggle[aria-expanded=true]) ~ .filters {
  display: flex;
}

#hidden-filters-toggle {
  border: 0;
  background: none;
  cursor: pointer;
}
#hidden-filters-toggle svg {
  fill: #444444;
  stroke: none;
}
#hidden-filters-toggle[aria-expanded=true] svg {
  fill: var(--brand-secondary-color);
}

.filter-icon {
  display: block;
  margin-bottom: 2rem;
}
.filter-icon i {
  display: block;
  height: 32px;
  width: 32px;
}
.filter-icon svg {
  height: 32px;
  width: 32px;
}

@media screen and (min-width: 992px) {
  .only-mobile {
    display: none;
  }
  .filters {
    display: flex;
  }
}
.nav-select-wrapper {
  position: relative;
}
.nav-select-wrapper i {
  display: inline-block;
  line-height: 0;
  pointer-events: none;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.nav-select-wrapper select {
  width: 100%;
}

.labelled-filter {
  display: flex;
  flex-direction: column;
}
.labelled-filter select, .labelled-filter option {
  line-height: 1.5rem;
  font-size: 1rem;
  font-family: var(--miscellaneous_font_family);
}
.labelled-filter select {
  padding: 0.75rem;
  border-radius: 0.25rem;
  appearance: none;
  border: 1px solid #dddddd;
}

.footer {
  border-top: 1px solid #D1D0DA;
  padding: 1.5rem;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer nav .footer__logo {
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}
.footer nav .footer__logo > svg {
  fill: #9897AC;
  height: 24px;
  stroke: none;
  vertical-align: middle;
  width: 159px;
}
.footer nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.footer nav ul li > a {
  color: #6E6D86;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  line-height: 18px;
}
.footer nav ul li > a:hover {
  color: #444444;
}
.footer nav ul li:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .footer nav .footer__logo {
    margin-bottom: 0;
    width: auto;
  }
  .footer nav ul {
    flex-direction: row;
    width: auto;
  }
  .footer nav ul li {
    margin: 0 1rem;
  }
}

.form__input {
  background-color: #ffffff;
  border: 1px solid #D1D0DA;
  border-radius: 0.25rem;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  font-size: 1.125rem;
  line-height: 1.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
}
.form__input::-webkit-input-placeholder, .form__input:-ms-input-placeholder, .form__input::placeholder {
  color: #9897AC;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.form__input.has-error {
  border-color: #FF4473;
}

.form__input-icon__wrapper {
  position: relative;
}
.form__input-icon__wrapper i {
  display: inline-block;
  left: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.form__input-icon__wrapper .form__input {
  padding: 0.75rem 1rem 0.75rem 3rem;
}

.form__checkbox-wrapper {
  align-items: center;
  display: flex;
}
.form__checkbox-wrapper input ~ label {
  margin-left: 0.75rem;
}

.form__checkbox {
  appearance: none;
  background-color: #D1D0DA;
  border: none;
  height: 28px;
  width: 28px;
}

.form__error {
  color: #FF4473;
  display: block;
  padding: 0.2rem 1rem;
}

.highlighted-tags a {
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
  color: #222222;
  display: flex;
  font-size: 1.125rem;
  font-weight: 900;
  padding: 0.75rem;
}
.highlighted-tags > .active > a {
  box-shadow: inset 0 2px 8px #b7c1d1;
}
.highlighted-tags > .is-disabled > a {
  background-color: #fbfbfb;
  color: #9897AC;
  pointer-events: none;
}
.highlighted-tags i {
  border-radius: 100%;
  flex-shrink: 0;
  height: 40px;
  margin-right: 1rem;
  overflow: hidden;
  width: 40px;
}
.highlighted-tags i > img {
  height: 100%;
  object-fit: cover;
}
.highlighted-tags span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

figure {
  margin: 0;
}

figcaption {
  font-size: 0.75rem;
}

img {
  height: auto;
  min-height: 100%;
  object-fit: contain;
  vertical-align: middle;
  width: 100%;
}
img.logo {
  max-height: 76px;
  max-width: 300px;
}

@keyframes keyframes_loading {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
.infinite-pagination__item {
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.infinite-pagination__item__loader,
.infinite-pagination__item__loader::before,
.infinite-pagination__item__loader::after {
  animation: keyframes_loading 1s infinite ease-in-out;
  background: none;
  height: 4em;
  width: 1em;
}

.infinite-pagination__item__loader {
  animation-delay: -0.16s;
  color: var(--brand-secondary-color);
  display: inline-block;
  font-size: 11px;
  margin: 2rem auto;
  position: relative;
}
.infinite-pagination__item__loader.is-hidden {
  display: none;
}

.infinite-pagination__item__loader::before,
.infinite-pagination__item__loader::after {
  content: "";
  position: absolute;
  top: 0;
}

.infinite-pagination__item__loader::before {
  animation-delay: -0.32s;
  left: -1.5em;
}

.infinite-pagination__item__loader::after {
  left: 1.5em;
}

.media-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -2rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 0;
  list-style: none;
}
.media-grid > * {
  margin-bottom: 2rem;
  max-height: 265px;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 33.333333%;
}
@supports (display: grid) {
  .media-grid {
    display: grid;
    grid-auto-rows: 0;
    grid-auto-rows: 10px;
    grid-gap: 1rem 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
  }
  @media (max-width: 992px) {
    .media-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .media-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .media-grid .extra-short {
    grid-row-end: span 11;
  }
  .media-grid .short {
    grid-row-end: span 12;
  }
  .media-grid .medium {
    grid-row-end: span 13;
  }
  .media-grid .medium-tall {
    grid-row-end: span 14;
  }
  .media-grid .tall {
    grid-row-end: span 15;
  }
  .media-grid .extra-tall {
    grid-row-end: span 16;
  }
  .media-grid .x2-tall {
    grid-row-end: span 17;
  }
  .media-grid .x3-tall {
    grid-row-end: span 18;
  }
  .media-grid .x4-tall {
    grid-row-end: span 19;
  }
  .media-grid .x5-tall {
    grid-row-end: span 20;
  }
  .media-grid .x6-tall {
    grid-row-end: span 21;
  }
  .media-grid .x7-tall {
    grid-row-end: span 22;
  }
  .media-grid > * {
    margin: 0;
    max-height: none;
    padding: 0;
    width: 100%;
  }
  .media-grid .panel.with-media {
    height: 100%;
  }
  .media-grid img {
    object-fit: cover;
    max-height: 100%;
  }
}

.related-media__header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .related-media__header-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#related-media__download-all-button {
  margin-left: 1rem;
}
@media (max-width: 576px) {
  #related-media__download-all-button {
    margin-top: 0.5rem;
    margin-left: 0;
  }
}

.modal {
  background-color: #ffffff;
  border: none;
  border-radius: 0.25rem;
  box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
  inset: 0;
  margin: auto;
  max-height: calc(100vh - 4rem);
  max-width: 416px;
  overflow: auto;
  padding: 2rem;
  position: fixed;
  width: 100%;
  z-index: 3000;
}
.modal .modal__close {
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.modal .modal__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal .modal__header .modal__title {
  font-size: 1.4rem;
  line-height: 2rem;
}
@media screen and (min-width: 768px) {
  .modal .modal__header .modal__title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.modal .modal__header .modal__title {
  display: block;
  margin-bottom: 0;
  margin-top: 1rem;
  text-align: center;
}
.modal .modal__main {
  margin-top: 0.75rem;
}
.modal .modal__main > p {
  text-align: center;
}
.modal .modal__footer {
  margin-top: 2rem;
}

.modal__backdrop {
  background-color: #D1D0DA;
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0.4;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2999;
}

.follow-modals .form__input:not(:first-child) {
  margin-top: 1rem;
}
.follow-modals .form__checkbox-wrapper {
  margin-top: 1.5rem;
}
.follow-modals .create-account .form__policy-card {
  background-color: #fbfbfb;
  margin: 0.5rem 0;
  padding: 0.5rem;
}
.follow-modals .create-account .form__policy-card p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin-top: 0.5rem;
}

.policy-modal .modal__footer {
  display: flex;
  justify-content: center;
}
.policy-modal .modal__footer .button:first-child {
  margin-right: 1rem;
}

.search__input-wrapper {
  position: relative;
  border: 1px solid #D1D0DA;
  border-radius: 0.25rem;
}

.search__input-icon {
  display: inline-block;
  left: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.search__input[type=search] {
  border-radius: 0.25rem;
  border: 0;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1rem 0.5rem 1rem 3rem;
  width: 100%;
}
.search__input[type=search]::placeholder {
  color: #9897AC;
  font-size: 1.4rem;
}
.search__input[type=search]:focus {
  outline: none;
}

.search__input.search__input[type=search]:placeholder-shown {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search__empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 7.5rem;
}
.search__empty > h2 {
  margin-top: 1.5rem;
}
.search__empty .search__empty-icon {
  height: 120px;
  position: relative;
  width: 120px;
}
.search__empty .search__empty-icon > span {
  background-color: var(--brand-color);
  border-radius: 100%;
  display: block;
  height: 120px;
  opacity: 0.2;
  width: 120px;
}
.search__empty .search__empty-icon svg {
  height: 64px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
}

.show-more {
  margin-top: 2rem;
  text-align: center;
}

i {
  height: 24px;
  width: 24px;
}

svg {
  height: 24px;
  stroke: #9897AC;
  width: 24px;
}

.tabbed {
  padding-top: 0.5rem;
}
.tabbed nav {
  display: block;
}
.tabbed nav ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.tabbed nav li {
  margin: 1rem;
}
.tabbed nav li > a {
  color: #444444;
  cursor: pointer;
  display: inline-block;
}
.tabbed nav li > a:hover, .tabbed nav li > a.active {
  text-decoration: underline;
}
.tabbed nav li > span {
  color: #6E6D86;
  cursor: default;
  text-decoration: none;
}
.tabbed nav li:first-child {
  margin-left: 0;
}

[data-forward-click=true] {
  cursor: pointer;
}

.sentinel {
  position: absolute;
  bottom: 0;
}

#stickied-stories-mobile {
  margin-bottom: 3.5rem;
  display: none;
}
@media (max-width: 1200px) {
  #stickied-stories-mobile {
    display: block;
  }
}
#stickied-stories-mobile h2 {
  margin: 1rem 0 1rem 1.5rem;
  color: #363645;
  font-family: "PT Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-transform: uppercase;
}
#stickied-stories-mobile .stickied-stories__featured {
  margin: -3rem -1rem 0 -1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  padding-bottom: 0.5rem;
}
#stickied-stories-mobile .stickied-stories__featured h3 {
  order: 1;
  position: relative;
  margin-top: -1.5rem;
  bottom: 0;
  left: 1rem;
  width: calc(100% - 2rem);
  padding: 1rem 0.5rem;
}
#stickied-stories-mobile .stickied-stories__featured h3 a {
  font-size: 1.5rem;
  line-height: 2rem;
  padding-left: 1.125rem;
  border-left-width: 0.375rem;
}
@media (max-width: 576px) {
  #stickied-stories-mobile .stickied-stories__featured h3 a {
    line-height: 1.25rem;
    font-size: 0.875rem;
  }
}

.stickied-stories__extras-wrapper-mobile {
  overflow-x: auto;
  margin-top: 2rem;
  display: grid;
  grid-auto-columns: minmax(10rem, 1fr);
  gap: 1rem;
  grid-auto-flow: column;
}
@media (max-width: 768px) {
  .stickied-stories__extras-wrapper-mobile {
    margin-top: 0.5rem;
  }
}
.stickied-stories__extras-wrapper-mobile > article {
  max-width: max(19rem, 50vw - 1rem);
  position: relative;
}
.stickied-stories__extras-wrapper-mobile .stickied-stories__extra-bottom_header {
  padding: 0.5rem;
}
.stickied-stories__extras-wrapper-mobile .stickied-stories__extra-bottom_header .indicator {
  height: 1.5rem;
  margin-top: 0;
  border-left: 0.25rem solid var(--brand-color);
}
@media (max-width: 768px) {
  .stickied-stories__extras-wrapper-mobile .stickied-stories__extra-bottom_header .indicator {
    height: 0.625rem;
    margin-top: 0.125rem;
    border-left: 0.125rem solid var(--brand-color);
  }
}
.stickied-stories__extras-wrapper-mobile .stickied-stories__extra-bottom_header a {
  padding-left: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media (max-width: 768px) {
  .stickied-stories__extras-wrapper-mobile .stickied-stories__extra-bottom_header a {
    line-height: 0.875rem;
    font-size: 0.75rem;
    font-weight: 900;
  }
}

.stickied-placeholder {
  background: #F7F7F9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stickied-placeholder img, .stickied-placeholder svg {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  min-height: auto;
  stroke: initial;
  color: #D1D0DA;
}

.stickied-placeholder__image-wrapper {
  border-radius: 1rem;
  max-width: min(235px, 100%);
  max-height: 100%;
  flex: 1;
  aspect-ratio: 16/9;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

#stickied-stories-desktop {
  margin-bottom: 3.5rem;
}
@media (max-width: 1200px) {
  #stickied-stories-desktop {
    display: none;
  }
}
#stickied-stories-desktop h2 {
  margin: 1rem 0 1rem 1.5rem;
  color: #363645;
  font-family: "PT Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-transform: uppercase;
}

.stickied-stories__two-columns {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  margin: 0 1.5rem 0 0.75rem;
  max-width: 100%;
}
.stickied-stories__two-columns .stickied-stories__featured {
  position: relative;
}
.stickied-stories__two-columns .stickied-stories__featured img:not(.logo), .stickied-stories__two-columns .stickied-stories__featured .stickied-placeholder {
  border-radius: 0.5rem;
}
.stickied-stories__two-columns > * {
  min-width: 0;
}

.stickied-stories__one-column {
  padding-bottom: 5rem;
  position: relative;
}

.stickied-stories__featured h3 {
  background-color: white;
  padding: 2rem 1.5rem 3rem 1.5rem;
  margin: 0;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  position: absolute;
}
.stickied-stories__featured h3 a {
  color: #363645;
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 2.625rem;
  border-left: 0.625rem solid var(--brand-color);
  padding-left: 1.625rem;
  overflow-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.stickied-stories__extras-wrapper {
  width: 22.5rem;
  margin-bottom: 2rem;
}

.stickied-stories__extra-square {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stickied-stories__extra-square:not(:last-child) {
  margin-bottom: 0.75rem;
}
.stickied-stories__extra-square img:not(.logo), .stickied-stories__extra-square .stickied-placeholder {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 0.5rem;
  min-width: 111px;
}
.stickied-stories__extra-square h3 {
  margin: 0;
  flex: 1;
}
.stickied-stories__extra-square h3 a {
  color: #4F4E65;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  overflow: hidden;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.stickied-stories__extra-square .stickied-placeholder__image-wrapper {
  border-radius: 0;
}

.stickied-stories__extra-cinema_scope,
.stickied-stories__extra-tall_landscape,
.stickied-stories__extra-portrait {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.stickied-stories__extra-cinema_scope:not(:last-child),
.stickied-stories__extra-tall_landscape:not(:last-child),
.stickied-stories__extra-portrait:not(:last-child) {
  margin-bottom: 0.75rem;
}

.stickied-stories__extra-bottom_header {
  position: absolute;
  inset: auto 0 0 0;
  margin: 0;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
}
.stickied-stories__extra-bottom_header .indicator {
  height: 1.5rem;
  margin-top: 0.125rem;
  border-left: 0.25rem solid var(--brand-color);
}
.stickied-stories__extra-bottom_header a {
  padding-left: 0.75rem;
  color: white;
  text-shadow: 0.5px 0.5px 1px #363645;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  overflow-wrap: break-word;
  font-weight: 900;
  line-height: 1.75rem;
  overflow: hidden;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.about-pressroom {
  background-color: #ffffff;
  padding: 4.5rem 1rem;
  text-align: center;
}
.about-pressroom h2 {
  font-size: 1.75rem;
  line-height: 2rem;
  margin-bottom: 2rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .about-pressroom h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.about-pressroom a {
  display: inline-block;
}
.about-pressroom > .grid {
  justify-content: center;
}
.about-pressroom .about-pressroom__logo {
  display: inline-block;
}

.about-company {
  background-color: var(--brand-secondary-color);
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 2rem;
  padding: 4.5rem 1rem;
  text-align: center;
}
.about-company > .grid {
  justify-content: center;
}
.about-company .about-company__name {
  font-weight: 900;
}
.about-company .about-company__address + .about-company__links {
  margin-top: 2rem;
}
.about-company .about-company__address p {
  margin: 0;
}
.about-company .about-company__link {
  color: #ffffff;
  text-decoration: underline;
}
.about-company .select_nav {
  margin: 0 auto;
  max-width: 300px;
  text-align: left;
}
.about-company .select_nav-caption {
  font-weight: 900;
  margin-top: 2rem;
}

.related-pressrooms {
  background-color: #ffffff;
  padding: 4.5rem 1rem;
  text-align: center;
}
.related-pressrooms h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.related-pressrooms .related-pressrooms__links {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .related-pressrooms .related-pressrooms__links {
    flex-direction: column;
  }
}
.related-pressrooms .related-pressrooms__name-wrapper,
.related-pressrooms .related-pressrooms__logo-wrapper {
  margin: 0 1.75rem;
  min-width: 17.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.related-pressrooms .related-pressrooms__name-wrapper img,
.related-pressrooms .related-pressrooms__logo-wrapper img {
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  .related-pressrooms .related-pressrooms__name-wrapper,
  .related-pressrooms .related-pressrooms__logo-wrapper {
    margin: 0;
  }
}
.related-pressrooms .related-pressrooms__logo-wrapper {
  height: 11rem;
  width: 17.25rem;
}
.related-pressrooms .related-pressrooms__logo {
  max-height: 8rem;
  max-width: 14.25rem;
}

header > .navigation {
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  position: relative;
}
header > .navigation.centered {
  justify-content: center;
}
header > .navigation a {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  font-size: 1.125rem;
}
header > .navigation i {
  height: 2rem;
  width: 2rem;
}
header > .navigation svg {
  height: 2rem;
  stroke: #444444;
  width: 2rem;
}
header > .navigation .navigation__logo {
  color: #444444;
}
header > .navigation .navigation__logo .logo {
  object-position: center;
}
header > .navigation .navigation__icon {
  line-height: 0;
  padding-right: 1.5rem;
}
header > .navigation #mobile-menu {
  display: flex;
  flex-direction: column;
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1000;
  transition: height 0.3s ease-in-out;
}
header > .navigation #desktop-menu {
  display: none;
}
header > .navigation .navigation__items {
  background-color: #ffffff;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
header > .navigation .navigation__items .navigation__item {
  padding: 0.5rem 1.5rem;
  text-align: center;
}
header > .navigation .navigation__items .navigation__item:first-child {
  margin-top: 2rem;
}
header > .navigation .navigation__items .navigation__item > a:not(.js-follow) {
  border-bottom: 1px solid transparent;
  color: #444444;
}
header > .navigation .navigation__items .navigation__item > a:not(.js-follow):hover {
  border-bottom: 1px solid #9897AC;
}
header > .navigation .navigation__items .navigation__item > a:not(.js-follow):active {
  border-bottom: 1px solid #444444;
}
header > .navigation .navigation__items .navigation__item.is-active a {
  border-bottom: 1px solid #444444;
}
header > .navigation .navigation__actions {
  align-items: center;
  display: flex;
  padding-left: 1.5rem;
}
header > .navigation .navigation__actions .navigation__search {
  line-height: 0;
}
header > .navigation .navigation__actions .js-follow {
  margin-left: 2rem;
}
header > .navigation #navigation-toggle {
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}
header > .navigation #navigation-toggle .is-close {
  display: none;
}
header > .navigation #navigation-toggle[aria-expanded=true] .is-close {
  display: inline;
}
header > .navigation #navigation-toggle[aria-expanded=true] .is-menu {
  display: none;
}
header > .navigation #navigation-toggle[aria-expanded=true] ~ .navigation__icon .is-menu {
  display: none;
}
header > .navigation #navigation-toggle[aria-expanded=true] ~ .navigation__items {
  height: 100vh;
}
header > .navigation #navigation-toggle[aria-expanded=true] ~ .navigation__actions .navigation__search {
  visibility: hidden;
}
header > .navigation .is-desktop {
  display: none;
}
header > .navigation .is-mobile {
  display: inline-block;
}
@media screen and (min-width: 992px) {
  header > .navigation #mobile-menu {
    display: none;
  }
  header > .navigation #desktop-menu {
    display: flex;
  }
  header > .navigation .navigation__logo .logo {
    object-position: left;
  }
  header > .navigation .navigation__items .navigation__item:first-child {
    margin-top: 0;
  }
  header > .navigation .is-desktop {
    display: inline-block;
  }
  header > .navigation .is-mobile {
    display: none;
  }
  header > .navigation .lg-sr-only {
    border: 0;
    clip-path: inset(50%);
    clip: rect(0, 0, 0, 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}

.js-follow span {
  display: none;
}
.js-follow .show {
  display: inline;
}

header > .navigation.hosted {
  background-color: transparent;
  border-bottom: 1px solid #D1D0DA;
  box-shadow: none;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 0.75rem 0;
  width: calc(100vw - 32px);
}
header > .navigation.hosted .navigation__items {
  background-color: #ffffff;
  background-color: var(--brand-background-color);
}
header > .navigation.hosted .navigation__logo {
  display: none;
}
header > .navigation.hosted .navigation__items .navigation__item {
  padding: 0.5rem 3rem 0.5rem 0;
}
header > .navigation.hosted .navigation__items .navigation__item.is-active a {
  border-bottom: 1px solid #444444;
}

.panel {
  background-color: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
  display: block;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  outline: 1px solid transparent;
}
.panel.with-media {
  height: auto;
}
.panel .details-placeholder {
  height: 64px;
  display: block;
}
.panel.doc-cutout {
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 6px 10px rgba(49, 73, 164, 0.08)) drop-shadow(0 0 3px rgba(49, 73, 164, 0.1)) drop-shadow(0 0 2px rgba(49, 73, 164, 0.14));
}
.panel.doc-cutout .panel__content {
  clip-path: polygon(0% 0%, 93.6% 0%, 100% 8.7%, 100% 100%, 0% 100%);
}
.panel.doc-cutout .panel__content:hover, .panel.doc-cutout .panel__content:focus, .panel.doc-cutout .panel__content:active {
  clip-path: initial;
}
.panel.doc-cutout .panel__content::after,
.panel.doc-cutout .panel__content::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  z-index: 1;
}
.panel.doc-cutout .panel__content::after {
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  background-color: #6E6D86;
}
.panel.doc-cutout .panel__content::before {
  clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
  border-width: 0 0 1px 1px;
  border-bottom-left-radius: 4px;
  border-style: solid;
  border-color: #E3E3E9;
  background: #EEEEF1;
}
.panel details {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, #FFF 100%);
  box-shadow: 0px 0px 2px 0px rgba(49, 73, 164, 0.14), 0px 0px 3px 0px rgba(49, 73, 164, 0.1), 0px 6px 10px 0px rgba(49, 73, 164, 0.08);
}
.panel details > * {
  padding: 0 1rem;
}
.panel details dl {
  margin: 1rem 0 0.5rem 0;
  display: grid;
  grid-gap: 0.5rem;
  line-height: 1;
  font-size: 1rem;
  color: #4F4E65;
}
.panel details dd {
  margin: 0;
}
.panel details::details-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, content-visibility 0.45s allow-discrete;
}
@media (prefers-reduced-motion: reduce) {
  .panel details::details-content {
    transition: none;
  }
}
.panel details[open]::details-content {
  max-height: 446px;
  opacity: 1;
}
@starting-style {
  .panel details[open]::details-content {
    max-height: 0;
    opacity: 0;
  }
}
.panel details .opened-icon {
  display: none;
}
.panel details[open] .closed-icon {
  display: none;
}
.panel details[open] .opened-icon {
  display: block;
}
.panel .panel__content-more-info {
  font-size: 1rem;
  line-height: 1;
  margin: 0.5rem 0 1rem 0;
}
.panel .panel__content-more-info a {
  text-decoration: underline;
  display: block;
}
.panel .media__download-link {
  height: 44px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #4F4E65;
  margin: 1rem 0;
  font-weight: 400;
  line-height: 1.5;
}
.panel .media__download-link:hover {
  color: #9897AC;
}
.panel .panel__video-duration {
  position: absolute;
  left: 1.5rem;
  bottom: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 24px;
  background: rgba(54, 54, 69, 0.75);
  color: white;
  font-size: 1rem;
  line-height: 1;
}
.panel summary::-webkit-details-marker {
  display: none;
}
.panel summary {
  user-select: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2rem;
  color: #4F4E65;
}
.panel summary:focus-visible, .panel summary:hover {
  color: #9897AC;
}
.panel summary > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.panel summary svg {
  flex-shrink: 0;
}
.panel summary::marker {
  display: none;
  content: "";
}

.panel__link {
  text-decoration: none;
  color: inherit;
  position: static;
}
.panel__link::before {
  content: "";
  cursor: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.panel__link:hover, .panel__link:focus, .panel__link:active {
  color: unset;
  opacity: 1;
}

.panel__content {
  background-color: #ffffff;
  color: #444444;
  display: flex;
  flex-direction: column;
  max-height: 510px;
  position: static;
}
.panel__content .media_grid__panel__media,
.panel__content .panel__media {
  order: -1;
}
.panel__content .panel__media {
  height: 100%;
  width: 100%;
  position: relative;
  background: #ffffff url("/assets/newsroom2020/transparent-placeholder-1ad24039.png") repeat;
}
.panel__content .panel__media .panel__media-image {
  object-fit: unset;
}
.panel__content .panel__media video {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.panel__content .panel__media.has-svg {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 2rem;
  aspect-ratio: 16/9;
  background-image: none;
}
.panel__content .panel__media.has-svg svg {
  height: 64px;
  width: 64px;
}
.panel__content .panel__media-doc {
  background: #ffffff;
}
.panel__content .panel__caption {
  display: none;
}
.panel__content .panel__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .panel__content .panel__body {
    padding: 2rem;
  }
}
.panel__content .panel__body.is-fade-out::after {
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7) 16px, #ffffff 32px);
  content: "";
  display: block;
  height: 64px;
  left: 0;
  position: absolute;
  top: 446px;
  width: 100%;
  z-index: 0;
}
.panel__content .panel__body .panel__title {
  hyphens: manual;
  margin-top: 1rem;
  overflow: hidden;
}
.panel__content .panel__body .panel__heading {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
.panel__content .panel__body .panel__date {
  order: -1;
  border-left: 0.25rem solid var(--brand-color);
  color: #6E6D86;
  display: inline-block;
  margin-bottom: 1rem;
  padding-left: 1rem;
  text-transform: uppercase;
}
.panel__content .panel__body .panel__text {
  clear: both;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.panel__content .panel__body .panel__text a {
  text-decoration: underline;
}
.panel__content .detail_page_media__info .license_title {
  position: relative;
}
.panel__content .detail_page_media__info .license_title .license_name {
  cursor: pointer;
  text-decoration: underline;
}
.panel__content .detail_page_media__info .license_explanation {
  background-color: #ffffff;
  border-radius: 0.25rem;
  bottom: 100%;
  box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
  font-size: 1rem;
  left: -60px;
  line-height: 1.5;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  position: absolute;
  right: -20px;
}

@media (min-width: 576px) {
  .panel__content.main-story {
    flex-direction: row;
    max-height: 444px;
  }
  .panel__content.main-story .panel__media {
    flex-basis: calc(50% - 16px);
    flex-shrink: 0;
    max-height: 100%;
    margin: auto;
  }
  .panel__content.main-story .panel__media img {
    min-height: unset;
  }
  .panel__content.main-story .panel__body {
    position: static;
  }
  .panel__content.main-story .panel__body::after {
    top: 380px;
  }
}
@media (min-width: 992px) {
  .panel__content.main-story .panel__media {
    flex-basis: calc(66.67% - 10.6666666667px);
  }
}
@media (max-width: 450px) {
  .panel__content.main-story {
    border: 3px solid transparent;
  }
  .panel__content.main-story:focus-within {
    border-color: blue;
  }
}

@media (max-width: 450px) {
  .panel__content.story {
    border: 3px solid transparent;
  }
  .panel__content.story:focus-within {
    border-color: blue;
  }
}

.contact-card {
  height: 100%;
}
.contact-card .contact__avatar {
  margin: 2rem 0 1.5rem;
  text-align: center;
}
.contact-card .contact__avatar > img {
  border-radius: 100%;
  height: 120px;
  width: 120px;
}
.contact-card .contact__avatar .contact__avatar-placeholder {
  background-color: var(--brand-color);
  border-radius: 100%;
  display: inline-block;
  height: 120px;
  opacity: 20%;
  width: 120px;
}
.contact-card .panel__body {
  margin: 0 0 2rem;
  padding-inline: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card .panel__body h2 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.contact-card .panel__body > span {
  display: block;
}
.contact-card .panel__body .contact__name {
  margin-bottom: 0.75rem;
  margin-top: 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.contact-card .panel__body .contact__tag {
  border: 1px solid #4F4E65;
  color: #4F4E65;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.125rem 0.75rem;
  text-transform: uppercase;
}
.contact-card .panel__body .contact__email {
  color: var(--brand-secondary-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.contact-card .panel__body .contact__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.contact-card .panel__body .contact__specialist {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.contact-card .panel__body .contact__links {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
}
.contact-card .panel__body .contact__link {
  color: var(--brand-secondary-color);
  display: inline;
}

.panel__content.is-event {
  max-height: 100%;
}

.panel__content.is-event .event__location,
.panel__content.is-material-detail .event__location {
  margin-top: 0.75rem;
}
.panel__content.is-event .event__date,
.panel__content.is-event .event__location,
.panel__content.is-material-detail .event__date,
.panel__content.is-material-detail .event__location {
  display: flex;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  align-items: center;
}
.panel__content.is-event .event__date i,
.panel__content.is-event .event__location i,
.panel__content.is-material-detail .event__date i,
.panel__content.is-material-detail .event__location i {
  margin-right: 0.5rem;
}
.panel__content.is-event .event__date span,
.panel__content.is-event .event__location span,
.panel__content.is-material-detail .event__date span,
.panel__content.is-material-detail .event__location span {
  line-height: 1;
}
.panel__content.is-event .event__info,
.panel__content.is-material-detail .event__info {
  align-items: center;
  border: 1px solid #D1D0DA;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}
@media screen and (min-width: 992px) {
  .panel__content.is-event .event__info,
  .panel__content.is-material-detail .event__info {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .panel__content.is-event .event__signup a.button,
  .panel__content.is-material-detail .event__signup a.button {
    margin-top: 0;
  }
}

.panel__content.is-material-detail {
  max-height: 100%;
}
.panel__content.is-material-detail .svg-fill {
  fill: #4F4E65;
}
.panel__content.is-material-detail .svg-stroke,
.panel__content.is-material-detail .svg-stroke > svg {
  stroke: #4F4E65;
}
.panel__content.is-material-detail .details-header {
  font-size: 1.125rem;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  margin-top: 2rem;
}
.panel__content.is-material-detail .panel__media.is-video, .panel__content.is-material-detail .panel__media.is-image {
  height: 100%;
  max-height: 100%;
}
.panel__content.is-material-detail .panel__media.is-video.portrait {
  width: 50%;
  position: relative;
  margin: 0 auto;
}
.panel__content.is-material-detail .panel__media.is-video .video-js .vjs-big-play-button:focus {
  outline: 2px solid var(--brand-secondary-color);
}
.panel__content.is-material-detail .panel__media.has-svg svg {
  height: 200px;
  width: 200px;
}
.panel__content.is-material-detail .panel__media-doc {
  background: #ffffff;
}
.panel__content.is-material-detail .panel__caption {
  background-color: #D1D0DA;
  display: block;
  font-family: "PT Sans", sans-serif;
  font-family: var(--paragraph_font_family);
  font-size: 0.875rem;
  line-height: 1.3;
  padding: 0.75rem 1rem;
}
.panel__content.is-material-detail .panel__body {
  margin-top: 3rem;
  overflow: inherit;
}
@media (min-width: 768px) {
  .panel__content.is-material-detail .panel__body {
    margin: 3rem 7rem 4.5rem;
  }
}
.panel__content.is-material-detail .panel__body img:not(.logo) {
  max-width: 100%;
}
.panel__content.is-material-detail .panel__body hr {
  margin: 2rem 0;
}
.panel__content.is-material-detail .panel__body code {
  color: var(--brand-secondary-color);
  padding: 0 0.125rem;
}
.panel__content.is-material-detail .panel__body pre {
  margin: 1rem 0;
  overflow: auto;
  padding: 0.375rem 0.625rem;
}
.panel__content.is-material-detail .panel__body table {
  border: 1px solid #D1D0DA;
  border-collapse: collapse;
}
.panel__content.is-material-detail .panel__body table td {
  border: 1px solid #D1D0DA;
  padding: 0.5rem;
  vertical-align: top;
}
.panel__content.is-material-detail .panel__body code, .panel__content.is-material-detail .panel__body pre {
  background-color: #fbfbfb;
  border: 1px solid #D1D0DA;
  border-radius: 0.25rem;
}
.panel__content.is-material-detail .panel__body ul {
  font-size: 1.125rem;
}
.panel__content.is-material-detail .panel__body > div {
  font-size: 1.125rem;
}
.panel__content.is-material-detail .panel__body > div ul {
  margin-top: 2rem;
}
.panel__content.is-material-detail .panel__body .button {
  margin-top: 1rem;
}
.panel__content.is-material-detail .panel__body .type__date {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  color: #6E6D86;
  font-family: "Lato", sans-serif;
  font-family: var(--miscellaneous_font_family);
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  gap: 0.25rem;
}
.panel__content.is-material-detail .panel__body .type__date time {
  margin-right: 0.5rem;
}
.panel__content.is-material-detail .panel__body .type__highlight {
  color: var(--brand-secondary-color);
}
.panel__content.is-material-detail .panel__body .panel__title {
  margin-bottom: 1rem;
}
.panel__content.is-material-detail .panel__body .headline-share-btn {
  color: #4F4E65;
  border: none;
  font-size: inherit;
  background-color: transparent;
}
.panel__content.is-material-detail .panel__body .headline-share-btn svg {
  height: 1rem;
  width: 1rem;
}
.panel__content.is-material-detail .panel__body .label-effect {
  line-height: 1rem;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: transparent;
}
.panel__content.is-material-detail .panel__body .label-effect:hover {
  border-bottom-color: inherit;
}
.panel__content.is-material-detail .panel__body .social-share-dialog {
  margin: auto;
  border-radius: 0.5rem;
  border: none;
  background: var(--color-neutral-white, #FFF);
  box-shadow: 2px 2px 35px 0px rgba(0, 0, 0, 0.35);
  width: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .panel__content.is-material-detail .panel__body .social-share-dialog {
    width: 28rem;
  }
}
.panel__content.is-material-detail .panel__body .dialog-content-wrapper {
  padding: 1.5rem;
  color: #4F4E65;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.panel__content.is-material-detail .panel__body .dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222222;
  font-size: 1.5rem;
  font-weight: 900;
  height: 2rem;
}
.panel__content.is-material-detail .panel__body .dialog-header .dialog-close-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  background-color: transparent;
  border: none;
  height: 2rem;
  width: 2rem;
}
.panel__content.is-material-detail .panel__body .dialog-header .dialog-close-btn:focus-visible {
  width: fit-content;
}
.panel__content.is-material-detail .panel__body .dialog-body-upper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .panel__content.is-material-detail .panel__body .dialog-body-upper {
    gap: 0.25rem;
  }
}
.panel__content.is-material-detail .panel__body .dialog-body-upper .hidden {
  display: none;
}
.panel__content.is-material-detail .panel__body .dialog-body-lower {
  display: flex;
  gap: 1rem;
}
.panel__content.is-material-detail .panel__body .dialog-body-lower .sns,
.panel__content.is-material-detail .panel__body .dialog-body-lower .sns > svg {
  height: 2rem;
  width: 2rem;
}
.panel__content.is-material-detail .panel__body .dialog-body-lower .facebook svg {
  fill: #2C64F6;
}
.panel__content.is-material-detail .panel__body .dialog-body-lower .linkedin svg {
  fill: #0077B5;
}
.panel__content.is-material-detail .panel__body .dialog-body-lower .sns-x svg {
  fill: #000000;
}
.panel__content.is-material-detail .panel__body .copy-before,
.panel__content.is-material-detail .panel__body .copy-after {
  height: 2rem;
  display: flex;
  align-items: center;
}
.panel__content.is-material-detail .panel__body .cursor {
  cursor: pointer;
}
.panel__content.is-material-detail .panel__body .ghost-btn-with-icon,
.panel__content.is-material-detail .panel__body .ghost-btn-with-icon-inline {
  color: #4F4E65;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 2rem;
  padding: 0;
  border: none;
  background-color: transparent;
}
@media (min-width: 576px) {
  .panel__content.is-material-detail .panel__body .ghost-btn-with-icon,
  .panel__content.is-material-detail .panel__body .ghost-btn-with-icon-inline {
    padding: 0 1rem 0 0;
  }
}
.panel__content.is-material-detail .panel__body .ghost-btn-with-icon:hover,
.panel__content.is-material-detail .panel__body .ghost-btn-with-icon-inline:hover {
  opacity: 80%;
}
.panel__content.is-material-detail .panel__body .ghost-btn-with-icon-inline {
  height: 1.5rem;
}
.panel__content.is-material-detail .panel__body .commalist {
  display: inline;
  list-style: none;
  padding-left: 0;
}
.panel__content.is-material-detail .panel__body .commalist li {
  display: inline;
}
.panel__content.is-material-detail .panel__body .commalist li a {
  color: #444444;
  font-size: 1.125rem;
  text-decoration: underline;
}
.panel__content.is-material-detail .panel__body .nobullets {
  list-style: none;
  padding-left: 0;
}
.panel__content.is-material-detail .panel__body .nobullets li a {
  color: #444444;
  font-size: 1.125rem;
  text-decoration: underline;
}
.panel__content.is-material-detail .panel__body .ai-writer-disclaimer {
  color: #9897AC;
  font-style: italic;
  margin-top: 1rem;
}
.panel__content.is-material-detail .about-pressroom {
  padding: 0;
}

.panel:has(.panel__content.is-media):hover, .panel:has(.panel__content.is-media):focus, .panel:has(.panel__content.is-media):active, .panel:has(.panel__content.is-media):has(.panel__content-media-link:focus) {
  color: unset;
  opacity: 1;
  text-decoration: none;
  outline-color: #6E6D86;
}
.panel:has(.panel__content.is-media):hover .panel__content-media-link, .panel:has(.panel__content.is-media):focus .panel__content-media-link, .panel:has(.panel__content.is-media):active .panel__content-media-link, .panel:has(.panel__content.is-media):has(.panel__content-media-link:focus) .panel__content-media-link {
  opacity: 1;
}

.panel__content.is-media {
  display: block;
  height: 100%;
  max-height: 276px;
}
.panel__content.is-media .aspect-16x9 {
  aspect-ratio: 16/9;
}
.panel__content.is-media .media_grid__panel__media {
  height: 100%;
}
.panel__content.is-media .media_grid__panel__media img {
  background-color: #D1D0DA;
  max-height: 100%;
  max-width: 100%;
}
.panel__content.is-media .panel__overlay {
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  left: 0;
  padding: 1.75rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.panel__content.is-media .panel__overlay .panel__overlay-text {
  color: transparent;
  overflow: hidden;
  padding-bottom: 0.75rem;
}
.panel__content.is-media .panel__overlay dl.detail_page_media__info {
  line-height: 1rem;
  padding: 0.75rem;
}
.panel__content.is-media .panel__overlay dl.detail_page_media__info dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.panel__content.is-media .panel__overlay .panel__overlay-footer {
  align-items: center;
  border-top: 2px solid transparent;
  display: flex;
  padding-top: 0.75rem;
}
.panel__content.is-media .panel__overlay .panel__overlay-footer a {
  color: transparent;
  font-size: 1.125rem;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .panel__content.is-media .panel__overlay .panel__overlay-footer a {
    font-size: 0.875rem;
  }
}
.panel__content.is-media .panel__overlay .panel__overlay-footer a > i {
  vertical-align: middle;
}
.panel__content.is-media .panel__overlay .panel__overlay-footer a svg {
  stroke: transparent;
}
.panel__content.is-media .panel__overlay .panel__overlay-footer .media__info-icon {
  position: absolute;
}
.panel__content.is-media .panel__overlay .panel__overlay-footer .media__info-icon svg {
  stroke: #ffffff;
}
.panel__content.is-media:hover .panel__overlay, .panel__content.is-media:focus-within .panel__overlay {
  background-color: var(--brand-secondary-color);
}
.panel__content.is-media:hover .panel__overlay .panel__overlay-text, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-text {
  color: #ffffff;
}
.panel__content.is-media:hover .panel__overlay .panel__overlay-footer, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer {
  border-color: #ffffff;
}
.panel__content.is-media:hover .panel__overlay .panel__overlay-footer .media__info-icon svg, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer .media__info-icon svg {
  stroke: transparent;
}
.panel__content.is-media:hover .panel__overlay .panel__overlay-footer i,
.panel__content.is-media:hover .panel__overlay .panel__overlay-footer a, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer i,
.panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer a {
  color: #ffffff;
}
.panel__content.is-media:hover .panel__overlay .panel__overlay-footer i svg,
.panel__content.is-media:hover .panel__overlay .panel__overlay-footer a svg, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer i svg,
.panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer a svg {
  stroke: #ffffff;
}
.panel__content.is-media .panel__media {
  transition: transform 0.3s ease-in-out;
}
.panel__content.is-media .panel__content-media-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.is-dynamic .panel__content.is-media .panel__content-media-link {
  flex: 1;
}
.panel__content.is-media .panel__content-media-link:hover .panel__media {
  transform: scale(1.05);
}
.panel__content.is-media .panel__content-media-link:hover .panel__media.has-svg {
  transform: none;
}
.panel__content.is-media .panel__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  stroke: unset;
}

.media-grid .panel__content.is-media {
  max-height: none;
}

.panel.with-media.is-golden-ratio .panel__content {
  max-height: none;
  min-height: auto;
}

.panel.with-media.is-contained {
  height: 100%;
}

.panel.with-media.is-dynamic .panel__content {
  display: flex;
  flex-direction: column;
}
.panel.with-media.is-dynamic .panel__media.has-svg {
  height: 224px;
  aspect-ratio: auto;
}

.panel__content.is-social {
  height: 262px;
}
.panel__content.is-social .panel__media {
  background-image: none;
}
.panel__content.is-social .panel__media .is-contained {
  height: 100%;
  object-fit: cover;
}
.panel__content.is-social .panel__overlay {
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  left: 0;
  padding: 2rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.panel__content.is-social .panel__overlay .panel__overlay-text {
  margin-bottom: 0.75rem;
  overflow: hidden;
  white-space: normal;
}
.panel__content.is-social .panel__overlay .panel__overlay-text h3 {
  margin-top: 1.5rem;
}
.panel__content.is-social .panel__overlay .panel__overlay-footer {
  border-top: 2px solid var(--brand-color);
  display: flex;
  padding-top: 0.75rem;
}
.panel__content.is-social .panel__overlay .panel__overlay-footer > i svg {
  fill: #9897AC;
  stroke: none;
}
.panel__content.is-social .panel__overlay .panel__overlay-footer a,
.panel__content.is-social .panel__overlay .panel__overlay-footer span {
  color: #9897AC;
  font-size: 1.125rem;
  margin-left: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.panel__content.is-social.has-image .panel__overlay .panel__overlay-text {
  color: transparent;
}
.panel__content.is-social.has-image .panel__overlay .panel__overlay-text h3 {
  color: transparent;
}
.panel__content.is-social.has-image .panel__overlay .panel__overlay-footer {
  border-color: transparent;
}
.panel__content.is-social.has-image .panel__overlay .panel__overlay-footer > i svg {
  fill: #ffffff;
}
.panel__content.is-social.has-image .panel__overlay .panel__overlay-footer a,
.panel__content.is-social.has-image .panel__overlay .panel__overlay-footer span {
  color: transparent;
}
.panel__content.is-social:hover .panel__overlay, .panel__content.is-social:focus-within .panel__overlay, .panel__content.is-social:hover .panel__overlay.has-image, .panel__content.is-social:focus-within .panel__overlay.has-image {
  background-color: var(--brand-secondary-color);
}
.panel__content.is-social:hover .panel__overlay .panel__overlay-text, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-text, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-text, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-text {
  color: #ffffff;
}
.panel__content.is-social:hover .panel__overlay .panel__overlay-text h3, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-text h3, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-text h3, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-text h3 {
  color: #ffffff;
}
.panel__content.is-social:hover .panel__overlay .panel__overlay-footer, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer {
  border-color: #ffffff;
}
.panel__content.is-social:hover .panel__overlay .panel__overlay-footer > i svg, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer > i svg, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer > i svg, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer > i svg {
  fill: #ffffff;
}
.panel__content.is-social:hover .panel__overlay .panel__overlay-footer a,
.panel__content.is-social:hover .panel__overlay .panel__overlay-footer span, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer a,
.panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer span, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer a,
.panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer span, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer a,
.panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer span {
  color: #ffffff;
}

a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay {
  background-color: var(--brand-secondary-color);
}
a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-text {
  color: #ffffff;
}
a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-text h3 {
  color: #ffffff;
}
a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer {
  border-color: #ffffff;
}
a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer > i svg {
  fill: #ffffff;
}
a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer a,
a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer span {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .sm-mobile-scroll {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .sm-mobile-scroll > div {
    display: inline-block;
    vertical-align: top;
  }
}
