/* Static hotel SEO pages — https://www.udchalo.com/hotels/<city>-hotels.html
 *
 * Loaded by every page uc-supportv2-sls generates (see src/hotelSeo/generator/
 * hotelDirectoryScript.js, constant `stylesheetPath`). The pages carry no inline CSS at
 * all, so this file is the whole visual layer: if it 404s the page renders as raw HTML.
 * Do not move or rename it without updating that constant in the support repo.
 *
 * Mobile first. The filter sheet and the collapsed search band exist only below 768px —
 * their trigger/backdrop/close nodes are display:none above it, which keeps them out of
 * .results-layout's flex flow and leaves the desktop sidebar untouched.
 *
 * Palette follows src/assets/css/variables.scss so these pages sit next to the Angular
 * app without a visible seam.
 */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --uc-primary: #1e54b0;
  --uc-primary-dark: #00388c;
  --uc-primary-soft: #ebf5ff;
  --uc-accent: #3398d5;
  --uc-orange: #f48d42;
  --uc-green: #00b00c;
  --uc-green-soft: #e8f8ec;
  --uc-ink: #333333;
  --uc-ink-soft: #545454;
  --uc-muted: #747e9c;
  --uc-muted-light: #858585;
  --uc-line: #dae0ed;
  --uc-line-soft: #e7eaee;
  --uc-page: #f3f6f9;
  --uc-white: #ffffff;
  --uc-radius: 8px;
  --uc-radius-lg: 12px;
  --uc-shadow: 0 1px 3px rgba(30, 84, 176, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --uc-shadow-lg: 0 4px 16px rgba(30, 84, 176, .12);
  --uc-container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--uc-ink);
  background: var(--uc-page);
}

img {
  max-width: 100%;
  border: 0;
}

a {
  color: var(--uc-primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  color: var(--uc-ink);
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--uc-primary);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--uc-container);
  margin: 0 auto;
  padding: 0 16px;
}

/* Visually hidden but still read out — used on the rooms/adults/children selects, which
   are labelled by the group heading rather than by a visible label of their own. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- header */

.header {
  background: var(--uc-white);
  border-bottom: 1px solid var(--uc-line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.header__logo img {
  display: block;
  width: 110px;
  height: auto;
}

/* The nav is the least useful thing on a phone and the first to wrap the header onto a
   second line, so it drops out below 768px. Breadcrumb still carries the hierarchy. */
.nav {
  display: none;
}

.nav__link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--uc-ink-soft);
  border-radius: var(--uc-radius);
}

.nav__link:hover {
  color: var(--uc-primary);
  background: var(--uc-primary-soft);
  text-decoration: none;
}

.nav__link--active {
  color: var(--uc-primary);
  font-weight: 600;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__refer,
.header__support {
  display: none;
}

.header__support,
.header__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--uc-ink-soft);
  border-radius: var(--uc-radius);
}

.header__login {
  color: var(--uc-primary);
  border: 1px solid var(--uc-line);
}

.header__login span {
  display: none;
}

.header__avatar {
  flex: none;
}

/* ------------------------------------------------------------ breadcrumb */

.breadcrumb {
  background: var(--uc-white);
  border-bottom: 1px solid var(--uc-line-soft);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-size: 12px;
  white-space: nowrap;
  color: var(--uc-muted);
}

.breadcrumb__list li + li::before {
  content: '\203A';
  margin-right: 6px;
  color: var(--uc-muted-light);
}

.breadcrumb__list a {
  color: var(--uc-muted);
}

.breadcrumb__list [aria-current='page'] {
  color: var(--uc-ink);
  font-weight: 500;
}

/* ----------------------------------------------------------- search band */

.searchband {
  background: var(--uc-primary-dark);
  padding: 12px 0;
}

/* Checkbox toggle, not JS: the band starts collapsed in the markup so there is no
   expand-then-collapse flicker, and it still opens with JS disabled. */
.searchband__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.searchband__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--uc-radius);
  color: var(--uc-white);
  cursor: pointer;
}

