@charset "UTF-8";
/* Lentera — homepage
   FullSizeSlideBanner runs edge to edge at the top. The promotion text and the
   homepage description are two separate blocks and never share a section. */
.au-fullbanner {
  position: relative;
  overflow: hidden;
  background: var(--au-ground);
}
.au-fullbanner .fullsize-banner-slider {
  position: relative;
}
.au-fullbanner .au-fullbanner-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1400/600;
  overflow: hidden;
  background: var(--au-ph-bg);
}
.au-fullbanner .au-fullbanner-media img,
.au-fullbanner .au-fullbanner-media a {
  display: block;
  width: 100%;
  height: 100%;
}
.au-fullbanner .au-fullbanner-media img {
  object-fit: cover;
}
.au-fullbanner .swiper-pagination {
  bottom: 16px;
}

/* Shown when the company has uploaded no full size banner. Needs to outrank the
   `background` shorthand on `.au-fullbanner .au-fullbanner-media`, which would
   otherwise reset background-image back to none. */
.au-fullbanner .au-fullbanner-default {
  background-image: url("/images/banner-default.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.au-promotion .au-prose {
  max-width: var(--au-measure);
}

.au-homedesc .au-readmore {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.au-homedesc .au-readmore-toggle {
  display: none;
  margin-top: 16px;
}

@media (max-width: 767.98px) {
  .au-fullbanner .au-fullbanner-media {
    aspect-ratio: 4/3;
  }
  .au-fullbanner .swiper-button-prev,
  .au-fullbanner .swiper-button-next {
    display: none;
  }
}
