.static_container {
  max-width: 1200px;
}
.rooms_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.rooms_container h1 {
  font-size: 3rem;
  font-family: "Bona Nova", serif;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  text-align: center;
}
.rooms_container > p {
  text-align: center;
  font-family: "Alexandria", sans-serif;
  font-weight: 300;
}
.rooms_item {
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  margin: 2rem 0;
}
.rooms_item h2 {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  color: var(--text-color) !important;
}
.rooms_item h2 a {
  text-decoration: none;
  color: var(--text-color) !important;
}
.rooms_item h3 {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}
.rooms_item p {
  font-family: "Alexandria", sans-serif;
  font-weight: 300;
  color: var(--text-color-50);
  font-size: 0.875rem;
}
.rooms_item > p > b {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  color: var(--text-color-50);
}
.rooms_item > .button {
  display: block;
  margin-top: 1rem;
  text-align: center;
}
.rooms_price {
  display: grid;
  gap: 5px;
  margin: 0.5rem 0;
}
.rooms_price_item {
  padding: 1rem 0.5rem;
  border-radius: 7px;
  border: 1px dashed var(--border-color-10);
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
}
.rooms_price_item span {
  font-weight: 300;
}
.rooms_price_item span:first-of-type {
  font-size: 0.875rem;
}
.rooms_price_item span:last-of-type {
  color: var(--text-color-50);
}
.rooms_price_item span:last-of-type b {
  color: var(--text-color);
}
.rooms_gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.rooms_gallery img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .rooms_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 640px) {
  .rooms_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: flex-start;
  }
}