.searchband__summaryText {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.searchband__summaryMain {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.searchband__summaryMeta {
  font-size: 12px;
  opacity: .85;
}

.searchband__summaryAction {
  flex: none;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

.searchband__summaryClose {
  display: none;
}

.searchband__inner {
  display: none;
  gap: 10px;
  padding-top: 10px;
}

/* Expanded state — mobile only; above 768px the form is always visible. */
.searchband__toggle:checked ~ .searchband__inner {
  display: grid;
}

.searchband__toggle:checked ~ .searchband__bar .searchband__summaryOpen {
  display: none;
}

.searchband__toggle:checked ~ .searchband__bar .searchband__summaryClose {
  display: inline;
}

.searchband__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px;
  background: var(--uc-white);
  border-radius: var(--uc-radius);
}

.searchband__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--uc-muted);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.searchband__value {
  width: 100%;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--uc-ink);
  background: transparent;
  border: 0;
}

.searchband__input::placeholder {
  color: var(--uc-muted-light);
  font-weight: 400;
}

.searchband__guests {
  display: flex;
  gap: 6px;
}

/* Sized to content rather than to an equal share: "0 Children" is the longest option and
   gets clipped if the three selects are forced to the same width. */
.searchband__select {
  flex: 0 1 auto;
  min-width: 0;
  padding: 2px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--uc-ink);
  background: transparent;
  border: 0;
}

.searchband__hint {
  margin-top: 4px;
  font-size: 11px;
  color: var(--uc-orange);
}

.searchband__cta {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--uc-white);
  background: var(--uc-orange);
  border: 0;
  border-radius: var(--uc-radius);
  cursor: pointer;
}

.searchband__cta:hover {
  filter: brightness(1.05);
}

/* Autosuggest dropdown, populated by hotel-directory.js. */
.suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 260px;
  overflow-y: auto;
  background: var(--uc-white);
  border: 1px solid var(--uc-line);
  border-radius: var(--uc-radius);
  box-shadow: var(--uc-shadow-lg);
}

.suggest[hidden] {
  display: none;
}

.suggest li {
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid var(--uc-line-soft);
}

.suggest li:last-child {
  border-bottom: 0;
}

.suggest li:hover,
.suggest li[aria-selected='true'] {
  background: var(--uc-primary-soft);
}

/* ------------------------------------------------------------------ main */

.main {
  padding-top: 16px;
  padding-bottom: 32px;
}

.intro {
  margin-bottom: 16px;
}

.intro__heading {
  font-size: 22px;
  line-height: 1.25;
}

.intro__count {
  margin-top: 4px;
  font-size: 13px;
  color: var(--uc-muted);
}

.intro__text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--uc-ink-soft);
}

.intro__text:last-child {
  margin-bottom: 0;
}

.uplink {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.section {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--uc-white);
  border-radius: var(--uc-radius-lg);
  box-shadow: var(--uc-shadow);
}

.section__heading {
  font-size: 17px;
  margin-bottom: 4px;
}

.section__note {
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--uc-muted);
}

.section--defence {
  background: linear-gradient(180deg, var(--uc-primary-soft) 0%, var(--uc-white) 60%);
  border: 1px solid var(--uc-line);
}

/* --------------------------------------------------------------- results */

.results-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.results-layout__main {
  min-width: 0;
}

.sortbar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sortbar::-webkit-scrollbar {
  display: none;
}

.sortbar__btn {
  flex: none;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--uc-ink-soft);
  background: var(--uc-white);
  border: 1px solid var(--uc-line);
  border-radius: 999px;
  cursor: pointer;
}

.sortbar__btn:hover {
  border-color: var(--uc-primary);
  color: var(--uc-primary);
}

.sortbar__btn--active {
  color: var(--uc-white);
  background: var(--uc-primary);
  border-color: var(--uc-primary);
}

.results-count {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--uc-muted);
}

.hotel-list {
  display: grid;
  gap: 12px;
}

