/* Custom overrides */
.frame-loader-container .row [class*="col-"] {
  margin-bottom: 30px;
}
.frame-loader-container .row [class*="col-"] .room_item-1 {
  height: 100%;
}
.frame-loader-container .airbnb-embed-frame {
  width: 100% !important;
  max-width: 100% !important;
}
@media (min-width: 992px) {
  .frame-loader-container .row > [class*="col-"] {
    display: flex;
  }
  .frame-loader-container .row > [class*="col-"] .room_item-1 {
    flex: 1;
  }
}
.header_top .lang-toggle {
  background: transparent;
  border: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 20px;
  padding: 6px 12px;
  line-height: 1;
  cursor: pointer;
}
.header_top .lang-toggle:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.frame-loader-container {
  position: relative;
}
.frame-loader-container .room-wrap-1 {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.frame-loader-container.is-ready .room-wrap-1 {
  opacity: 1;
}
.frame-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background-color: #fff;
  z-index: 5;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.frame-preloader .spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border-top-color: #000;
  animation: frame-spin 0.8s linear infinite;
}
.frame-preloader .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #232323;
}
.frame-loader-container.is-ready .frame-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes frame-spin {
  to {
    transform: rotate(360deg);
  }
}
.tips-item .img {
  margin-bottom: 18px;
}
.tips-item {
  margin-bottom: 30px;
}
.section-recommendations {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 70px;
}
.recommendations-header {
  margin-bottom: 35px;
}
.recommendations-header .heading {
  margin-bottom: 10px;
}
.recommendations-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.recommendation-panel {
  background: #fff;
  border: 1px solid #1a1a1a;
}
.recommendation-panel summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.35;
  color: #111;
  padding: 14px 18px;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  background: #fff;
}
.recommendation-panel summary::-webkit-details-marker {
  display: none;
}
.recommendation-panel summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}
.recommendation-panel[open] summary::after {
  content: '\2212';
}
.recommendation-table {
  width: 100%;
}
.recommendation-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid #d9d9d9;
}
.recommendation-row:last-child {
  border-bottom: 0;
}
.recommendation-head {
  background: #111;
}
.recommendation-head .recommendation-cell {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.recommendation-cell {
  padding: 12px 14px;
  color: #111;
  font-size: 14px;
  line-height: 1.45;
  border-right: 1px solid #d9d9d9;
  overflow-wrap: anywhere;
}
.recommendation-cell:last-child {
  border-right: 0;
}
.recommendation-cell a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.beach-table .recommendation-row {
  grid-template-columns: 1.4fr 2fr 1fr;
}
.medical-table .recommendation-row {
  grid-template-columns: 1.5fr 1.8fr 1fr 1fr;
}
@media (max-width: 767px) {
  .section-recommendations {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .recommendation-panel summary {
    font-size: 17px;
    padding: 12px 14px;
  }
  .recommendation-table {
    overflow-x: auto;
  }
  .recommendation-row {
    min-width: 640px;
  }
  .beach-table .recommendation-row {
    min-width: 560px;
  }
  .medical-table .recommendation-row {
    min-width: 680px;
  }
}
.news-item .img {
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #fff;
}
.news-item {
  margin-bottom: 40px;
}
.news-item .img img {
  width: 100% !important;
  height: 235px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}
.news-item .img:hover img {
  transform: scale(1.04);
}
.news-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.news-page .room-wrap-1 .room_item-1 {
  display: flex;
  flex: 1;
  width: 100%;
}
.news-item .img,
.news-item .text {
  width: 100%;
}
.news-item .img a {
  display: block;
}
.news-item .text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 22px;
}
.news-item h2 {
  font-size: 18px;
  line-height: 1.45;
  min-height: 84px;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.news-item .news-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6f6f6f;
  margin-bottom: 18px;
  min-height: 34px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
}
.news-item p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 68px;
  margin-bottom: 24px;
  color: #4a4a4a;
  line-height: 1.85em;
}
.news-item .awe-btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: 150px;
  padding: 12px 18px;
  letter-spacing: 0.08em;
}
.news-source-note {
  text-align: center;
  font-size: 12px;
  color: #8b8b8b;
  margin-top: 20px;
}
.news-page .room-wrap-1 .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -18px;
  margin-right: -18px;
}
.news-page .room-wrap-1 .row > [class*="col-"] {
  display: flex;
  align-items: stretch;
  padding-left: 18px;
  padding-right: 18px;
  padding-bottom: 16px;
}
.news-page .room-wrap-1 {
  margin-top: 0;
}
.news-page .room-wrap-1 .room_item-1 {
  margin-top: 0;
}
.news-page .room-wrap-1,
.news-page .section-room,
.news-page .section-room .container,
.news-page .room-wrap-1 .row {
  background: #fff;
}
@media (max-width: 767px) {
  .news-page .room-wrap-1 .row {
    margin-left: -12px;
    margin-right: -12px;
  }
  .news-page .room-wrap-1 .row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
  }
  .news-item .img img {
    height: 210px;
  }
  .news-item .text {
    padding: 20px 18px 18px;
  }
  .news-item h2 {
    min-height: 78px;
    font-size: 17px;
  }
  .news-item .news-meta {
    margin-bottom: 14px;
  }
  .news-item p {
    min-height: 60px;
    margin-bottom: 20px;
  }
}
.section-room .room_item-1 {
  margin-top: 0;
}
