.location {
  background-image: url(assets/location/tile-padova.jpg);
  background-size: 250px;
}
.grid-container--location {
  background-image: url(assets/location/background-location-mobile.jpg);
  background-size: 100%;
  background-position: center;
  padding-top: 8rem;
  width: 100%;
  height: 415px;
}

@media (min-width: 35rem) {
  .grid-container--location {
    background-image: url(assets/location/background-location-tablet.jpg);
  }
}
@media (min-width: 60em) {
  .grid-container--location {
    background-image: url(assets/location/background-location-desktop.jpg);
    align-items: center;
  }
  .grid-container--location > :first-child {
    grid-column: 2;
  }
  .grid-container--location > :last-child {
    grid-column: 3;
  }
}

#googleMap {
  width: 100%;
  height: 80%;
  padding: 1em;
  border: 0;
}

/* ===== EFI11 Nearby Hotels styles (append to the page CSS) ===== */
#efi11-hotels {
  /* margin-top: 2.5rem; 
  border-top: 1px solid #e5e7eb; 
  padding-top: 1.5rem;*/
  border-radius: 15px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

#efi11-hotels h2 {
  font-size: 1.6rem;
  margin: 0 0 .5rem;
}

.hotels__note {
  color: #555;
  margin: 0 0 1rem;
  font-size: .95rem;
}

.hotels__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.hotel {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
}

.hotel__name {
  margin: 0 0 .2rem;
  font-size: 1.05rem;
}

.hotel__addr,
.hotel__stars,
.hotel__tel,
.hotel__site {
  margin: .15rem 0;
  font-size: .95rem;
}

.hotel__addr .CAP::before,
.hotel__addr .city::before,
.hotel__addr .province::before {
  content: " ";
}

.hotel__addr .CAP,
.hotel__addr .province {
  display: none;
}

.hotel__stars {
  letter-spacing: .05em;
  color: #111;
}

.hotel a {
  text-decoration: none;
  border-bottom: 1px dotted #999;
}

.hotel__distance { 
  margin-top: .2rem;
  font-size: .93rem; 
  color: #333; 
}

/*
@media (prefers-color-scheme: white) {
  #efi11-hotels { border-top-color: #2f3338; }
  .hotel { border-color: #2f3338; background: #121416; color: #9aa0a6; }
  .hotels__note { color: #9aa0a6; }
  .hotel a { border-bottom-color: #666; }
  .hotel__distance { color: #c9cdd2; }
}
 ===== /EFI11 Nearby Hotels styles ===== */