/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/* =============================================
=                    Hero                      =
============================================= */
@layer sdc {
  .hero {
    --country-hero-color: var(--color-white);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: 15.625rem;
    background-color: var(--color-grey-2);
  }
  .hero.image-none {
    --country-hero-color: var(--color-black-main);
  }
  .hero__content,
  .hero__image {
    grid-row-start: 1;
    grid-column-start: 1;
  }
  .hero__image {
    position: relative;
  }
  .hero__image:after {
    position: absolute;
    content: "";
    background: linear-gradient(270deg, rgb(0, 0, 0, 0.25) 48.4%, rgb(0, 0, 0, 0) 60%), linear-gradient(0deg, rgb(26, 26, 26, 0.4), rgb(26, 26, 26, 0.4));
    inset: 0;
  }
  .hero__image img,
  .hero__image picture {
    display: block;
  }
  .hero__image img {
    width: 100%;
    height: auto;
    height: 15.625rem;
    object-fit: cover;
  }
  .hero__content {
    z-index: 2;
    align-self: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem;
    color: var(--country-hero-color);
  }
  @media (min-width: 77.5rem) {
    .hero__content {
      padding: 0;
    }
  }
  .hero__subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 0.8757rem + 0.5848vw, 1.25rem);
    font-weight: 300;
    line-height: 1.2em;
  }
}