/* ----------------------------------------------------------- hotel cards */

.hotel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--uc-white);
  border: 1px solid var(--uc-line-soft);
  border-radius: var(--uc-radius-lg);
  transition: box-shadow .15s ease, border-color .15s ease;
}

.hotel-card:hover {
  border-color: var(--uc-line);
  box-shadow: var(--uc-shadow-lg);
}

/* Set by hotel-directory.js when a facet filter excludes the card. */
.hotel-card[hidden] {
  display: none;
}

.hotel-card__mediaLink {
  display: block;
  flex: none;
}

.hotel-card__img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--uc-line-soft);
}

/* Fallback tile when the supplier gave us no hero image. */
.hotel-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 180px;
  font-size: 40px;
  font-weight: 600;
  color: var(--uc-primary);
  background: var(--uc-primary-soft);
}

.hotel-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 8px;
  padding: 12px;
}

.hotel-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.hotel-card__name {
  font-size: 15px;
  line-height: 1.35;
}

.hotel-card__name a {
  color: var(--uc-ink);
}

.hotel-card__rating {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--uc-white);
  background: var(--uc-green);
  border-radius: 4px;
}

.rating-badge small {
  font-size: 10px;
  font-weight: 400;
  opacity: .85;
}

.rating-label {
  font-size: 11px;
  color: var(--uc-muted);
}

.hotel-card__locality,
.hotel-card__near {
  font-size: 12px;
  color: var(--uc-muted);
}

.hotel-card__near {
  color: var(--uc-accent);
  font-weight: 500;
}

.hotel-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-card__badges:empty {
  display: none;
}

.badge {
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  background: var(--uc-line-soft);
  color: var(--uc-ink-soft);
}

.badge--refundable {
  color: var(--uc-green);
  background: var(--uc-green-soft);
}

.badge--extra {
  color: #a15b00;
  background: #fff3e0;
}

.badge--type {
  color: var(--uc-primary);
  background: var(--uc-primary-soft);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 12px;
  color: var(--uc-muted);
}

.amenities:empty {
  display: none;
}

.amenities__item {
  position: relative;
}

.amenities__item + .amenities__item::before {
  content: '\2022';
  position: absolute;
  left: -7px;
  color: var(--uc-line);
}

.hotel-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--uc-line-soft);
}

.hotel-card__price {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--uc-ink);
}

.price__meta {
  font-size: 11px;
  color: var(--uc-muted);
}

.hotel-card__cta {
  flex: none;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--uc-white);
  background: var(--uc-primary);
  border-radius: var(--uc-radius);
}

.hotel-card__cta:hover {
  background: var(--uc-primary-dark);
  text-decoration: none;
}

/* --------------------------------------------------------- load more/CTA */

.loadmore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--uc-primary);
  background: var(--uc-white);
  border: 1px solid var(--uc-line);
  border-radius: var(--uc-radius);
  cursor: pointer;
}

.loadmore[hidden] {
  display: none;
}

.loadmore:hover {
  background: var(--uc-primary-soft);
}

.loadmore__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--uc-line);
  border-top-color: var(--uc-primary);
  border-radius: 50%;
  animation: uc-spin .7s linear infinite;
}

/* is-loading is set by hotel-directory.js for the duration of the fetch. */
.loadmore.is-loading {
  cursor: progress;
}

.loadmore.is-loading .loadmore__spinner {
  display: block;
}

@keyframes uc-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loadmore__spinner {
    animation-duration: 2.4s;
  }

  .hotel-card {
    transition: none;
  }
}

.cta-block {
  display: block;
  margin-top: 14px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--uc-primary);
  background: var(--uc-primary-soft);
  border-radius: var(--uc-radius);
}

.cta-block:hover {
  text-decoration: none;
  background: #dceaff;
}

/* --------------------------------------------------------------- filters */

/* Below 768px the panel is a bottom sheet behind a fixed trigger. The toggle, bar,
   backdrop, close and done nodes all disappear above 767px, so the desktop sidebar is
   the plain <aside> and nothing here participates in its layout. */
