.vse-single {
  background: #f7f4ee;
  color: #061826;
  min-height: 100vh;
  padding-bottom: 90px;
}

.vse-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #061826;
}

.vse-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vse-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vse-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 24, 38, .25) 0%, rgba(6, 24, 38, .82) 100%),
    linear-gradient(90deg, rgba(6, 24, 38, .72) 0%, rgba(6, 24, 38, .2) 100%);
}

.vse-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 42px;
}

.vse-hero-content h1 {
  max-width: 880px;
  margin: 0 0 16px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -.055em;
}

.vse-hero-content > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.45;
}

.vse-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.vsc-save-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.vsc-save-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .2);
}

.vsc-save-button.is-saved {
  background: #d8a657;
  border-color: #d8a657;
  color: #061826;
}

.vsc-save-button.is-loading {
  opacity: .65;
  pointer-events: none;
}

.vse-meta-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: -34px;
}

.vse-meta-strip > div {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(6, 24, 38, .12);
}

.vse-meta-strip span {
  display: block;
  margin-bottom: 6px;
  color: #65727b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.vse-meta-strip strong {
  display: block;
  color: #061826;
  font-size: 18px;
  line-height: 1.2;
}

.vse-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 38px;
}

.vse-content {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(6, 24, 38, .08);
}

.vse-content h2,
.vse-content h3 {
  color: #061826;
  letter-spacing: -.03em;
}

.vse-content p,
.vse-content li {
  color: #37454f;
  font-size: 17px;
  line-height: 1.75;
}

.vse-content img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.vse-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background: #f4e7d0;
}

.vse-box h2 {
  margin-top: 0;
}

.vse-box ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.vse-sidebar {
  position: relative;
}

.vse-booking-card {
  padding: 24px;
  border-radius: 28px;
  background: #061826;
  color: #fff;
  box-shadow: 0 24px 60px rgba(6, 24, 38, .22);
}

.vse-booking-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}

.vse-booking-card p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
}

.vse-booking-card .vsp-btn {
  width: 100%;
  margin-top: 12px;
}

.vse-small-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 760px) {
  .vse-meta-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vse-content {
    padding: 34px;
  }
}

@media (min-width: 1100px) {
  .vse-hero {
    min-height: 78vh;
  }

  .vse-meta-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vse-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
  }

  .vse-sidebar {
    position: sticky;
    top: 110px;
  }
}