@layer specific {
  .header {
    aspect-ratio: 2/1;
    color: white;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
  }

  .header__logo {
    max-height: 64px;
    margin-bottom: 1.5rem;
  }

  .header__title {
    font-size: clamp(1.2rem, 6vw, 3.8rem);
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 2px #000;
  }

  .header__slideshow {
    grid-column: 1;
    grid-row: 1;

    max-width: 1000px;
    position: absolute;
    margin: auto;
    min-width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    padding: 10vw;
    position: relative;
  }

  .header__texts {
    margin: 0 5vw;
  }

  .header__text {
    display: none;
    margin: 0;
    padding: 5px 0;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 2px #000;
  }

  .header__nav {
    display: none;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 700;
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
    margin-left: 4vw;
    margin-right: 4vw;
  }

  @media screen and (min-width: 960px) {
    .header__text {
      display: block;
    }

    .header__content {
      flex-direction: row;
    }

    .header__nav {
      display: flex;
    }
  }
}