.filters__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filters__bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--uc-white);
  border-top: 1px solid var(--uc-line);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .08);
}

.filters__barBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--uc-white);
  background: var(--uc-primary);
  border-radius: 999px;
  cursor: pointer;
}

.filters__barCount {
  min-width: 20px;
  padding: 1px 6px;
  font-size: 12px;
  text-align: center;
  color: var(--uc-primary);
  background: var(--uc-white);
  border-radius: 999px;
}

.filters__barCount[hidden] {
  display: none;
}

.filters__backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  background: rgba(0, 0, 0, .45);
}

.filters {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  background: var(--uc-white);
  border-radius: var(--uc-radius-lg) var(--uc-radius-lg) 0 0;
  transform: translateY(100%);
  transition: transform .2s ease;
  visibility: hidden;
}

.filters__toggle:checked ~ .filters {
  transform: translateY(0);
  visibility: visible;
}

.filters__toggle:checked ~ .filters__backdrop {
  display: block;
}

/* Locks the page behind the open sheet. */
.filters__toggle:checked ~ .filters__bar {
  display: none;
}

.filters__card {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
}

.filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.filters__title {
  font-size: 16px;
}

.filters__close {
  display: inline-flex;
  padding: 4px;
  color: var(--uc-ink-soft);
  cursor: pointer;
}

.map-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--uc-primary-soft);
  border-radius: var(--uc-radius);
}

.map-entry__preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--uc-white);
  border-radius: 50%;
}

.map-entry__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--uc-primary);
}

.filter__group {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--uc-line-soft);
}

.filter__group:last-of-type {
  border-bottom: 0;
}

.filter__heading {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--uc-ink);
}

.filter__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--uc-ink-soft);
  cursor: pointer;
}

.filter__box {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--uc-primary);
  cursor: pointer;
}

.filter__label {
  flex: 1 1 auto;
}

.filter__count {
  flex: none;
  font-size: 12px;
  color: var(--uc-muted-light);
}

/* Both are revealed by hotel-directory.js once a filter is applied. */
.filters__reset {
  display: block;
  width: 100%;
  padding: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--uc-primary);
  background: transparent;
  border: 1px solid var(--uc-line);
  border-radius: var(--uc-radius);
  cursor: pointer;
}

.filters__reset[hidden] {
  display: none;
}

.filters__cta {
  display: block;
  margin-top: 10px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--uc-primary);
  background: var(--uc-primary-soft);
  border-radius: var(--uc-radius);
}

.filters__done {
  flex: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: var(--uc-white);
  background: var(--uc-primary);
  cursor: pointer;
}

/* Nothing matched the applied facets — injected by hotel-directory.js. */
.filters__empty {
  padding: 24px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--uc-muted);
}

/* ---------------------------------------------------- chips / link lists */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--uc-ink-soft);
  background: var(--uc-page);
  border: 1px solid var(--uc-line);
  border-radius: 999px;
}

.chip:hover {
  color: var(--uc-primary);
  border-color: var(--uc-primary);
  text-decoration: none;
}

.chip__count {
  font-size: 11px;
  color: var(--uc-muted-light);
}

.chip--up {
  color: var(--uc-primary);
  background: var(--uc-primary-soft);
  border-color: var(--uc-primary-soft);
  font-weight: 600;
}

.collections {
  display: grid;
  gap: 12px;
}

.collection {
  padding: 12px;
  background: var(--uc-page);
  border-radius: var(--uc-radius);
}

.collection__title {
  font-size: 14px;
  margin-bottom: 4px;
}

.collection__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--uc-ink-soft);
}

.places {
  display: grid;
  gap: 12px;
}

.place {
  padding: 12px;
  border: 1px solid var(--uc-line-soft);
  border-radius: var(--uc-radius);
}

.place__title {
  font-size: 14px;
}

.place__area {
  margin: 2px 0 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--uc-accent);
}

.place__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--uc-ink-soft);
}

