/* =========================
   HOMEPAGE HERO OVERRIDES
   ========================= */

/* Large tablets / iPad portrait */
@media only screen and (min-width: 768px) and (max-width: 1180px) {

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero__inner {
    width: min(1380px, calc(100% - 72px));
    margin: 0 auto;
    padding: 48px 0 64px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__title {
    font-size: clamp(3.6rem, 6vw, 5rem);
    line-height: 0.95;
  }

  .hero__media {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #e8dfd1;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 950px;
  object-fit: cover;
  object-position: center 38%;
}
}