.hotels-static-page,
.hotels-static-page *:not(i):not(.fa):not(.fas):not(.far):not(.fal):not(.fab) {
  box-sizing: border-box;
  font-family: var(--site-font-family, "Inter", Arial, Helvetica, sans-serif) !important;
  letter-spacing: 0;
}

.hotels-static-page {
  --static-ink: #090e3f;
  --static-muted: #4d5167;
  --static-line: #d7dce8;
  --static-blue: var(--color-primary, #1668e3);
  --static-blue-soft: #eaf1ff;
  background: #fff;
  color: var(--static-ink);
}

.hotels-static-hero {
  display: flex;
  align-items: flex-end;
  min-height: clamp(340px, 34vw, 470px);
  padding: calc(var(--hotels-header-offset, 100px) + 42px) max(24px, 10vw) 54px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .44) 52%, rgba(0, 0, 0, .12)),
    var(--hotels-static-hero-image) center / cover no-repeat;
  color: #fff;
}

.hotels-static-hero-copy {
  width: min(760px, 82vw);
}

.hotels-static-eyebrow,
.hotels-static-hero-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.hotels-static-hero-copy span {
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

.hotels-static-hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.04;
}

.hotels-static-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  line-height: 1.48;
}

.hotels-static-section {
  padding: 54px 0;
}

.hotels-static-section--soft {
  background: #f6f8fc;
}

.hotels-static-shell {
  width: min(80vw, 1360px);
  margin: 0 auto;
}

.hotels-static-section-head {
  max-width: 760px;
  margin: 0 0 28px;
}

.hotels-static-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hotels-static-eyebrow {
  background: var(--static-blue-soft);
  background: color-mix(in srgb, var(--static-blue) 12%, #fff);
  color: var(--static-blue);
}

.hotels-static-section-head h2,
.hotels-static-copy h2,
.hotels-static-error-copy h2 {
  margin: 0 0 12px;
  color: var(--static-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.hotels-static-section-head p,
.hotels-static-copy p,
.hotels-static-card p,
.hotels-static-error-copy p {
  color: var(--static-muted);
  font-size: 15px;
  line-height: 1.65;
}

.hotels-static-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.hotels-static-media {
  overflow: hidden;
  min-height: 420px;
  border-radius: 0;
  background: #dfe6f3;
}

.hotels-static-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hotels-static-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hotels-static-stat {
  padding: 18px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  background: #fff;
}

.hotels-static-stat i {
  margin-bottom: 10px;
  color: var(--static-blue);
  font-size: 24px;
}

.hotels-static-stat strong {
  display: block;
  color: var(--static-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.hotels-static-stat span {
  display: block;
  margin-top: 6px;
  color: var(--static-muted);
  font-size: 13px;
  line-height: 1.35;
}

.hotels-static-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hotels-static-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 14, 63, .06);
}

.hotels-static-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--static-blue-soft);
  background: color-mix(in srgb, var(--static-blue) 12%, #fff);
  color: var(--static-blue);
  font-size: 21px;
}

.hotels-static-card-count {
  display: block;
  margin-bottom: 14px;
  color: #b6bfd2;
  font-size: 13px;
  font-weight: 900;
}

.hotels-static-card h3 {
  margin: 0 0 10px;
  color: var(--static-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
}

.hotels-static-card img {
  display: block;
  max-width: 190px;
  max-height: 74px;
  margin: 0 auto;
  object-fit: contain;
}

.hotels-static-card a,
.hotels-static-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--static-blue);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.hotels-static-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 34px;
  align-items: start;
}

.hotels-static-faq-image {
  position: sticky;
  top: 122px;
  overflow: hidden;
  min-height: 430px;
  background: #dfe6f3;
}

.hotels-static-faq-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hotels-static-accordion {
  display: grid;
  gap: 12px;
}

.hotels-static-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid var(--static-line) !important;
  border-radius: 8px !important;
  background: #fff;
}

.hotels-static-accordion .accordion-header {
  padding: 0;
  border: 0;
  background: transparent;
}

.hotels-static-accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  background: #fff;
  color: var(--static-ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
}

.hotels-static-accordion .accordion-body {
  padding: 0 18px 18px;
  color: var(--static-muted);
  font-size: 15px;
  line-height: 1.65;
}

.hotels-static-empty {
  padding: 24px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.hotels-static-error {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.hotels-static-error-visual {
  display: grid;
  place-items: center;
  min-height: 330px;
  background: #f6f8fc;
}

.hotels-static-error-visual img {
  max-width: min(360px, 80%);
}

.hotels-static-error-copy {
  max-width: 560px;
}

.hotels-static-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--static-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.hotels-static-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.hotels-static-sidebar {
  position: sticky;
  top: 122px;
  padding: 22px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 14, 63, .06);
}

.hotels-static-sidebar h2 {
  margin: 0 0 16px;
  color: var(--static-ink);
  font-size: 18px;
  font-weight: 900;
}

.hotels-static-service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotels-static-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  color: var(--static-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.hotels-static-service-list a:hover,
.hotels-static-service-list a:focus {
  border-color: var(--static-blue);
  color: var(--static-blue);
}

.hotels-static-detail-card {
  padding: 30px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 14, 63, .06);
}

.hotels-static-detail-card h2 {
  margin: 0 0 14px;
  color: var(--static-ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.hotels-static-detail-summary {
  margin: 0 0 24px;
  color: var(--static-muted);
  font-size: 16px;
  line-height: 1.65;
}

.hotels-static-detail-card .summernote-content {
  color: var(--static-muted);
  font-size: 15px;
  line-height: 1.75;
}

.hotels-static-detail-card .summernote-content :is(h1, h2, h3, h4, h5, h6) {
  color: var(--static-ink);
  font-family: var(--site-font-family, "Inter", Arial, Helvetica, sans-serif) !important;
  font-weight: 900;
}

.hotels-static-detail-card .summernote-content img {
  max-width: 100%;
  height: auto;
}

.hotels-static-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
  gap: 28px;
  align-items: start;
}

.hotels-static-blog-page .hotels-static-shell,
.hotels-static-blog-detail-page .hotels-static-shell {
  width: min(92vw, 1280px);
}

.hotels-static-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.hotels-static-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 14, 63, .06);
}

