/* Room page */
.room-hero .hero-slide::after {
  display: none;
}

.room-intro {
  padding: 34px 24px 40px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.room-intro-inner {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.room-intro h1 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 400;
}

.room-intro p {
  margin: 0;
}

.room-floor > h2 {
  margin: 0;
  padding: 42px 24px 28px;
  text-align: center;
  font-size: 27px;
  font-weight: 400;
}

.room-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
}

.room-card-reverse .room-photo {
  order: 2;
}

.room-photo {
  min-width: 0;
}

.room-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.room-details {
  align-self: center;
  padding: 45px 4%;
}

.room-details h3 {
  margin: 0 0 25px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.room-details > p {
  margin: 0 0 20px;
}

.room-details table {
  width: 100%;
  border-collapse: collapse;
}

.room-details th,
.room-details td {
  padding: 13px 16px;
  border-top: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.room-details tr:last-child th,
.room-details tr:last-child td {
  border-bottom: 1px solid #ddd;
}

.room-details th {
  width: 25%;
  text-align: right;
  font-weight: 400;
  white-space: nowrap;
}

.amenities {
  padding: 90px 24px 105px;
}

.amenities-inner {
  max-width: 720px;
  margin-inline: auto;
}

.amenities h2 {
  margin: 0 0 35px;
  text-align: center;
  font-size: 27px;
  font-weight: 400;
}

.amenities-card {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2.3fr;
  align-items: stretch;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
}

.amenities-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-card p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 28px 34px;
}

@media (max-width: 700px) {
  .room-hero {
    height: 67vw;
    min-height: 260px;
  }

  .room-intro {
    padding: 30px 24px 34px;
  }

  .room-intro h1 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .room-intro p {
    text-align: left;
  }

  .room-floor > h2 {
    padding: 36px 20px 22px;
    font-size: 24px;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card-reverse .room-photo {
    order: 0;
  }

  .room-details {
    padding: 30px 22px 38px;
  }

  .room-details h3 {
    font-size: 19px;
  }

  .room-details th,
  .room-details td {
    padding: 11px 8px;
  }

  .room-details th {
    width: 28%;
  }

  .amenities {
    padding: 58px 20px 70px;
  }

  .amenities h2 {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .amenities-card {
    grid-template-columns: 1fr;
  }

  .amenities-card img {
    aspect-ratio: 3 / 2;
  }

  .amenities-card p {
    padding: 24px;
  }
}
