.property-hero-panorama {
  padding-top: 2rem;
}

.property-hero-panorama__wrapper {
  overflow: hidden;
}

.property-hero-panorama__container {
  height: 65dvh;
  position: relative;
}

/* Tablet Landscape Up - Min 900px */
@media (min-width: 900px) {
  .property-hero-panorama__container {
    height: 100dvh;
  }
}

.property-hero-panorama__header {
  z-index: 2;
  width: 100%;
  max-width: 700px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Tablet Landscape Up - Min 900px */
@media (min-width: 900px) {
  .property-hero-panorama__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    top: 23%;
  }
}

.property-hero-panorama__header aside {
  width: 100%;
  font-size: 15px;
  font-family: var(--accent-font-family);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.property-hero-panorama__header section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Tablet Landscape Up - Min 900px */
@media (min-width: 900px) {
  .property-hero-panorama__header section  {
    justify-content: space-between;
  }
}

.property-hero-panorama__header section h1 {
  font-size: 32px;
  font-family: var(--header-font-family);
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* Tablet Landscape Up - Min 900px */
@media (min-width: 900px) {
  .property-hero-panorama__header section h1 {
    width: calc(45% - 1rem);
    font-size: 42px;
  }
}

.property-hero-panorama__header section footer p {
  font-size: 16px;
  font-family: var(--body-font-family);
  margin-bottom: 1rem;
}

/* Tablet Landscape Up - Min 900px */
@media (min-width: 900px) {
  .property-hero-panorama__header section footer {
    width: 55%;
    font-size: 18px;
  }

  .property-hero-panorama__header section footer p {
    font-size: 18px;
  }
}

.property-hero-panorama__image {
  width: 100%;
  height: 65dvh;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 75%;
}

/* Tablet Landscape Up - Min 900px */
@media (min-width: 900px) {
  .property-hero-panorama__image {
    height: 100dvh;
    background-position: 25% 75%;
  }
}

/* .property-hero-panorama__image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
} */