.hotels-static-blog-card figure {
  flex: 0 0 auto;
  margin: 0;
  aspect-ratio: 16 / 10;
  min-height: 210px;
  overflow: hidden;
  background: #dfe6f3;
}

.hotels-static-blog-card figure a {
  display: block;
  width: 100%;
  height: 100%;
}

.hotels-static-blog-card figure img,
.hotels-static-blog-card figure .lazy {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 210px !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.hotels-static-blog-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px;
}

.hotels-static-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 12px;
  padding: 0;
  color: var(--static-muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hotels-static-meta i {
  margin-right: 6px;
  color: var(--static-blue);
}

.hotels-static-blog-card h2 {
  margin: 0;
  color: var(--static-ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
}

.hotels-static-blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.hotels-static-blog-card .hotels-static-primary-link {
  margin-top: auto;
  padding-top: 16px;
}

.hotels-static-blog-card h2 a:hover,
.hotels-static-blog-card h2 a:focus {
  color: var(--static-blue);
}

.hotels-static-pagination {
  margin-top: 26px;
}

.hotels-static-pagination .pagination {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.hotels-static-pagination .page-link {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--static-line);
  border-radius: 8px !important;
  color: var(--static-ink);
  font-size: 14px;
  font-weight: 800;
}

.hotels-static-pagination .page-item.active .page-link,
.hotels-static-pagination .page-link:hover,
.hotels-static-pagination .page-link:focus {
  border-color: var(--static-blue);
  background: var(--static-blue);
  color: #fff;
  box-shadow: none;
}

.hotels-static-blog-sidebar {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 16px;
}

.hotels-static-widget {
  padding: 22px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 14, 63, .06);
}

.hotels-static-widget h2 {
  margin: 0 0 16px;
  color: var(--static-ink);
  font-size: 18px;
  font-weight: 900;
}

.hotels-static-search-form {
  position: relative;
}

.hotels-static-search-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 48px 0 14px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  color: var(--static-ink);
}

.hotels-static-search-form button {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--static-blue);
  color: #fff;
}

.hotels-static-category-list,
.hotels-static-recent-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotels-static-category-list a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--static-line);
  border-radius: 8px;
  color: var(--static-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hotels-static-category-list .active a,
.hotels-static-category-list a:hover,
.hotels-static-category-list a:focus {
  border-color: var(--static-blue);
  color: var(--static-blue);
}

.hotels-static-recent-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.hotels-static-recent-list img {
  width: 76px;
  height: 64px;
  object-fit: cover;
}

.hotels-static-recent-list h3 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.hotels-static-recent-list h3 a {
  color: var(--static-ink);
  text-decoration: none;
}

.hotels-static-recent-list h3 a:hover,
.hotels-static-recent-list h3 a:focus {
  color: var(--static-blue);
}

.hotels-static-recent-list span {
  color: var(--static-muted);
  font-size: 12px;
  font-weight: 700;
}

.hotels-static-blog-article {
  padding: 0;
  overflow: hidden;
}

.hotels-static-blog-article > figure {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  height: clamp(360px, 44vw, 620px);
  min-height: 360px;
  overflow: hidden;
  background: #dfe6f3;
}

.hotels-static-blog-article > figure img,
.hotels-static-blog-article > figure .lazy {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 360px !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.hotels-static-blog-article-body {
  padding: 28px;
}

.hotels-static-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hotels-static-share span,
.hotels-static-share a {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
}

.hotels-static-share span {
  padding: 0 10px;
  color: var(--static-ink);
  font-size: 13px;
  font-weight: 900;
}

.hotels-static-share a {
  border: 1px solid var(--static-line);
  color: var(--static-blue);
  text-decoration: none;
}

.hotels-static-button:hover,
.hotels-static-button:focus {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .hotels-static-split,
  .hotels-static-faq-layout,
  .hotels-static-error,
  .hotels-static-detail-layout,
  .hotels-static-blog-layout {
    grid-template-columns: 1fr;
  }

  .hotels-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotels-static-faq-image {
    position: relative;
    top: auto;
  }

  .hotels-static-sidebar {
    position: relative;
    top: auto;
  }

  .hotels-static-blog-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767.98px) {
  .hotels-static-hero {
    min-height: 330px;
    padding: calc(var(--hotels-header-offset, 82px) + 34px) 18px 42px;
  }

  .hotels-static-shell {
    width: calc(100% - 36px);
  }

  .hotels-static-section {
    padding: 38px 0;
  }

  .hotels-static-grid,
  .hotels-static-stats,
  .hotels-static-blog-grid {
    grid-template-columns: 1fr;
  }

  .hotels-static-blog-article-body {
    padding: 20px;
  }

  .hotels-static-blog-article > figure {
    height: 280px;
    min-height: 280px;
  }

  .hotels-static-blog-article > figure img,
  .hotels-static-blog-article > figure .lazy {
    min-height: 280px !important;
  }

  .hotels-static-media,
  .hotels-static-media img,
  .hotels-static-faq-image,
  .hotels-static-faq-image img {
    min-height: 260px;
  }
}
