
h3 {
  font-size: 1.5em;
  font-weight: 700;
}

p {
  font-size: 1em;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text-gray);
}

.description {
  white-space: wrap;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  display: flex;
  justify: space-between;
  align-items: stretch;
  width: 100%;
  gap: 24px;
  padding: 24px;
  flex-wrap: wrap;
}

.box {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  position: relative;
  padding: 24px;
  background: #fff;
}

.box-top {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 12px;
  margin-bottom: 36px;
}

.box-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 50% 20%;
}

.title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-title {
  border-left: 3px solid var(--purple);
  padding-left: 12px;
}

.user-follow-info {
  color: hsl(0, 0%, 60%);
  text-align: center;
  width: 100%;
}

.button {
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: auto;
  padding: 16px;
  color: #000;
  background: transparent;
  box-shadow: 0px 0px 0px 1px black inset;
  transition: background 0.4s ease;
}

.button:hover {
  background: var(--purple);
}

.fill-one {
  background: var(--light-bg);
}

.fill-two {
  background: var(--pink);
}

/* RESPONSIVE QUERIES */

@media (min-width: 320px) {
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 460px) {
  .title-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 640px) {
  .box {
    flex-basis: calc(50% - 12px);
  }
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 840px) {
  .title-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }

}

@media (min-width: 1024px) {
  .box {
    flex-basis: calc(33.3% - 16px);
  }
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 1100px) {
  .box {
    flex-basis: calc(25% - 18px);
  }
}


.box-modal {
	max-width: 80vw!important;
}

.hotel-header {
    text-align: center;
    color: #C00F1D;
}
.hotel-subtitle {
    text-align: center;
    font-style: italic;
    margin-top: 4px;
    margin-bottom: 8px;
}
.hotel-distance {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.hotel-images {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hotel-images img {
    width: 444px;
    height: 250px;
    max-width: 80vw;
    object-fit: cover;
    border-radius: 8px;
}
.hotel-description {
    margin-bottom: 20px;
    line-height: 1.6;
}
.hotel-pricing-title {
    color: #2D71A4;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 16px;
}
.custom-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    border: 1px solid #2D71A4;
    border-radius: 10px;
    overflow: hidden;
}
.custom-table th,
.custom-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #c0d7e9;
    border-right: 1px solid #c0d7e9;
}
.custom-table tr th:last-child,
.custom-table tr td:last-child {
    border-right: none;
}
.custom-table tr:last-child td {
    border-bottom: none;
}
.custom-table th {
    background-color: #f0f6fb;
    color: #2D71A4;
    font-weight: bold;
}
.custom-table tr:nth-child(even) {
    background-color: #f9fcff;
}
.hotel-rules {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hotel-rules strong {
    color: #C00F1D;
}
.hotel-rules u {
    color: #2D71A4;
}
.booking-link {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}
.booking-link a {
    color: #2D71A4;
    text-decoration: underline;
}


@media only screen and (max-width: 767px) {
  .box-modal {
    width: calc(100vw - 10px)!important;
    max-width: calc(100vw - 10px)!important;
  }
  .arcticmodal-container_i2 {
    padding: 0!important;
  }
  .content{
    max-width: 100vw!important;
}
}

.box-modal_close {
    font-weight: 900!important;
}

.hotel-block{
    padding-top: 20px;
}

.content{
    max-width: 90vw;
}