/* ------------------------------------------------------------------ FAQs */

.faq {
  display: grid;
  gap: 8px;
}

.faq__item {
  padding: 12px;
  background: var(--uc-page);
  border-radius: var(--uc-radius);
}

.faq__question {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  float: right;
  font-size: 18px;
  line-height: 1;
  color: var(--uc-primary);
}

.faq__item[open] .faq__question::after {
  content: '\2212';
}

.faq__answer {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--uc-ink-soft);
}

/* --------------------------------------------------------------- linkhub */

.linkhub__group {
  margin-top: 14px;
}

.linkhub__group:first-of-type {
  margin-top: 0;
}

.linkhub__heading {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--uc-ink);
}

.linkhub__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 16px;
}

.linkhub__cols a {
  font-size: 13px;
  color: var(--uc-ink-soft);
}

.linkhub__cols a:hover {
  color: var(--uc-primary);
}

.linkhub__group--cross .linkhub__cols a {
  color: var(--uc-primary);
}

/* ---------------------------------------------------------------- footer */

.footer {
  padding: 24px 0;
  background: var(--uc-white);
  border-top: 1px solid var(--uc-line);
}

.footer__heading {
  margin-bottom: 14px;
  font-size: 17px;
}

.footer__content {
  display: grid;
  gap: 14px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__icon {
  flex: none;
  width: 44px;
  height: auto;
}

.contact__label {
  font-size: 12px;
  color: var(--uc-muted);
}

.contact__value {
  font-size: 14px;
  font-weight: 600;
}

.contact__value a {
  color: var(--uc-primary);
}

/* ==================================================== tablet and desktop */

@media (min-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 24px;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .header__refer,
  .header__support {
    display: inline-flex;
  }

  .header__login span {
    display: inline;
  }

  .header__logo img {
    width: 120px;
  }

  /* Search band is always open; the mobile summary and its toggle come out entirely. */
  .searchband {
    padding: 16px 0;
  }

  .searchband__bar {
    display: none;
  }

  .searchband__inner,
  .searchband__toggle:checked ~ .searchband__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.7fr auto;
    align-items: stretch;
    gap: 8px;
    padding-top: 0;
  }

  .searchband__cta {
    align-self: stretch;
  }

  .intro__heading {
    font-size: 28px;
  }

  .main {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .section {
    padding: 20px;
  }

  .section__heading {
    font-size: 19px;
  }

  /* Sidebar + results. The sheet chrome is gone, so .filters is a plain column. */
  .results-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .results-layout__main {
    flex: 1 1 auto;
  }

  .filters {
    position: static;
    flex: none;
    width: 268px;
    max-height: none;
    transform: none;
    visibility: visible;
    background: var(--uc-white);
    border-radius: var(--uc-radius-lg);
    box-shadow: var(--uc-shadow);
  }

  .filters__bar,
  .filters__backdrop,
  .filters__close,
  .filters__done,
  .filters__toggle:checked ~ .filters__bar {
    display: none;
  }

  .filters__card {
    overflow: visible;
  }

  .hotel-list {
    gap: 14px;
  }

  /* Horizontal card: image left, body right. */
  .hotel-card {
    flex-direction: row;
  }

  .hotel-card__mediaLink {
    width: 240px;
  }

  .hotel-card__img,
  .hotel-card__media {
    height: 100%;
    min-height: 190px;
  }

  .hotel-card__body {
    padding: 14px 16px;
  }

  .hotel-card__name {
    font-size: 16px;
  }

  .collections,
  .places {
    grid-template-columns: repeat(2, 1fr);
  }

  .linkhub__cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .collections,
  .places {
    grid-template-columns: repeat(3, 1fr);
  }

  .linkhub__cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .filters {
    width: 288px;
  }
}

/* ------------------------------------------------------------------ print */

@media print {
  .searchband,
  .filters,
  .filters__bar,
  .sortbar,
  .loadmore {
    display: none !important;
  }

  body {
    background: #fff;
  }
}
