@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ruberoid";
  src: url("../assets/fonts/Ruberoid-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ruberoid";
  src: url("../assets/fonts/Ruberoid-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ruberoid";
  src: url("../assets/fonts/Ruberoid-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #1f4fb8;
  --blue-800: #2659c7;
  --blue-700: #2f66d6;
  --gray-100: #f2f2f2;
  --gray-200: #e7e7e7;
  --gray-800: #1d2433;
  --orange-500: #f27a1a;
  --white: #ffffff;
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  color: var(--gray-800);
  background: #EBEBEB;
  overflow-wrap: break-word;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video,
iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  max-width: 100%;
}

.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;
}

.container {
  width: min(1145px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
}

.container-hot-tours {
  width: min(1145px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  padding-top: 50px;
  border-radius: 32px;
}

.site-header {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 18px 0 22px;
  font-family: "Inter", "Arial", sans-serif;
}

.site-header--overlay {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 18px;
}

.logo--home {
  gap: 8px;
}

.logo-eagle-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo-img {
  height: 20px;
  width: 135px;
  display: block;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 500;
  font-size: 19px;
  padding: 6px 10px;
  border-radius: 20px;
  /* background: rgba(255, 255, 255, 0.12); */
}

.icon-img {
  width: 37px;
  height: 37px;
  display: block;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.home-burger-toggle,
.home-mobile-menu-wrap {
  display: none;
}

.home-burger-toggle {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.home-burger-icon,
.home-burger-icon::before,
.home-burger-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.home-burger-icon {
  position: relative;
}

.home-burger-icon::before,
.home-burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.home-burger-icon::before {
  top: -6px;
}

.home-burger-icon::after {
  top: 6px;
}

.home-burger-toggle.is-open .home-burger-icon {
  background: transparent;
}

.home-burger-toggle.is-open .home-burger-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.home-burger-toggle.is-open .home-burger-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.tour-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 12;
  background: transparent;
  padding: 14px 0 0;
  color: #dce7ff;
}

/* Guide/place detail pages have no hero strip above header, so render a blue backing. */
.template-guide .tour-header,
.template-place .tour-header {
  background: #1f52b2;
  padding: 14px 0 16px;
}

.template-guide .tour-header::before,
.template-place .tour-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/hero-pattern.svg") center / 1000px repeat;
  opacity: 1;
  pointer-events: none;
}

.template-guide .tour-header-row,
.template-place .tour-header-row {
  position: relative;
  z-index: 1;
}

.is-article-detail .tour-header {
  background: #1f52b2;
  padding: 14px 0 16px;
}

.is-article-detail .tour-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/hero-pattern.svg") center / 1000px repeat;
  opacity: 1;
  pointer-events: none;
}

.is-article-detail .tour-header-row {
  position: relative;
  z-index: 1;
}

.tour-header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.tour-header-logo {
  justify-self: start;
  padding: 0;
}

.tour-header-center {
  display: flex;
  justify-self: center;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  position: relative;
}

.tour-header-nav {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  width: fit-content;
  height: 62px;
  background: rgba(7, 20, 60, 0.35);
  border-radius: 19px;
  padding: 6px 10px;
  gap: 7px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.tour-nav-indicator,
.tour-nav-hover {
  position: absolute;
  left: 0;
  top: 6px;
  height: 50px;
  border-radius: 8px;
  transition: none;
  z-index: 0;
}

.tour-nav-indicator {
  background: #ffffff;
}

.tour-nav-hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
}

.tour-header .tour-nav-link {
  width: auto;
  min-width: 0;
  height: 50px;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: row;
  gap: 8px;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 18px;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 500;
  color: #d0ddfa;
  background: transparent;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 160ms ease;
}

.tour-header .tour-nav-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: filter 160ms ease;
}

.tour-nav-more {
  position: relative;
  flex: 0 0 auto;
}

.tour-header .tour-nav-more-toggle {
  min-width: 104px;
  height: 62px;
  border: 0;
  background: rgba(7, 20, 60, 0.35);
  border-radius: 19px;
  cursor: pointer;
}

.tour-nav-more-caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.tour-nav-more.is-open .tour-nav-more-caret {
  transform: rotate(-135deg) translateY(0);
}

.tour-nav-more-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(12, 32, 83, 0.24);
  display: grid;
  gap: 4px;
  z-index: 30;
}

.tour-nav-more-menu[hidden] {
  display: none;
}

.tour-nav-more-link {
  min-height: 40px;
  border-radius: 10px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #1f2d4f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.tour-nav-more-link:hover {
  color: #1f52b2;
  background: #f2f7ff;
}

.tour-nav-more-link.is-active {
  color: #1f52b2;
  background: #eaf1ff;
}

.tour-nav-more-link .tour-header-link-external {
  opacity: 0.7;
}

.tour-header .tour-nav-more-toggle.is-active,
.tour-nav-more.is-open .tour-nav-more-toggle {
  color: #1f52b2;
  background: #ffffff;
}

.tour-header .tour-nav-link.is-active {
  color: #1f52b2;
  background: #ffffff;
}

.tour-header .tour-nav-link.is-active img {
  filter: none;
}

.tour-header .tour-nav-link:not(.is-active):hover {
  color: #ffffff;
}

.tour-header .tour-nav-text {
  transition: color 160ms ease;
}

.tour-header-link-external {
  position: static;
  width: 10px;
  height: 10px;
  opacity: 0.8;
}

.tour-header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tour-header-action {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.tour-header-action .icon-img {
  width: 37px;
  height: 37px;
}

.tour-burger-toggle,
.tour-mobile-menu-wrap {
  display: none;
}

.tour-page {
  background: #f2f4f8;
  padding: 0 0 54px;
}

.tour-page .container {
  width: min(1145px, calc(100% - 32px));
  margin: 0 auto;
}

.tour-hero {
  position: relative;
  background: #1f52b2;
  padding: 100px 0 48px;
  overflow: hidden;
}

.tour-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/hero-pattern.svg") center / 1000px repeat;
  opacity: 1;
  pointer-events: none;
}

.tour-hero .container {
  position: relative;
  z-index: 1;
}

.tour-hero-shape {
  min-height: 0;
  padding: 0;
}

.tour-hero-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 24px;
  align-items: stretch;
  min-height: 457px;
  padding: 26px 30px 24px;
  background: url("../assets/tour-hero-layout.svg") center / 100% 100% no-repeat;

  padding-right: 20px;
}

.tour-hero-main {
  padding: 36px 26px 0 16px;
  min-width: 0;
}

.tour-overview {
  margin-top: 43px;
}

.tour-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.95fr);
  gap: 26px;
}

.tour-overview-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.tour-included-card,
.tour-details-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 38px;
}

.tour-badge,
.tour-bage {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 8px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #1f52b2;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  font-family: "Ruberoid", sans-serif;
}

.tour-page:not(.hotel-page) .tour-badge {
  margin-top: 9px;
  margin-left: 0;
}

.hotel-page .tour-badge {
  margin-top: 5px;
  margin-left: 40px;
}



/* 1-я карточка */
.hotel-hero-gallery-strip .hotel-media-item--thumb:nth-child(1) {

  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 24px;

}

/* 2-я карточка */
.hotel-hero-gallery-strip .hotel-media-item--thumb:nth-child(2) {
  border-radius: 5px;
}

/* 3-я карточка */
.hotel-hero-gallery-strip .hotel-media-item--thumb:nth-child(3) {
  border-radius: 5px;
}

/* 4-я (обычно +N) */
.hotel-hero-gallery-strip .hotel-media-item--thumb:nth-child(4) {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 5px;
}

.tour-badge img,
.tour-bage img {
  width: 20px;
  height: 20px;
  display: block;
}

.tour-badge span {
  padding-top: 5px;
}

.tour-title {
  margin: 20px 10px 22px;
  font-size: 52px;
  line-height: 0.98;
  color: #1f52b2;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.tour-description {
  margin: 10px;
  color: #525252;
  max-width: 471px;

  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-style: Regular;
  font-size: 20px;
  line-height: 105%;
  letter-spacing: 0%;
  overflow-wrap: anywhere;

}

.tour-hero-layout.is-compact .tour-hero-main {
  padding-top: 28px;
}

.tour-hero-layout.is-compact .tour-title {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.02;
}

.tour-hero-layout.is-compact .tour-description {
  font-size: 18px;
  line-height: 1.15;
}

.tour-hero-layout.is-compact-2 .tour-hero-main {
  padding-top: 22px;
}

.tour-hero-layout.is-compact-2 .tour-title {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.05;
}

.tour-hero-layout.is-compact-2 .tour-description {
  font-size: 17px;
  line-height: 1.2;
}

.tour-price {
  font-family: Inter;
  font-weight: 800;
  font-style: Extra Bold;
  font-size: 24px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: left;

  font-family: "Inter", sans-serif;
  width: 100px;

  color: #1f52b2;
  margin: 0;
}

.tour-meta {
  margin: 0;
  display: grid;
  gap: 0;
}

.tour-meta > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(31, 82, 178, 0.14);
}

.tour-meta dt {
  margin: 0;
  color: #868686;
  font-size: 18px;
  flex: 1 1 auto;
}

.tour-meta dd {
  margin: 0;
  color: #1b2a42;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-hero-media {
  position: relative;
  min-width: 0;
  width: 100%;
  background: transparent;
  padding-top: 10px;
}

.tour-cover {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  height: 382px;
  width: min(500px, 100%);
  max-width: 100%;
  background: linear-gradient(135deg, #13213d, #2a4f99);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.tour-section-title {
  width: 247;
  height: 32;
  top: 40px;
  left: 46px;
  border-width: 1.3px;
  opacity: 1;

  font-family: Ruberoid;
  font-weight: 300;
  font-style: Ultra Light;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;

  color: #0C131D;
  -webkit-text-stroke: 1px #0C131D;

  margin-top: 0;
}

.tour-included-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 10px;
  font-size: 18px;
  color: #4a4f59;
}

.tour-included-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  column-gap: 19px;
  align-items: start;
  min-width: 0;
  overflow-wrap: anywhere;
}

.tour-included-list li::before {
  content: "";
  position: static;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  margin-left: 15px;
  border-radius: 50%;
  background: #c6c6c6;
}

.tour-difficulty-dots {
  display: inline-flex;
  gap: 4px;
}

.tour-difficulty-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5d7dc;
}

.tour-difficulty-dots i.is-active {
  background: #1f52b2;
}

.tour-details-footer {
  margin-top: 26px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tour-price-wrap {
  position: relative;
  padding-right: 18px;
}

.tour-price-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 1px;
  height: 34px;
  background: #e0e2e6;
}

.tour-price-caption {
  font-size: 14px;
  line-height: 1.2;
  color: #8c9098;
}

.tour-book-btn {
  border: 1px;
  border-color: #00056233;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: #ffffff;
  border-radius: 10px;
  padding: 11px 47px;

  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  cursor: pointer;

  width: 252px;
  height: 40px;
}

.hotel-page .tour-description {
  max-width: 560px;
}

.hotel-amenity-groups {
  column-count: 2;
  column-gap: 28px;
}

.hotel-amenity-group {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 82, 178, 0.18);
  margin: 0 0 14px;
}

.hotel-amenity-group:first-child {
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 82, 178, 0.18);
}

.hotel-amenity-group-title {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b2a42;
}

.hotel-amenity-group-title-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%);
}

.hotel-amenity-group-title-icon.is-highlight {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.hotel-amenity-group-list {
  margin: 0;
}

.hotel-details-card .tour-meta > div {
  align-items: center;
}

.hotel-details-card .tour-meta dd {
  justify-content: flex-end;
}

.hotel-meta-row--address,
.hotel-meta-row--rules {
  flex-direction: column;
  gap: 8px;
  align-items: flex-start !important;
}

.hotel-meta-row--address dd,
.hotel-meta-row--rules dd {
  width: 100%;
  display: block;
  text-align: left;
}

.hotel-meta-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.hotel-meta-list li {
  margin: 0;
  color: #1b2a42;
}

.hotel-guests-picker {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d8deeb;
  border-radius: 12px;
  background: #f7f9ff;
  gap: 8px;
  box-shadow: none;
}

.hotel-guests-picker input {
  font-size: 15px;
  line-height: 1.2;
  color: #1b2a42;
  padding: 0;
  border: 0;
  background: transparent;
}

.hotel-guests-picker img {
  width: 16px;
  height: 16px;
}

.hotel-guests-picker .people-popover {
  left: 0;
  top: calc(100% + 8px);
}

.hotel-booking-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hotel-booking-card .tour-section-title {
  margin-bottom: 0;
}

.hotel-booking-subtitle {
  margin: 0;
  color: #606a7d;
  font-size: 16px;
  line-height: 1.35;
}

.hotel-booking-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-booking-fact {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid #d9e2f3;
  background: #f5f8ff;
  font-size: 14px;
  color: #34548f;
}

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

.hotel-booking-fields--rooms {
  padding: 14px;
  border-radius: 18px;
}

.hotel-booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hotel-booking-row--rooms {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.hotel-booking-input {
  display: grid;
  gap: 6px;
  position: relative;
}

.hotel-booking-input > span {
  font-size: 13px;
  line-height: 1.2;
  color: #76829b;
}

.hotel-booking-input input {
  width: 100%;
  height: 44px;
  border: 1px solid #d8deeb;
  border-radius: 12px;
  background: #f7f9ff;
  padding: 0 12px;
  color: #1b2a42;
  font-size: 15px;
}

.hotel-booking-input input:focus {
  outline: none;
  border-color: #2c63d4;
}

.hotel-booking-input--date .hotel-booking-date-field {
  position: relative;
  display: block;
}

.hotel-booking-input--date .hotel-booking-date-field input[data-hotel-date] {
  cursor: pointer;
  user-select: none;
  padding-right: 38px;
}

.hotel-booking-input--date .hotel-booking-date-field img {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  opacity: 0.72;
  pointer-events: none;
}

.hotel-booking-input--date .hotel-date-popover {
  left: 0;
  top: calc(100% + 8px);
  width: 300px;
  max-width: min(300px, calc(100vw - 48px));
  z-index: 22;
}

.hotel-booking-input--guests .hotel-guests-picker {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 12px;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.hotel-booking-input--guests .hotel-guests-picker input[type="text"] {
  width: 100%;
  min-width: 0;
  height: auto;
  font-size: 15px;
  line-height: 1.2;
}

.hotel-booking-action {
  display: flex;
  align-items: flex-end;
}

.hotel-booking-action-btn {
  min-width: 132px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(90deg, #ff9a0c 0%, #ef560f 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.hotel-booking-action-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.hotel-booking-input--guests .people-popover {
  left: 0;
  top: calc(100% + 8px);
  width: min(320px, calc(100vw - 48px));
  padding: 12px;
  z-index: 22;
}

.people-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.people-category-row + .people-category-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e0e7f4;
}

.people-category-label {
  display: grid;
  gap: 2px;
  color: #213557;
}

.people-category-label span {
  font-size: 14px;
  font-weight: 600;
}

.people-category-label small {
  font-size: 12px;
  color: #76829b;
}

.people-category-row .people-row {
  gap: 10px;
}

.people-category-row .people-btn {
  width: 30px;
  height: 30px;
}

.people-category-row .people-count {
  min-width: 22px;
}

.hotel-booking-footer {
  margin-top: 2px;
}

.hotel-booking-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hotel-booking-rules {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  color: #3f4756;
  font-size: 14px;
  line-height: 1.35;
}

.hotel-booking-rules li {
  margin: 0;
}

.hotel-rooms-section {
  margin-top: 26px;
}

.hotel-rooms-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 34px;
}

.hotel-rooms-head {
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(31, 82, 178, 0.2);
}

.hotel-rooms-head .tour-section-title {
  margin-bottom: 0;
}

.hotel-rooms-subtitle {
  margin: 0;
  font-size: 18px;
  color: #44526d;
}

.hotel-rooms-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-rooms-filter {
  min-height: 38px;
  border: 1px solid #ced9f0;
  background: #f8fbff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #2a4f9f;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hotel-rooms-filter:hover {
  background: #edf3ff;
  border-color: #9fb7ec;
}

.hotel-room-list {
  margin-top: 16px;
  display: grid;
  gap: 18px;
}

.hotel-room-list[hidden],
.hotel-room-row[hidden],
.hotel-offer-card[hidden],
.hotel-rooms-empty[hidden] {
  display: none !important;
}

.hotel-rooms-empty {
  margin-top: 16px;
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hotel-rooms-empty-image {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.hotel-rooms-empty-title {
  margin: 0;
  max-width: 720px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  color: #132750;
}

.hotel-rooms-empty-subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.35;
  color: #4b5975;
}

.hotel-room-row {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 18px;
  background: #ffffff;
  align-items: stretch;
}

.hotel-room-summary {
  display: grid;
  align-content: start;
  gap: 10px;
}

.hotel-room-photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ccd7ee;
  aspect-ratio: 16 / 10;
}

.hotel-room-photo-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.hotel-room-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotel-room-photo-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13, 31, 73, 0.7);
  color: #ffffff;
  font-size: 13px;
}

.hotel-room-title {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  color: #132750;
}

.hotel-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 16px;
  color: #4e5d78;
}

.hotel-room-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #e9effb;
}

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

.hotel-room-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d5e0f5;
  color: #435066;
  font-size: 14px;
}

.hotel-room-tag-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  object-fit: contain;
}

.hotel-room-offers {
  min-width: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 10px 10px 10px;
  border-radius: 16px;
  border: 1px solid #e2e9f6;
  background: #f5f8ff;
}

.hotel-room-offers:not(.is-scrollable) .hotel-room-offers-nav {
  opacity: 0;
  pointer-events: none;
}

.hotel-room-offers-track {
  flex: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.hotel-room-offers-track::-webkit-scrollbar {
  height: 6px;
}

.hotel-room-offers-track::-webkit-scrollbar-thumb {
  background: #ced8ec;
  border-radius: 999px;
}

.hotel-offer-card {
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #dbe3f2;
  border-radius: 14px;
  padding: 12px;
  min-height: 334px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotel-room-offers-nav {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 3px));
  width: 28px;
  height: 28px;
  border: 1px solid #b9c9ea;
  border-radius: 50%;
  background: #ffffff;
  color: #1f4fb8;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hotel-room-offers-nav--prev {
  left: 0;
}

.hotel-room-offers-nav--next {
  right: 0;
}

.hotel-room-offers.has-prev:is(:hover, :focus-within) .hotel-room-offers-nav--prev {
  opacity: 1;
  pointer-events: auto;
}

.hotel-room-offers.has-next:is(:hover, :focus-within) .hotel-room-offers-nav--next {
  opacity: 1;
  pointer-events: auto;
}

.hotel-room-offers-nav:hover:not(:disabled) {
  border-color: #8fa8da;
  color: #163f98;
}

.hotel-room-offers-nav:disabled {
  cursor: default;
}

.hotel-offer-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hotel-offer-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  color: #243855;
  font-size: 15px;
  line-height: 1.26;
  font-family: "Inter", "Arial", sans-serif;
}

.hotel-offer-point-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  object-fit: contain;
}

.hotel-offer-point.is-positive {
  color: #198322;
}

.hotel-offer-point-text {
  display: block;
  font-family: "Inter", "Arial", sans-serif;
}

.hotel-offer-footer {
  margin-top: auto;
  display: grid;
  gap: 4px;
}

.hotel-offer-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  border-radius: 8px;
  padding: 4px 8px;
  background: #e8f7d9;
  color: #2f7f1f;
  font-size: 14px;
  font-weight: 600;
}

.hotel-offer-price {
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  color: #122a56;
}

.hotel-offer-caption {
  color: #4b5568;
  font-size: 14px;
}

.hotel-offer-book-btn {
  margin-top: 6px;
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #2359cd 0%, #1f4fb8 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.hotel-page .tour-hero-layout {
  grid-template-columns: minmax(0, 1fr) 551px;
}

.hotel-page .tour-hero-media {
  width: 100%;
  max-width: 551px;
  justify-self: end;
  align-self: stretch;
  height: 100%;
  padding-top: 0;
}

.hotel-hero-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding-top: 0;
}

.hotel-hero-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 120px);
  column-gap: calc((551px - (129px * 4)) / 3);
  justify-content: space-between;
  margin-left: 41px;
}

.hotel-hero-gallery[data-thumb-count="4"] .hotel-hero-gallery-strip,
.hotel-hero-gallery[data-thumb-count="3"] .hotel-hero-gallery-strip,
.hotel-hero-gallery[data-thumb-count="2"] .hotel-hero-gallery-strip,
.hotel-hero-gallery[data-thumb-count="1"] .hotel-hero-gallery-strip {
  width: 510px;
  margin-left: 45px;
  column-gap: 8px;
  justify-content: stretch;
}

.hotel-hero-gallery[data-thumb-count="4"] .hotel-hero-gallery-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hotel-hero-gallery[data-thumb-count="3"] .hotel-hero-gallery-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hotel-hero-gallery[data-thumb-count="2"] .hotel-hero-gallery-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-hero-gallery[data-thumb-count="1"] .hotel-hero-gallery-strip {
  grid-template-columns: 1fr;
}

.hotel-hero-gallery[data-thumb-count="3"] .hotel-media-item--thumb:nth-child(n + 4),
.hotel-hero-gallery[data-thumb-count="2"] .hotel-media-item--thumb:nth-child(n + 3),
.hotel-hero-gallery[data-thumb-count="1"] .hotel-media-item--thumb:nth-child(n + 2) {
  display: none;
}

.hotel-media-section {
  margin-top: 26px;
}

.hotel-location-section {
  margin-top: 26px;
}

.hotel-location-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 34px;
  display: grid;
  gap: 0;
}

.hotel-location-card .tour-section-title {
  margin: 0 0 1px;
}

.hotel-location-address {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.45;
  color: #44526d;
}

.hotel-location-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dce6f7;
  background: #e9eef8;
}

.hotel-location-map {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.hotel-about-section {
  margin-top: 26px;
}

.hotel-about-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 34px;
}

.hotel-about-content {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.hotel-about-item {
  border-top: 1px dashed rgba(31, 82, 178, 0.18);
  padding-top: 12px;
}

.hotel-about-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.hotel-about-item-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b2a42;
}

.hotel-about-item-text {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4f59;
}

.hotel-media-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 34px;
}

.hotel-media-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hotel-media-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 196px;
  background: #d7dceb;
}

.hotel-media-item--hero {
  min-height: 0;
}

.hotel-media-item--primary {
  margin-left: 45px;
  margin-top: 10px;
  width: 510px;
  height: 225px;
  min-height: 225px;

  border-radius: 24px 24px 5px 5px; /* TL TR BR BL */
}

.hotel-media-item--thumb {
  height: 146px;
  min-height: 146px;
}

.hotel-media-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  display: block;
  cursor: zoom-in;
}

.hotel-media-trigger:focus-visible {
  outline: 2px solid #1f52b2;
  outline-offset: -2px;
}

.hotel-media-item--thumb.is-more .hotel-media-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 42, 0.55);
}

.hotel-hero-gallery-more {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  font-family: "Ruberoid", sans-serif;
}

.hotel-hero-gallery-more small {
  font-size: 0.58em;
  font-weight: 500;
}

.hotel-hero-gallery-hidden {
  display: none;
}

.hotel-media-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotel-hero-gallery[data-thumb-count="0"] {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hotel-hero-gallery[data-thumb-count="0"] .hotel-media-item--primary {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 24px;

}

.hotel-hero-gallery[data-thumb-count="0"] .hotel-media-item--primary img {
  object-fit: cover;
}

body.hotel-lightbox-open {
  overflow: hidden;
}

.hotel-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.hotel-gallery-lightbox[hidden] {
  display: none;
}

.hotel-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 42, 0.74);
  backdrop-filter: blur(4px);
}

.hotel-gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  border-radius: 20px;
  background: rgba(8, 18, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(10px) scale(0.99);
  opacity: 0;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hotel-gallery-lightbox.is-open .hotel-gallery-lightbox-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.hotel-gallery-stage {
  margin: 0;
  min-height: min(78vh, 760px);
  max-height: min(78vh, 760px);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hotel-gallery-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hotel-gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.hotel-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
}

.hotel-gallery-nav::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin: 0 auto;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.hotel-gallery-nav--prev {
  left: 12px;
}

.hotel-gallery-nav--prev::before {
  transform: rotate(-135deg);
}

.hotel-gallery-nav--next {
  right: 12px;
}

.hotel-gallery-nav--next::before {
  transform: rotate(45deg);
}

.hotel-gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  min-width: 84px;
  text-align: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
}

.tour-days {
  margin-top: 43px;
}

.tour-days-list {
  display: grid;
  gap: 14px;
}

.tour-day-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px 46px;
}

.tour-day-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.tour-day-head {
  min-width: 0;
}

.tour-day-label {
  margin: 0;
  color: #676767;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Inter", sans-serif;

}

.tour-day-title {
  margin-top: 1px;
  font-size: 24px;
  color: #0C131D;
  font-weight: 600;
  margin-bottom: 0;
}

.tour-day-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #d7e3fb;
  color: #1f52b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;

  margin-top: 8.5px;
}

.tour-day-toggle-icon {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-top: -2px;
}

.tour-day-body {
  display: grid;
  gap: 43px;
  min-width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 360ms ease, opacity 260ms ease, margin-top 260ms ease;
}

.tour-day-card.is-open .tour-day-body {
  margin-top: 35px;
  max-height: 900px;
  opacity: 1;
}

.tour-day-card.is-open .tour-day-toggle-icon {
  transform: translateY(-1px);
}

.tour-day-description {
  margin: 0;
  color: #676767;
  line-height: 110%;
  font-size: 18px;
}

.tour-day-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.tour-day-images {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.tour-day-images::-webkit-scrollbar {
  display: none;
}

.tour-day-image {
  border-radius: 14px;
  flex: 0 0 calc((100% - 30px) / 4);
  min-height: 126px;
  background: linear-gradient(135deg, #13213d, #2a4f99);
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
}

.tour-day-gallery-prev,
.tour-day-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #d7e3fb;
  color: #1f52b2;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.tour-day-gallery-prev {
  left: 8px;
}

.tour-day-gallery-next {
  right: 8px;
}

.tour-day-gallery.has-prev .tour-day-gallery-prev,
.tour-day-gallery.has-next .tour-day-gallery-next {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tour-day-gallery-prev::before,
.tour-day-gallery-next::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  margin: 0 auto;
}

.tour-day-gallery-prev::before {
  transform: rotate(-135deg);
}

.tour-day-gallery-prev::after,
.tour-day-gallery-next::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 96px;
  height: 140px;
  transform: translateY(-50%);
  border-radius: 16px;
  pointer-events: none;
  z-index: -1;
}

.tour-day-gallery-prev::after {
  left: -20px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0) 100%);
}

.tour-day-gallery-next::after {
  right: -20px;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0) 100%);
}

.tour-day-gallery-prev:disabled,
.tour-day-gallery-next:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tour-reviews {
  margin-top: 43px;
  padding-bottom: 56px;
}

.tour-reviews-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px 46px;
}

.tour-reviews-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.tour-reviews-empty {
  margin: 18px 0 0;
  color: #676767;
  font-size: 18px;
  line-height: 1.3;
}

.tour-reviews-empty a {
  color: #1f52b2;
  font-weight: 600;
  text-decoration: none;
}

.tour-reviews-empty a:hover {
  text-decoration: underline;
}

.reviews-page {
  background: #f2f4f8;
  min-height: 100vh;
  padding-bottom: 56px;
}

.reviews-hero {
  position: relative;
  background: #1f52b2;
  min-height: 480px;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.reviews-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/hero-pattern.svg") center / 1000px repeat;
  opacity: 1;
  pointer-events: none;
}

.reviews-hero .container {
  position: relative;
  z-index: 1;
}

.reviews-hero-inner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.reviews-title {
  margin: 0;
  color: #ffffff;
  font-family: "Ruberoid", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  -webkit-text-stroke: 2.5px #ffffff;

  margin-top: 60px;
}

.reviews-content {
  margin-top: -20px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 26px;
  align-items: start;
  margin-top: 85px;
}

.reviews-list-card,
.reviews-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 34px;
  height: 878px;
}

.reviews-list {
  display: grid;
  gap: 14px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.reviews-form-card {
  overflow-y: auto;
}

.review-item {
  border-radius: 18px;
  background: #f6f8fc;
  padding: 18px 20px;
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.review-avatar.is-blue {
  background: #2f8ce6;
}

.review-avatar.is-yellow {
  background: #e7b535;
}

.review-avatar.is-gray {
  background: #8d96a3;
}

.review-avatar.is-red {
  background: #ef4040;
}

.review-avatar::before,
.review-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  background: transparent;
}

.review-avatar::before {
  top: 23%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.review-avatar::after {
  bottom: 15%;
  width: 64%;
  height: 32%;
  border-radius: 999px 999px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 0;
}

.review-meta {
  display: grid;
  gap: 1px;
}

.reviews-page .review-meta {
  gap: 6px;
  min-width: 0;
}

.reviews-page .review-author-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tour-label {
  margin-top: 2px;
  color: #5c6474;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.review-tour-link {
  color: #1f52b2;
  text-decoration: none;
  font-weight: 600;
}

.review-tour-link:hover {
  text-decoration: underline;
}

.review-author {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 110%;
  color: #121826;
}

.reviews-page .review-author {
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.1;
}

.review-stars {
  display: inline-block;
  color: #f3a314;
  letter-spacing: 0.06em;
  font-size: 18px;
}

.reviews-page .review-stars-inline {
  display: inline-flex;
  align-items: center;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff6d8;
}

.reviews-page .review-stars-inline .is-filled {
  color: #f4b400;
  text-shadow: 0 1px 0 rgba(204, 138, 0, 0.2);
}

.reviews-page .review-stars-inline .is-empty {
  color: #e7d9a3;
}

.reviews-page .review-tour-title {
  margin: -2px 0 0;
  color: #2c68bd;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.reviews-page a.review-tour-title:hover {
  text-decoration-thickness: 2px;
}

.review-text {
  margin: 16px 0 0;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  line-height: 110%;
  color: #000000;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tour-reviews .review-photo-grid {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-reviews .review-photo-item {
  border: 0;
  padding: 0;
  width: 88px;
  height: 88px;
  min-height: 0;
  flex: 0 0 88px;
  border-radius: 7px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #d6dce8;
}

.reviews-form-title {
  margin: 0;
  font-family: "Ruberoid", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #0c131d;
}

.reviews-form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.reviews-field {
  display: grid;
  gap: 8px;
}

.reviews-field > span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  color: #737373;
}

.reviews-field input[type="text"],
.reviews-field select,
.reviews-field textarea {
  width: 100%;
  border: 1px solid #d9e0f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1b2a42;
  outline: none;
}

.reviews-field input[type="text"]::placeholder,
.reviews-field textarea::placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  color: #737373;
}

.reviews-field input[type="text"]:focus,
.reviews-field select:focus,
.reviews-field textarea:focus {
  border-color: #1f52b2;
  box-shadow: 0 0 0 3px rgba(31, 82, 178, 0.12);
}

.reviews-field select {
  min-height: 46px;
  padding-right: 42px;
  cursor: pointer;
  appearance: none;
  background-color: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, #8f9fc0 50%),
    linear-gradient(135deg, #8f9fc0 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.reviews-field textarea {
  resize: vertical;
  min-height: 454px;
}

.reviews-field--file input[type="file"] {
  border: 1px solid #d9e0f0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #ffffff;
  color: #1b2a42;
  font-size: 15px;
}

.reviews-field--file small {
  color: #707d91;
  font-size: 13px;
  line-height: 1.3;
}

.reviews-stars-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.reviews-stars-input input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reviews-stars-input label {
  font-size: 0;
  line-height: 0;
  color: #d4d9e4;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.reviews-stars-input label::before {
  content: "★";
  display: block;
  font-size: 33px;
  line-height: 1;
}

.reviews-stars-input label:hover,
.reviews-stars-input label:hover ~ label,
.reviews-stars-input input:checked ~ label {
  color: #f3a314;
}

.reviews-submit {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  height: 50px;

  margin-top: 50px;
}

.reviews-auth-submit {
  margin-top: 16px;
}

.review-message {
  margin-top: 14px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.review-message.is-success {
  background: #e8f5e9;
  color: #1d6d35;
}

.review-message.is-error {
  background: #ffe9e9;
  color: #b03838;
}

.articles-page {
  background: #ebebeb;
  min-height: 100vh;
  padding-bottom: 56px;
}

.articles-hero {
  position: relative;
  background: #1f52b2;
  min-height: 560px;
  padding: 150px 0 100px;
  overflow: hidden;
}

.articles-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/hero-pattern.svg") center / 1000px repeat;
  opacity: 1;
  pointer-events: none;
}

.articles-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 34px;
}

.articles-title {
  margin: 0;
  color: #ffffff;
  font-family: "Ruberoid", sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  -webkit-text-stroke: 2.5px #ffffff;
}

.articles-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 640px;
}

.articles-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 25px;
  border-radius: 12px;
  background: #f8f8f8;
  color: #737373;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  border: 1.5px solid #00000042;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.articles-hero-tag:hover {
  background: #ffffff;
}

.articles-hero-tag.is-active {
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  border-color: transparent;
  color: #ffffff;
}

.section--articles-read {
  padding-top: 56px;
}

.articles-read-shell {
  padding: 0;
  background: transparent;
}

.articles-read-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.articles-read-card {
  display: block;
  border-radius: 16px;
  background: #ffffff;
  padding: 8px;
  color: #121826;
  text-decoration: none;
  transition: transform 180ms ease;
}

.articles-read-card:hover {
  transform: translateY(-2px);
}

.articles-read-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
}

.articles-read-card-body {
  margin-top: 8px;
  text-align: center;
}

.articles-read-card-date {
  display: block;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
}

.articles-read-card-title {
  margin: 8px 0 0;
  color: #121826;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.08;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.articles-read-card-topic {
  margin: 8px 0 0;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
}

@media (min-width: 769px) {
  .section--articles-read .articles-read-card-body,
  .section--articles-read .articles-read-card-date,
  .section--articles-read .articles-read-card-title,
  .section--articles-read .articles-read-card-topic {
    text-align: left;
  }
}

.article-hero-strip {
  position: relative;
  background: #1f52b2;
  min-height: 240px;
  padding: 126px 0 28px;
  overflow: hidden;
}

.article-hero-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/hero-pattern.svg") center / 1000px repeat;
  opacity: 1;
  pointer-events: none;
}

.article-breadcrumb-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.article-back-btn {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  position: relative;
}

.article-back-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translate(-40%, -50%) rotate(-135deg);
}

.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: #d5e1fb;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  border: 0;
}

.article-breadcrumb > * {
  min-width: 0;
}

.article-breadcrumb a {
  color: #d5e1fb;
  display: inline-block;
  max-width: 34%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-breadcrumb-middle {
  display: inline-block;
  max-width: 34%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #d5e1fb;
}

.article-breadcrumb-sep {
  flex: 0 0 auto;
  color: rgba(221, 232, 255, 0.72);
}

.article-breadcrumb-current {
  flex: 0 1 auto;
  color: #ffffff;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-detail-section {
  padding: 20px 0 92px;
}

.section.section--article-breadcrumb {
  padding: 132px 0 8px;
}

.section.section--place-breadcrumb {
  padding: 132px 0 16px;
}

.article-detail-cover {
  width: 100%;
  height: 390px;
  border-radius: 20px;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
}

.article-detail-title {
  margin: 41px auto 0;

  color: #121826;
  text-align: center;
  font-family: "Ruberoid", sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.02;
  
  --webkit-text-stroke: 2px #121826;
}

.article-detail-date {
  display: block;
  margin-top: 35px;
  text-align: center;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.article-detail-ad {
  margin: 12px auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1de;
  color: #ad4d00;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.article-detail-columns {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.article-detail-column {
  display: grid;
  gap: 22px;
}

.article-detail-column p {
  margin: 0;
  color: #0C131D;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.article-detail-richtext {
  margin-top: 56px;
  color: #0C131D;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.24;
  text-align: center;
}

.article-detail-richtext p,
.article-detail-richtext ul,
.article-detail-richtext ol,
.article-detail-richtext blockquote {
  margin: 0 0 18px;
}

.article-detail-richtext h1,
.article-detail-richtext h2,
.article-detail-richtext h3,
.article-detail-richtext h4,
.article-detail-richtext h5,
.article-detail-richtext h6 {
  margin: 0 0 18px;
  color: #121826;
  font-family: "Ruberoid", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

.article-detail-richtext h1 {
  font-size: 44px;
}

.article-detail-richtext h2 {
  font-size: 38px;
}

.article-detail-richtext h3 {
  font-size: 32px;
}

.article-detail-richtext h4,
.article-detail-richtext h5,
.article-detail-richtext h6 {
  font-size: 28px;
}

.article-detail-richtext ul,
.article-detail-richtext ol {
  padding-left: 1.2em;
}

.article-detail-richtext li + li {
  margin-top: 8px;
}

.article-detail-richtext a {
  color: #1f52b2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-detail-richtext blockquote {
  border-left: 4px solid #d6e2ff;
  padding-left: 18px;
  color: #3d495a;
}

.article-detail-richtext > *:last-child {
  margin-bottom: 0;
}

.articles-page:not(.place-page) .article-detail-richtext {
  margin-top: 48px;
  margin-inline: auto;
  max-width: 760px;
  font-size: 21px;
  line-height: 1.4;
  text-align: left;
}

.articles-page:not(.place-page) .article-detail-richtext p,
.articles-page:not(.place-page) .article-detail-richtext ul,
.articles-page:not(.place-page) .article-detail-richtext ol,
.articles-page:not(.place-page) .article-detail-richtext blockquote,
.articles-page:not(.place-page) .article-detail-richtext figure {
  margin: 0 0 20px;
}

.articles-page:not(.place-page) .article-detail-richtext figure {
  display: block;
}

.articles-page:not(.place-page) .article-detail-richtext img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.articles-page:not(.place-page) .article-detail-richtext figcaption {
  margin-top: 10px;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.section--articles-topic {
  padding-top: 62px;
}

.articles-topic-title {
  margin: 0 0 36px;
  text-align: center;
  color: #121826;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.articles-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  align-items: start;
}

.articles-topic-card {
  border-radius: 24px;
  background: #ffffff;
  padding: 30px;
  color: #121826;
  min-height: 352px;
  transition: transform 180ms ease;
}

.articles-topic-card:hover {
  transform: translateY(-2px);
}

.articles-topic-card-media {
  width: 100%;
  height: 196px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.articles-topic-card-body {
  min-width: 0;
}

.articles-topic-card-date {
  display: block;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.articles-topic-card-title {
  margin: 6px 0 0;
  color: #121826;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.06;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.articles-topic-card-tag {
  margin: 6px 0 0;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.section--articles-first-time {
  padding-top: 20px;
}

.articles-first-title {
  margin: 0 0 18px;
  text-align: center;
  color: #1f2433;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}

.articles-first-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.articles-first-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px;
  display: grid;
  grid-template-columns: 134px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 143px;
  color: #121826;
  transition: transform 180ms ease;
}

.articles-first-card:hover {
  transform: translateY(-2px);
}

.articles-first-card-media {
  width: 134px;
  height: 127px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
}

.articles-first-card-content {
  min-width: 0;
}

.articles-first-card-date {
  display: block;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.articles-first-card-title {
  margin: 6px 0 0;
  color: #121826;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.06;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.articles-first-card-tag {
  margin: 6px 0 0;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.regions-page {
  background: #ebebeb;
  min-height: 100vh;
}

.regions-content {
  padding: 74px 0 128px;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: 24px 20px;
  align-items: start;
}

.regions-card {
  width: 368px;
  height: 403px;
  margin: 0;
  border-radius: 28px;
  background: #ffffff;
  padding: 16px 16px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.regions-card--center {
  grid-column: 2;
}

.regions-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.regions-card-media--placeholder {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #6f95bc 0%, #85abd1 50%, #aac9e2 100%);
}

.regions-card-media--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

.regions-card-media--placeholder::after {
  content: "Заглушка";
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 36, 74, 0.45);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.regions-card-title {
  margin-top: 18px;
  margin-bottom: 5px;
  color: #121826;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
  width: 300px;
}

.regions-card-subtitle {
  margin: 0;
  color: #747474;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  white-space: pre-line;

  margin-bottom: 30px;
  width: 210px;
}

.regions-card-btn {
  margin-top: auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 127px;
  padding: 8px 16px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  border: 1px solid #00056233;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.regions-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(242, 122, 26, 0.28);
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
}

.regions-card-btn:focus-visible {
  outline: 2px solid rgba(255, 123, 33, 0.55);
  outline-offset: 2px;
}

.regions-card-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(242, 122, 26, 0.24);
}

.region-placeholder {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 28px;
  background: #ffffff;
  padding: 48px 32px;
  text-align: center;
}

.region-placeholder-text {
  margin: 0;
  color: #2b3040;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.region-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.region-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 127px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #00056233;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.region-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(242, 122, 26, 0.28);
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
}

.region-back-btn:focus-visible {
  outline: 2px solid rgba(255, 123, 33, 0.55);
  outline-offset: 2px;
}

.main-nav {
  margin-top: 16px;
}

.main-nav-list {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.site-main {
  min-height: 60vh;
}

.site-main table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.site-main th,
.site-main td,
.site-main p,
.site-main li,
.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.site-main h5,
.site-main h6 {
  overflow-wrap: anywhere;
}

.hero {
  position: relative;
  min-height: 520px;
  padding: 140px 0 90px;
  color: var(--white);
  background: #1F52B2;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/hero-pattern.svg") center / 1000px repeat;
  opacity: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
}

.hero-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.hero-tab-text {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.hero-tabs-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  width: fit-content;
  max-width: min(100%, 860px);
  height: 78px;
  border-radius: 22px;
  background: rgba(7, 20, 60, 0.35);
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.tab-indicator,
.tab-hover {
  position: absolute;
  top: 7px;
  left: 0;
  height: 64px;
  border-radius: 14px;
  transition: none;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.tab-indicator {
  background: var(--white);
  z-index: 0;
}

.tab-hover {
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
  opacity: 0;
}

.hero-tab {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  width: 102px;
  height: 64px;
  padding: 8px 10px;
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 160ms ease;
}

.hero-tab img {
  width: 20px;
  height: 20px;
  transition: filter 160ms ease;
  filter: brightness(0) invert(1);
}

.hero-tab.is-active {
  color: #1f52b2;
  font-weight: 600;
}

.hero-tab.is-active img {
  filter: none;
}

.hero-tab:not(.is-active):hover {
  color: #ffffff;
}

.hero-tab:not(.is-active):hover img {
  filter: brightness(0) invert(1);
}

.hero-tab.is-active:hover img {
  filter: none;
}

.hero-tab-external {
  width: 9px;
  height: 9px;
  opacity: 0.8;
  position: absolute;
  top: 10px;
  right: 10px;
}

.hero-tab-forum {
  width: 116px;
  height: 78px;
  border-radius: 18px;
  background: rgba(7, 20, 60, 0.35);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.hero-tab-forum:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-hero-tabs {
  margin-top: 16px;
}

.template-reviews .reviews-hero-inner .hero-tabs,
.template-regions .reviews-hero-inner .hero-tabs,
.template-guides .reviews-hero-inner .hero-tabs,
.template-articles .articles-hero .hero-tabs {
  margin-top: 8px;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-800);
}

.hero-search-fields {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.hero-search--compact .hero-field {
  min-width: 164px;
  padding: 12px 14px;
  gap: 10px;
}

.hero-search--compact .hero-field input,
.hero-search--compact .hero-field select {
  width: 132px;
}

.hero-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  min-width: 180px;
  position: relative;
}

.hero-field + .hero-field {
  border-left: 1px solid var(--gray-200);
}

.hero-field input,
.hero-field select {
  border: 0;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  color: #737373;
  background: transparent;
  width: 150px;
  font-family: "Inter", "Arial", sans-serif;
}

.hero-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  width: 100%;
  padding-right: 18px;
}

.hero-field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.hero-field input[data-date-input]::-webkit-calendar-picker-indicator,
.hero-field input[data-hotel-date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

.hero-field input::placeholder {
  color: #737373;
}

.hero-field img {
  width: 18px;
  height: 18px;
}

.hero-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-custom-select-trigger {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  color: #737373;
  font-family: "Inter", "Arial", sans-serif;
  cursor: pointer;
  padding: 0;
  line-height: 1.2;
}

.hero-field.is-open {
  z-index: 1300;
}

.hero-custom-select-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  width: 286px;
  max-width: min(286px, calc(100vw - 40px));
  padding: 8px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 1200;
}

.hero-custom-select-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-custom-select-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 250px;
  overflow: auto;
}

.hero-custom-select-item {
  margin: 0;
}

.hero-custom-select-option {
  width: 100%;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f8fafc;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  padding: 6px 10px;
  cursor: pointer;
}

.hero-custom-select-option:hover {
  border-color: #b7c7ea;
}

.hero-custom-select-option.is-selected {
  background: #e9f0ff;
  color: #1f52b2;
  border-color: #c8d8f7;
}

.hero-search .hero-field.is-filled input,
.hero-search .hero-field.is-filled select,
.hero-search .hero-field.is-filled .hero-custom-select-trigger {
  color: #0c131d;
}

.hero-field-people input {
  cursor: pointer;
}

.hero-field-date-range input[data-date-range-input] {
  cursor: pointer;
  user-select: none;
}

.date-range-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  width: 286px;
  max-width: min(286px, calc(100vw - 40px));
  padding: 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 1200;
}

.date-range-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.date-range-head {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 6px;
}

.date-range-month {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #0c131d;
  text-transform: capitalize;
}

.date-range-nav-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #d8dee9;
  border-radius: 8px;
  background: #ffffff;
  color: #1f52b2;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.date-range-weekdays {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-range-weekdays span {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

.date-range-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-range-day-empty {
  display: block;
  height: 34px;
}

.date-range-day {
  height: 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f8fafc;
  color: #1f2937;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.date-range-day:hover {
  border-color: #b7c7ea;
}

.date-range-day.is-today {
  border-color: #9bb3e3;
}

.date-range-day.is-in-range {
  background: #e9f0ff;
  color: #1f52b2;
}

.date-range-day.is-selected {
  background: #1f52b2;
  border-color: #1f52b2;
  color: #ffffff;
}

.date-range-actions {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.date-range-btn {
  border: 0;
  border-radius: 8px;
  min-height: 30px;
  padding: 0 10px;
  background: #1f52b2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.date-range-btn--muted {
  background: #e5e7eb;
  color: #374151;
}

.people-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 5;
}

.people-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.people-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-800);
}

.people-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.people-count {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.search-btn {
  border: 0;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 18px 28px;
  border-radius: 16px;
  height: 59px;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.section--hotels-results {
  padding: 52px 0 64px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.hotel-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 385px;
  box-shadow: 0 4px 18px rgba(16, 37, 89, 0.08);
/* 
  width: 461px;
  height: 301px; */
}

.hotel-card-media {
  position: relative;
  height: 170px;
  border-radius: 16px;
  background: linear-gradient(140deg, #1e3468, #274a99);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hotel-card-rating {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  height: 24px;
  border-radius: 999px;
  background: #36ba53;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  padding: 0 8px;
}

.hotel-card-rating--danger {
  background: #e04b45;
}

.hotel-card-rating--warning {
  background: #f28c1a;
}

.hotel-card-rating--success {
  background: #36ba53;
}

.hotel-card-rating-star {
  font-size: 11px;
  line-height: 1;
}

.hotel-card-rating-value {
  line-height: 1;
}

.hotel-card-title {
  margin: 16px 0 5px;
  color: #121826;

  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
}

.hotel-card-location {
  margin: 0;
  font-size: 16px;
  color: #747474;

  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: center;

}

.hotel-card-amenities {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.hotel-card-amenity-icon {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 7px;
  background: #43536A14;
  color: #1f52b2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hotel-card-amenity-icon img {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
  display: block;
}

.hotel-card-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
}

.hotel-card-price {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  color: #1f52b2;
  line-height: 1.1;
  position: relative;
  padding-right: 14px;
}

.hotel-card-price::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 15px;
  border-left: 1px solid #d9d9d9;
  transform: translateY(-50%);
}

.hotel-card-btn {
  border: 1px solid #00056233;
  border-radius: 10px;
  min-height: 35px;
  padding: 9px 16px;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: #ffffff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
}

.home-tours-results-title {
  margin-bottom: 20px;
}

.section--home-tours-results .hotel-card-footer {
  justify-content: center;
  gap: 12px;
}

.section--home-tours-results .hotel-card-price {
  margin-right: 0;
  padding-right: 12px;
  flex-shrink: 0;
}

.section--home-tours-results .hotel-card-title {
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.2em;
}

.hotels-empty {
  width: min(760px, 100%);
  margin: 0 auto;
  border-radius: 20px;
  background: #ffffff;
  padding: 30px;
  text-align: center;
  color: #61697c;
  font-size: 18px;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(16, 37, 89, 0.08);
}

.hotels-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hotels-pagination-link {
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  background: #e4e4e4;
  color: #8a8a8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.hotels-pagination-link.is-active {
  background: #1f52b2;
  color: #ffffff;
}

.hotels-pagination-ellipsis {
  min-width: 20px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hotels-pagination-next {
  min-width: 96px;
  padding: 0 18px;
}

@media (max-width: 1200px) {
  .hotels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .hotels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-hero-gallery {
    padding-top: 54px;
  }

  .hotel-media-item--primary {
    margin-left: 0;
    width: 100%;
    height: 214px;
    min-height: 214px;
  }

  .hotel-hero-gallery[data-thumb-count="0"] {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hotel-hero-gallery[data-thumb-count="0"] .hotel-media-item--primary {
    min-height: 214px;
  }

  .hotel-hero-gallery-strip {
    margin-left: 0;
    width: 100%;
    gap: 8px;
    column-gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    overflow: hidden;
  }

  .hotel-hero-gallery[data-thumb-count="3"] .hotel-hero-gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotel-hero-gallery[data-thumb-count="2"] .hotel-hero-gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-hero-gallery[data-thumb-count="1"] .hotel-hero-gallery-strip {
    grid-template-columns: 1fr;
  }

  .hotel-hero-gallery[data-thumb-count="3"] .hotel-media-item--thumb:nth-child(4),
  .hotel-hero-gallery[data-thumb-count="2"] .hotel-media-item--thumb:nth-child(n + 3),
  .hotel-hero-gallery[data-thumb-count="1"] .hotel-media-item--thumb:nth-child(n + 2) {
    display: none;
  }

  .hotel-hero-gallery-strip .hotel-media-item--thumb {
    border-radius: 5px;
  }

  .hotel-hero-gallery-strip .hotel-media-item--thumb:first-child {
    border-bottom-left-radius: 24px;
  }

  .hotel-hero-gallery[data-thumb-count="4"] .hotel-media-item--thumb:nth-child(4),
  .hotel-hero-gallery[data-thumb-count="3"] .hotel-media-item--thumb:nth-child(3),
  .hotel-hero-gallery[data-thumb-count="2"] .hotel-media-item--thumb:nth-child(2),
  .hotel-hero-gallery[data-thumb-count="1"] .hotel-media-item--thumb:nth-child(1) {
    border-bottom-right-radius: 24px;
  }

  .hotel-media-item--thumb {
    height: 76px;
    min-height: 76px;
  }

  .hotel-hero-gallery-more {
    font-size: 24px;
  }

  .hotel-booking-row {
    grid-template-columns: 1fr;
  }

  .hotel-booking-row--rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-booking-row--rooms .hotel-booking-input--guests {
    grid-column: 1 / -1;
  }

  .hotel-booking-row--rooms .hotel-booking-action {
    grid-column: 1 / -1;
  }

  .hotel-booking-row--rooms .hotel-booking-action-btn {
    width: 100%;
  }

  .hotel-booking-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hotel-booking-cta {
    width: 100%;
  }

  .hotel-rooms-card {
    padding: 24px 22px;
  }

  .hotel-location-card {
    padding: 24px 22px;
  }

  .hotel-location-map {
    height: 320px;
  }

  .hotel-room-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hotel-rooms-empty {
    padding: 22px 16px;
  }

  .hotel-rooms-empty-image {
    width: 64px;
    height: 64px;
  }

  .hotel-rooms-empty-title {
    font-size: 18px;
  }

  .hotel-rooms-empty-subtitle {
    font-size: 15px;
  }

  .hotel-room-offers-track {
    grid-auto-columns: minmax(240px, 72%);
  }

  .hotel-room-offers {
    padding: 10px 30px 8px;
  }

  .hotel-offer-card {
    min-height: 316px;
  }

  .tour-header-center {
    justify-self: stretch;
    min-width: 0;
  }

  .tour-header-nav {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
  }

  .tour-header .tour-nav-link {
    padding: 8px 10px;
    font-size: 15px;
  }

  .tour-header .tour-nav-more-toggle {
    min-width: 112px;
  }

  .places-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
    margin-right: 0;
  }

  .places-banner--slider .place-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .hot-tours-header,
  .hot-tours-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .places-banner-header,
  .places-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hot-tour-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .regions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .regions-card {
    width: 100%;
    max-width: 420px;
    height: auto;
  }
}

.section {
  padding: 56px 0;
}

.section-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-weight: 700;
  
}

.section--places {
  padding-top: 42px;
}

.places-banner {
  background: #ffffff;
  border-radius: 32px;
  padding-top: 50px;
}

.places-banner-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  position: relative;
}

.section--places .section-title--places {
  font-size: 52px;
  font-family: "Ruberoid", sans-serif;
  font-weight: 600;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.places-banner-actions {
  display: inline-flex;
  gap: 10px;
  margin: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: #e4e4e4;
  cursor: pointer;
  color: #555;
}

.circle-btn--next {
  color: #3b82f6;
  background: radial-gradient(circle at 30% 20%, #ffffff, #e0e7ff);
  box-shadow: 0 0 0 1px rgba(148, 163, 253, 0.4);
}

.circle-btn--prev::before,
.circle-btn--next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 1px;
}

.circle-btn--prev::before {
  transform: rotate(-135deg);
}

.circle-btn--next::before {
  transform: rotate(45deg);
}

.circle-btn.is-disabled,
.circle-btn:disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
  transition: height 420ms ease;
}

.places-track {
  display: contents;
}

.places-banner--slider .places-grid {
  display: block;
  overflow: hidden;
}

.places-banner--slider .places-track {
  display: flex;
  gap: 18px;
  will-change: transform;
}

.places-banner.is-expanded .places-track {
  flex-wrap: wrap;
  justify-content: center;
  transform: none !important;
}

.places-banner--slider .place-card {
  flex: 0 0 calc((100% - 4 * 18px) / 5);
}

.place-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #121826;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.place-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.place-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 82, 178, 0.16);
}

.place-card-image {
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0%, #fef3c7, transparent 55%),
    radial-gradient(circle at 80% 100%, #bfdbfe, transparent 55%),
    linear-gradient(135deg, #1e3a8a, #0ea5e9);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 156px;
}

.place-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 4px;
}

.places-footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.places-more-btn {
  width: 412px;
  padding: 20px 138px;
  border-radius: 16px;
  background: #E8E8E8;
  border: 0;
  font-size: 20px;
  font-weight: 700;
  color: #424242;
  cursor: pointer;

  margin-bottom: 42px;
}

.places-page {
  background: #ebebeb;
  min-height: 100vh;
  padding-bottom: 56px;
}

.places-hero {
  min-height: 560px;
  padding: 140px 0 88px;
}

.places-hero-inner {
  gap: 22px;
}

.places-hero .hero-title {
  text-transform: none;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0;
  -webkit-text-stroke: 2.5px #ffffff;
}

.places-filters {
  width: min(1160px, 100%);
  color: #ffffff;
}

.places-filters-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.places-filters-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.places-filters-fields {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  padding-left: 6px;
  padding-right: 6px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  min-width: 0;
}

.places-filter-dropdown {
  position: relative;
  min-width: 0;
}

.places-filter-dropdown + .places-filter-dropdown {
  border-left: 1px solid var(--gray-200);
}

.places-filter-trigger {
  min-width: 190px;
  min-height: 58px;
  padding: 12px 36px 12px 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #737373;
  font-size: 18px;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.places-filter-trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #7380a1;
  border-bottom: 2px solid #7380a1;
  transform: translateY(-60%) rotate(45deg);
}

.places-filter-dropdown.is-open .places-filter-trigger::after {
  transform: translateY(-30%) rotate(-135deg);
}

.places-filter-trigger-label {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.places-filter-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  min-width: 300px;
  max-width: min(92vw, 560px);
  max-height: min(56vh, 340px);
  overflow: auto;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #e1e7f3;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 40;
}

.places-filter-dropdown.is-open .places-filter-popover {
  display: grid;
  gap: 8px;
}

.places-filter-popover--categories {
  min-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 8px;
}

.places-filter-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.places-filter-option input {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #1f52b2;
}

.places-filter-apply-btn {
  flex: 0 0 auto;
  min-width: 172px;
  white-space: nowrap;
}

.section--places-catalog {
  padding: 48px 0 64px;
}

.places-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}

.places-catalog-card {
  min-width: 0;
}

.places-catalog-card-link {
  display: block;
  text-decoration: none;
  color: #141b2c;
}

.places-catalog-card-image {
  border-radius: 14px;
  height: 230px;
  background: linear-gradient(135deg, #2c3f72, #1f52b2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 14px;
}

.places-catalog-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border: 2px solid #1f52b2;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1f52b2;
}

.places-catalog-card-title {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.15;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-weight: 600;
  color: #1c2435;
}

.places-catalog-card-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "Inter", "Arial", sans-serif;
  color: #2c3446;
}

.places-catalog-more-wrap {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.places-catalog-more-btn {
  min-width: 260px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 0;
  background: #d8d8d8;
  color: #383838;
  font-size: 20px;
  line-height: 1;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.places-catalog-more-btn[hidden] {
  display: none;
}

.places-catalog-more-arrow {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.place-detail-summary {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.5;
  color: #43506b;
}

.place-detail-meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.place-detail-meta-item {
  border-radius: 16px;
  border: 1px solid #d9e3f5;
  background: #f8fbff;
  padding: 14px 16px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.place-detail-meta-label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4f5b73;
  font-family: "Inter", "Arial", sans-serif;
}

.place-detail-meta-value {
  font-size: 17px;
  line-height: 1.35;
  color: #1f2937;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 600;
}

.place-detail-section .article-detail-columns,
.place-detail-section .article-detail-richtext {
  margin-top: 24px;
}

.place-detail-gallery-section {
  margin-top: 30px;
}

.place-detail-subtitle {
  margin: 0 0 16px;
}

.place-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.place-detail-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #e9eef8;
  min-height: 150px;
}

.place-detail-gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.place-detail-gallery-open:focus-visible {
  outline: 2px solid #2f66d6;
  outline-offset: -2px;
}

.place-detail-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.place-location-section {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .places-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-detail-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .places-hero {
    min-height: 520px;
  }

  .places-hero .hero-title {
    font-size: 52px;
  }

  .places-filters-title {
    font-size: 22px;
  }

  .places-filter-trigger {
    min-width: 155px;
    font-size: 16px;
  }

  .places-filter-option {
    font-size: 14px;
  }

  .places-catalog-card-title {
    font-size: 21px;
  }

  .places-catalog-card-description {
    font-size: 17px;
  }

  .places-catalog-more-btn {
    font-size: 19px;
  }

  .places-filter-popover--categories {
    min-width: 470px;
  }

  .places-filter-apply-btn {
    min-width: 148px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 768px) {
  .places-hero {
    min-height: 0;
    padding: 120px 0 54px;
  }

  .places-hero .hero-title {
    font-size: 36px;
    -webkit-text-stroke: 1.5px #ffffff;
  }

  .places-filters-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .places-filters-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    justify-content: center;
  }

  .places-filters-fields {
    width: 100%;
    flex-direction: column;
    padding: 4px;
  }

  .places-filter-dropdown + .places-filter-dropdown {
    border-left: 0;
    border-top: 1px solid var(--gray-200);
  }

  .places-filter-trigger {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
    border-radius: 8px;
  }

  .places-filter-trigger-label {
    max-width: calc(100vw - 150px);
  }

  .places-filter-popover {
    min-width: 0;
    width: min(92vw, 410px);
    max-height: min(52vh, 300px);
    left: 8px;
  }

  .places-filter-popover--categories {
    grid-template-columns: 1fr;
    width: min(92vw, 410px);
  }

  .places-filter-option {
    font-size: 15px;
    min-height: 30px;
  }

  .places-filter-apply-btn {
    width: 100%;
    min-height: 52px;
  }

  .section--places-catalog {
    padding-top: 30px;
  }

  .places-catalog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .places-catalog-card-image {
    height: 210px;
  }

  .places-catalog-card-title {
    font-size: 20px;
  }

  .places-catalog-card-description {
    font-size: 16px;
  }

  .places-catalog-more-btn {
    width: 100%;
    font-size: 18px;
  }

  .place-detail-meta {
    grid-template-columns: 1fr;
  }

  .place-detail-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .place-detail-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.section--region-overview {
  padding-top: 42px;
  padding-bottom: 22px;
}

.region-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 18px;
}

.region-overview-card,
.region-overview-facts {
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
}

.region-overview-card {
  padding: 36px 34px 30px;
}

.region-overview-title {
  margin: 0 0 12px;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: #121826;
}

.region-overview-lead {
  margin: 0 0 12px;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #454f66;
}

.region-overview-text {
  margin: 0 0 12px;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #454f66;
}

.region-overview-highlights {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-highlight-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 5, 98, 0.2);
  color: #1f52b2;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
}

.region-overview-facts {
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.region-fact-card {
  border-radius: 16px;
  background: #f6f8fc;
  border: 1px solid #e3e8f3;
  padding: 14px 14px 12px;
}

.region-fact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #747474;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
}

.region-fact-value {
  display: block;
  margin-top: 4px;
  color: #121826;
  font-size: 16px;
  line-height: 1.35;
  font-family: "Inter", "Arial", sans-serif;
}

.section--region-media {
  padding-top: 18px;
  padding-bottom: 24px;
}

.region-media-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.section--region-media .section-title {
  font-size: 52px;
  font-family: "Ruberoid", sans-serif;
  font-weight: 600;
}

.region-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.region-media-grid[data-region-media-grid] {
  overflow: hidden;
  transition: max-height 520ms ease;
}

.region-media-grid[data-region-media-grid].is-expanded {
  overflow: visible;
}

.region-media-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.region-media-more-btn {
  border: 1px solid #c6d4ea;
  background: #ffffff;
  color: #1f52b2;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, opacity 220ms ease;
}

.region-media-more-btn:hover {
  border-color: #1f52b2;
  transform: translateY(-1px);
}

.region-media-more-btn:focus-visible {
  outline: 2px solid #1f5ed6;
  outline-offset: 2px;
}

.region-media-more-btn.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.region-media-card {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.region-media-card:hover {
  border-color: #c9d7ee;
  box-shadow: 0 12px 32px rgba(18, 24, 38, 0.08);
}

.region-media-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 10px;
  background: transparent;
  display: block;
  text-align: left;
  cursor: zoom-in;
}

.region-media-trigger:focus-visible {
  outline: 2px solid #1f5ed6;
  outline-offset: -2px;
}

.region-media-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #101827;
}

.region-media-thumb-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.region-media-video-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

.region-media-empty {
  border-radius: 20px;
  border: 1px dashed #d7dee9;
  background: #ffffff;
  color: #747474;
  font-size: 16px;
  line-height: 1.4;
  padding: 18px 20px;
}

.section--actual {
  padding-top: 42px;
}

.section--actual.section--actual-slider {
  padding-top: 32px;
}

.section--actual.section--actual-slider .actual-grid {
  display: block;
  overflow: hidden;
  width: 100%;
}

.section--actual.section--actual-slider .actual-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 420ms ease;
}

.section--actual.section--actual-slider .actual-card {
  flex: 0 0 calc((100% - 18px) / 2);
}

.actual-slider-progress {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.actual-slider-progress-track {
  position: relative;
  width: min(540px, 100%);
  height: 8px;
  border-radius: 999px;
  background: #d4dbe8;
  cursor: ew-resize;
  outline: none;
}

.actual-slider-progress-track:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 82, 178, 0.28);
}

.actual-slider-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f52b2, #3f79e8);
  transition: width 260ms ease;
}

.actual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.actual-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 500px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.actual-card {
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
}

a.actual-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.28);
}

.actual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.14) 44%,
    rgba(0, 0, 0, 0.68) 100%
  );
  pointer-events: none;
}

.actual-card-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.actual-card-body {
  position: relative;
  z-index: 1;
  width: 539px;
  height: 539px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 38px 34px;
}

.actual-card-title {
  margin: 0 0 10px;
  font-family: 'Ruberoid', sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}

.actual-card-text {
  margin: 0;
  max-width: 550px;
  font-size: 20px;
  line-height: 1.1;
  color: #F4F4F4;

  font-family: 'Inter', 'Arial', sans-serif;
}

.actual-card-footer {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: center;
}

.tag-location {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 10px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 20px;
  font-weight: 300;
  color: #1f52b2;

  line-height: 120%;

  font-family: 'Ruberoid', sans-serif;
}

.tag-location::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url("../assets/icons/location_on.svg") center / contain no-repeat;
}

.section--region-articles {
  padding-top: 85px;
}

.region-articles-title {
  margin: 0 0 18px;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: #1f2433;
}

.region-articles-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 24px;
}

.region-articles-card--compact {
  align-items: start;
}

.region-articles-card--compact .region-article-list {
  align-content: start;
}

.region-articles-card--compact .region-article--side {
  align-items: start;
}

.region-article {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  height: 156px;
  padding: 10px;
  border-radius: 18px;
  background: #f6f8fc;
  color: #1f2433;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.region-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 44, 97, 0.12);
}

.region-article--lead {
  display: grid;
}

.region-article-media {
  position: relative;
  border-radius: 14px;
  min-height: 100%;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

.region-article-badge {
  position: static;
  top: -9px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: #ffffff;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(240, 132, 28, 0.35);
}

.region-article-badge--inline {
  align-self: flex-start;
  margin-bottom: 2px;
}

.region-article-badge::before {
  content: "";
  width: 11px;
  height: 11px;
  background: url("../assets/icons/fire.svg") center / contain no-repeat;
  flex: 0 0 11px;
}

.region-article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding-top: 0;
}

.region-article-date {
  display: block;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
}

.region-article-title {
  margin: 0;
  color: #121826;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.region-article-topic {
  margin: 0;
  color: #747474;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.18;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

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

.region-article-list--stack {
  grid-template-columns: 1fr;
}

.region-article--side {
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.region-article--side .region-article-content {
  padding-top: 0;
}


.region-article-side-thumb {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
}

.section--journal {
  padding-top: 40px;
}

.journal-card {
  background: linear-gradient(92.98deg, #1F52B2 1.73%, #467BDE 94.88%);
  border-radius: 32px;
  color: var(--white);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  height: 339px;
}

.journal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/journal-pattern.svg") center / 1500px repeat;
  opacity: 0.15;
  z-index: -1;
}

.journal-card-header {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 60px;
  margin-left: 60px;
}

.journal-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(7, 20, 60, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.journal-title {
  margin: 0;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 52px;
  color: white;
}

.journal-subtitle {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #F4F4F4;
  max-width: 437px;
}

.journal-button {
  margin-top: 23px;
  align-self: flex-start;
  border-radius: 16px;
  border: 0;
  padding: 20px 108px;
  font-size: 20px;
  font-weight: 700;
  background: #00000030;
  color: var(--white);
  cursor: pointer;
  box-shadow: none;
}

.journal-button--mobile {
  display: none;
}

.journal-articles {
  position: relative;
  align-self: center;
  flex: 0 0 545px;
  margin-right: 50px;
  height: 160px;
  overflow: hidden;
}

.journal-article {
  background: var(--white);
  border-radius: 18px;
  padding: 10px 10px;
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: 0 18px 32px rgba(15, 34, 80, 0.28);
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 520ms ease, transform 520ms ease;
  pointer-events: none;

  height: 160px;
}

.journal-article.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.journal-article.is-exit {
  opacity: 0;
  transform: translateX(-34px);
  pointer-events: none;
  z-index: 1;
}

.journal-article.is-enter {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 3;
}

.journal-article-image {
  border-radius: 12px;
  width: 138px;
  height: 138px;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-position: center;
}

.journal-article-image.has-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #eef2fb;
}

.journal-article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 6px;
  color: #111827;
  margin-top: 0;
}

.journal-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #747474;
}

.journal-article-date {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.journal-article-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  font-family: "Inter", "Arial", sans-serif;
  font-style: SemiBold;
  color: #121826;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.journal-article-tag {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;

  color: #747474;
}

.section--hot-tours {
  padding-top: 42px;
}

.hot-tours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.section--hot-tours .section-title {
  font-size: 52px;
  font-family: "Ruberoid", sans-serif;
  font-weight: 600;
}

.hot-tours-actions {
  display: inline-flex;
  gap: 10px;
}

.hot-tours-grid {
  width: 100%;
  max-width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  transition: height 420ms ease;
}

.hot-tours-track {
  display: flex;
  gap: 18px;
  will-change: transform;
}

.section--hot-tours.is-expanded .hot-tours-track {
  flex-wrap: wrap;
  justify-content: center;
  transform: none !important;
}

.hot-tour-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  flex: 0 0 calc((100% - 4 * 18px) / 5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #121826;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.hot-tour-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 82, 178, 0.16);
}

.hot-tour-image {
  border-radius: 12px;
  height: 156px;
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hot-tour-body {
  padding: 4px 2px 2px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
}

.hot-tour-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hot-tour-region {
  font-size: 13px;
  color: #6b7280;
}

.hot-tour-footer {
  margin-top: auto;
  padding-top: 4px;
}

.hot-tour-price {
  font-weight: 800;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1F52B2;
}

.hot-tours-footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.hot-tours-more-btn {
  width: 412px;
  padding: 20px 138px;
  border-radius: 16px;
  background: #E8E8E8;
  border: 0;
  font-size: 20px;
  font-weight: 700;
  color: #424242;
  cursor: pointer;

  margin-bottom: 42px;
}



.forum-card {
  position: relative;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  border-radius: 32px;
  color: var(--white);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  height: 339px;
}

.forum-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/forum-line-4.svg"), url("../assets/forum-line-6.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: clamp(340px, 52vw, 760px) auto, clamp(260px, 34vw, 560px) auto;
  background-position: right -28px top -22px, left -38px bottom -26px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.forum-card-inner {
  position: relative;
  z-index: 1;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 60px;
  margin-left: 60px;
}

.forum-title {
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 52px;
  color: #ffffff;

  width: 377;
  height: 52;
  opacity: 1;
  border-width: 2px;

  margin-top: 0px;
  margin-bottom: 0px;
}

.forum-subtitle {
  margin: 0;

  width: 437;
  height: 52;
  top: 128px;
  left: 60px;
  opacity: 1;

  font-family: "Inter", "Arial", sans-serif;
  font-weight: 400;
  font-style: Light;
  font-size: 24px;
  letter-spacing: 0%;
  color: #F4F4F4;
}

.forum-button {
  margin-top: 23px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 0;
  min-height: 56px;
  padding: 20px 108px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  background: #f1f3f5;
  color: #131722;
  cursor: pointer;
}

.forum-illustration {
  flex: 1;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.3), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(191, 219, 254, 0.6), transparent 55%),
    linear-gradient(135deg, #111827, #1f2937);
}

.forum-image {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  align-self: center;
  object-fit: contain;
  margin-top: 0;
  transform: translateX(20px) translateY(30px);
}

.site-footer {
  background: #ffffff;
  padding: 86px 0 90px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 220px 250px 1fr;
  gap: 72px;
  align-items: start;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-logo {
  width: 50px;
  height: auto;
  display: block;
}

.footer-brand-meta {
  display: grid;
  gap: 2px;
}

.footer-brand-name,
.footer-brand-copy {
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  line-height: 1;
  color: #2a2f37;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e2e2e2;
}

.footer-social-btn img {
  width: 24px;
  height: 24px;
}

.footer-menu {
  display: grid;
  gap: 18px;
}

.footer-menu a {
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  line-height: 19px;
  color: #0C131D;
  text-decoration: none;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: 28px;
  row-gap: 18px;
}

.footer-section-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: start;
  text-decoration: none;
}

.footer-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #F6F7F9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-section-icon img {
  width: 20px;
  height: 20px;
}

.footer-section-text {
  display: grid;
  gap: 3px;
}

.footer-section-title {
  font-family: "Inter", "Arial", sans-serif;
  font-size: 15px;
  line-height: 19px;
  color: #0C131D;
}

.footer-section-subtitle {
  font-family: "Inter", "Arial", sans-serif;
  font-size: 13px;
  line-height: 17px;
  color: #9EA9B7;
}

body.auth-modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 23, 58, 0.48);
  backdrop-filter: blur(2px);
}

.auth-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  border-radius: 22px;
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 26px 28px 24px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.auth-modal.is-open .auth-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.auth-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: #dedede;
  color: #666;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.auth-pane {
  display: none;
}

.auth-pane.is-active {
  display: block;
}

.auth-title {
  margin: 4px 0 8px;
  text-align: center;
  font-family: "Ruberoid", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #121826;

  --webkit-stroke: 1.6px #121826;
}

.auth-subtitle {
  margin: 0 auto 16px;
  text-align: center;
  color: #747474;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.1;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-captcha {
  margin-top: 2px;
  display: flex;
  justify-content: center;
}

.auth-captcha .g-recaptcha {
  width: 100%;
}

.auth-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 58px;
  border: 1px solid #bbbbbb;
  border-radius: 14px;
  background: #f4f4f4;
  padding: 0 14px 0 16px;
}

.auth-field input {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  color: #868585;
  font-family: "Inter", sans-serif;
}

.auth-field input::placeholder {
  color: #8a8a93;
}

.auth-code-btn {
  border: 0;
  background: transparent;
  color: #1f52b2;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.auth-code-btn:disabled {
  color: #8fa7db;
  cursor: default;
}

.auth-submit-btn {
  margin-top: 16px;
  border: 0;
  border-radius: 14px;
  min-height: 56px;
  background: #1f52b2;
  color: #ffffff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.auth-switch-row {
  margin: 12px 0 0;
  text-align: center;
  color: #1f52b2;
  font-size: 16px;
  font-weight: 500;
}

.auth-switch-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #1f52b2;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
}

.auth-message {
  min-height: 20px;
  margin: 12px 0 0;
  text-align: center;
  font-size: 15px;
  color: #4b6db0;
}

.auth-message.is-error {
  color: #bf2f2f;
}

.auth-message.is-success {
  color: #2d8a45;
}

.contacts-modal-dialog {
  padding-bottom: 28px;
}

.contacts-subtitle {
  margin: 0 auto;
  max-width: 350px;
  text-align: center;
  color: #747474;
  font-size: 14px;
  line-height: 1.12;
}

.contacts-hours {
  margin: 10px 0 0;
  text-align: center;
  color: #747474;
  font-size: 14px;
  line-height: 1.12;
}

.contacts-actions {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contacts-action-btn {
  min-height: 56px;
  border-radius: 14px;
  background: #1f52b2;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.contacts-action-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-action-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.page-profile .site-header--overlay {
  position: relative;
  background: #1f52b2;
  padding: 18px 0 20px;
}

.page-profile .site-main {
  background: #1f52b2;
}

.profile-page {
  min-height: 100vh;
  padding: 0 0 72px;
  background: transparent;
}

.profile-section {
  padding: 0;
}

.profile-container {
  position: relative;
}

.profile-hero {
  position: relative;
  overflow: visible;
  border-radius: 0;
  padding: 40px 42px 116px;
  background: transparent;
  box-shadow: none;
}

.profile-hero::before {
  content: none;
}

.profile-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.profile-hero-copy {
  text-align: center;
}

.profile-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-hero-title {
  margin: 8px 0 0;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1;
  color: #ffffff;
}

.profile-hero-subtitle {
  margin: 14px 0 0;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
  margin-right: auto;
}

.profile-hero-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.profile-hero-state.is-online {
  background: rgba(26, 201, 132, 0.2);
  color: #d7ffea;
}

.profile-shell {
  margin-top: -82px;
  position: relative;
  z-index: 2;
}

.profile-card {
  width: min(720px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #dbe6fb;
  padding: 32px;
  box-shadow: 0 20px 44px rgba(17, 36, 82, 0.15);
}

.profile-card-title {
  margin: 0;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  color: #161e31;
}

.profile-card-subtitle {
  margin: 12px 0 0;
  color: #6f7380;
  font-size: 17px;
  line-height: 1.4;
}

.profile-benefits {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.profile-benefit {
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 14px;
  background: #f4f8ff;
  color: #2d3f63;
  font-size: 15px;
  line-height: 1.35;
}

.profile-benefit::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  box-shadow: 0 0 0 4px rgba(255, 111, 30, 0.14);
}

.profile-auth-btn {
  margin-top: 22px;
  border: 0;
  border-radius: 14px;
  min-height: 52px;
  padding: 0 24px;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.profile-auth-btn:hover,
.profile-auth-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(239, 153, 15, 0.26);
}

.profile-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.profile-avatar-wrap {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.profile-avatar {
  position: relative;
  overflow: hidden;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #255bc2 0%, #4283f0 100%);
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.profile-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d7e1f5;
  background: #f7f9ff;
  color: #2a58ba;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease;
}

.profile-avatar-upload-btn:hover,
.profile-avatar-upload-btn:focus-visible {
  background: #edf3ff;
  border-color: #bfcfef;
}

.profile-avatar-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.profile-name {
  margin: 0;
  color: #1a2642;
  font-family: "Ruberoid", "Inter", "Arial", sans-serif;
  font-size: 30px;
  line-height: 1.05;
}

.profile-email {
  margin: 8px 0 0;
  color: #61708d;
  font-size: 17px;
  line-height: 1.3;
}

.profile-description {
  margin: 8px 0 0;
  color: #41587f;
  font-size: 14px;
  line-height: 1.35;
}

.profile-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e8f7ef;
  color: #1b7f4a;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.profile-edit-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #dbe6fb;
  background: #fbfdff;
  padding: 14px;
}

.profile-form-row {
  display: grid;
  gap: 6px;
}

.profile-form-label {
  color: #587099;
  font-size: 13px;
  font-weight: 600;
}

.profile-form-input,
.profile-form-textarea {
  width: 100%;
  border: 1px solid #cfdcf3;
  border-radius: 10px;
  background: #ffffff;
  color: #1d2f4e;
  font-size: 15px;
  font-family: "Inter", "Arial", sans-serif;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.profile-form-input {
  min-height: 44px;
  padding: 0 12px;
}

.profile-form-textarea {
  min-height: 96px;
  padding: 10px 12px;
  resize: vertical;
}

.profile-form-input:focus,
.profile-form-textarea:focus {
  outline: none;
  border-color: #7da1e6;
  box-shadow: 0 0 0 3px rgba(125, 161, 230, 0.2);
}

.profile-form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.profile-save-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #2f66d6 0%, #1f4fb8 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.profile-save-btn:hover,
.profile-save-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(42, 88, 186, 0.28);
}

.profile-save-message {
  margin: 0;
  color: #206f44;
  font-size: 13px;
  font-weight: 600;
}

.profile-info-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-info-item {
  border-radius: 16px;
  border: 1px solid #e1e8f8;
  background: #f7faff;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.profile-label {
  color: #6a7592;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.profile-value {
  color: #1b2846;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.profile-actions {
  margin-top: 22px;
}

.profile-logout-btn {
  min-height: 50px;
  border: 1px solid #cfd9ef;
  border-radius: 12px;
  padding: 0 18px;
  background: #f8fbff;
  color: #2a58ba;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease;
}

.profile-logout-btn:hover,
.profile-logout-btn:focus-visible {
  background: #f0f6ff;
  border-color: #b9c9ea;
}

.profile-logout-btn:disabled {
  opacity: 0.6;
  cursor: default;
}


@media (max-width: 768px) {
  .tour-header {
    padding: 12px 0;
  }

  .tour-header-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .tour-header-logo {
    justify-self: start;
  }

  .tour-header-logo .logo-img {
    width: auto;
    height: 18px;
  }

  .tour-header-center,
  .tour-header-actions {
    display: none;
  }

  .tour-burger-toggle {
    display: inline-flex;
    justify-self: end;
    margin-left: 0;
  }

  .tour-mobile-menu-wrap {
    display: block;
  }

  .auth-modal {
    padding: 10px;
  }

  .auth-modal-dialog {
    border-radius: 18px;
    padding: 20px 14px 16px;
  }

  .auth-modal-close {
    width: 30px;
    height: 30px;
    font-size: 22px;
    right: 10px;
    top: 10px;
  }

  .auth-subtitle {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .auth-field {
    min-height: 50px;
    border-radius: 12px;
    padding: 0 10px 0 12px;
  }

  .auth-field input,
  .auth-code-btn,
  .auth-submit-btn {
    font-size: 16px;
  }

  .auth-submit-btn {
    min-height: 50px;
    border-radius: 12px;
  }

  .auth-switch-row {
    font-size: 14px;
  }

  .contacts-modal-dialog {
    padding-bottom: 18px;
  }

  .contacts-subtitle {
    font-size: 13px;
    line-height: 1.1;
    max-width: 95%;
  }

  .contacts-hours {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.15;
  }

  .contacts-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .contacts-action-btn {
    min-height: 50px;
    border-radius: 12px;
    font-size: 16px;
  }

  .contacts-action-icon {
    width: 16px;
    height: 16px;
  }

  .page-profile .site-header--overlay {
    padding: 14px 0 16px;
  }

  .page-profile .site-main {
    background: #1f52b2;
  }

  .profile-page {
    padding: 0 0 44px;
  }

  .profile-hero {
    border-radius: 0;
    padding: 26px 18px 64px;
  }

  .profile-hero-inner {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .profile-kicker {
    font-size: 12px;
  }

  .profile-hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .profile-hero-subtitle {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.35;
  }

  .profile-shell {
    margin-top: -28px;
  }

  .profile-card {
    border-radius: 20px;
    padding: 20px 16px;
  }

  .profile-card-subtitle {
    font-size: 16px;
  }

  .profile-benefit {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }

  .profile-benefit::before {
    left: 14px;
    width: 16px;
    height: 16px;
  }

  .profile-auth-btn {
    width: 100%;
  }

  .profile-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .profile-avatar-wrap {
    justify-items: start;
  }

  .profile-avatar {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .profile-name {
    font-size: 26px;
  }

  .profile-email {
    margin-top: 6px;
    font-size: 15px;
  }

  .profile-description {
    font-size: 13px;
  }

  .profile-status {
    justify-self: flex-start;
    min-height: 34px;
    font-size: 12px;
  }

  .profile-edit-form {
    padding: 12px;
  }

  .profile-form-actions {
    gap: 8px;
  }

  .profile-save-btn {
    width: 100%;
  }

  .profile-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .profile-value {
    font-size: 17px;
  }

  .profile-actions {
    margin-top: 18px;
  }

  .profile-logout-btn {
    width: 100%;
  }

  .tour-hero {
    padding-top: 100px;
  }

  .tour-hero-shape {
    background: none;
    border-radius: 0;
    min-height: 0;
    padding: 0;
  }

  .tour-hero-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    background: #ffffff;
    border-radius: 22px;
    min-height: 0;
    padding: 18px;
  }

  .hotel-page .tour-hero-layout {
    grid-template-columns: 1fr;
  }

  .hotel-page .tour-hero-media {
    max-width: 100%;
  }

  .tour-title {
    font-size: 30px;
    margin-bottom: 12px;
  }


  .tour-hero-main {
    padding: 0;
  }

  .tour-badge {
    top: 12px;
    left: 12px;
    font-size: 14px;
    margin-top: 60px;
    margin-left: 0;
  }

  .hotel-page .tour-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    margin: 0;
    display: inline-flex;
    justify-content: center;

    margin-top: 10px;
  }

  .hotel-page .tour-badge span {
    padding-top: 0;
    text-align: center;
  }

  .tour-cover {
    min-height: 250px;
    width: 100%;
    max-width: 100%;
    border-width: 0;
  }

  .tour-overview-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hotel-amenity-groups {
    column-count: 1;
    column-gap: 0;
  }

  .tour-included-card,
  .tour-details-card {
    padding: 22px 20px;
  }

  .tour-section-title {
    font-size: 32px;
  }

  .tour-included-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tour-meta dt,
  .tour-meta dd {
    font-size: 18px;
  }

  .tour-details-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tour-price-wrap {
    padding-right: 0;
  }

  .tour-price-wrap::after {
    display: none;
  }

  .tour-book-btn {
    width: 100%;
  }

  .hotel-booking-subtitle {
    font-size: 15px;
  }

  .hotel-booking-fact {
    font-size: 13px;
  }

  .hotel-booking-input input {
    height: 42px;
    font-size: 14px;
  }

  .hotel-booking-fields--rooms {
    padding: 12px;
  }

  .hotel-booking-row--rooms {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hotel-booking-row--rooms .hotel-booking-input--guests {
    grid-column: auto;
  }

  .hotel-booking-row--rooms .hotel-booking-action {
    grid-column: auto;
  }

  .hotel-booking-input--guests .hotel-guests-picker {
    height: 42px;
  }

  .hotel-booking-action-btn {
    width: 100%;
    min-width: 0;
    height: 42px;
  }

  .hotel-booking-input--date .hotel-date-popover,
  .hotel-booking-input--guests .people-popover {
    width: min(320px, calc(100vw - 56px));
  }

  .hotel-booking-rules {
    font-size: 13px;
  }

  .hotel-guests-picker {
    width: 100%;
    min-width: 0;
  }

  .hotel-about-card {
    padding: 22px 20px;
  }

  .hotel-rooms-card {
    padding: 22px 20px;
  }

  .hotel-location-card {
    padding: 22px 20px;
  }

  .hotel-location-card .tour-section-title {
    margin-bottom: 4px;
  }

  .hotel-location-address {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .hotel-location-map {
    height: 260px;
  }

  .hotel-rooms-subtitle {
    font-size: 16px;
  }

  .hotel-rooms-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hotel-rooms-filter {
    flex: 0 0 auto;
  }

  .hotel-room-row {
    padding: 10px;
  }

  .hotel-rooms-empty-title {
    font-size: 18px;
  }

  .hotel-rooms-empty-subtitle {
    font-size: 15px;
  }

  .hotel-room-title {
    font-size: 30px;
  }

  .hotel-room-meta {
    font-size: 14px;
  }

  .hotel-room-tag {
    font-size: 13px;
  }

  .hotel-room-tag-icon {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }

  .hotel-room-offers-track {
    grid-auto-columns: minmax(220px, 88%);
  }

  .hotel-room-offers {
    padding: 10px 10px 8px;
  }

  .hotel-room-offers-nav {
    display: none;
  }

  .hotel-offer-card {
    min-height: 294px;
  }

  .hotel-offer-price {
    font-size: 31px;
  }

  .hotel-offer-book-btn {
    height: 40px;
    font-size: 16px;
  }

  .hotel-hero-gallery {
    padding-top: 0;
    gap: 8px;
  }

  .hotel-page .hotel-hero-gallery .hotel-hero-gallery-strip {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }

  .hotel-media-item--primary {
    margin-left: 0;
    width: 100%;
    height: 196px;
    min-height: 196px;
  }

  .hotel-hero-gallery[data-thumb-count="0"] {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hotel-hero-gallery[data-thumb-count="0"] .hotel-media-item--primary {
    min-height: 196px;
  }

  .hotel-hero-gallery-strip {
    gap: 8px;
    column-gap: 8px;
  }

  .hotel-media-item--thumb {
    height: 72px;
    min-height: 72px;
  }

  .hotel-hero-gallery-more {
    font-size: 22px;
  }

  .hotel-gallery-lightbox {
    padding: 10px;
  }

  .hotel-gallery-lightbox-dialog {
    padding: 10px;
    border-radius: 14px;
  }

  .hotel-gallery-stage {
    min-height: 68vh;
    max-height: 68vh;
  }

  .hotel-gallery-nav {
    width: 36px;
    height: 36px;
  }

  .hotel-gallery-close {
    width: 34px;
    height: 34px;
    font-size: 24px;
    top: 8px;
    right: 8px;
  }

  .hotel-gallery-counter {
    bottom: 10px;
    font-size: 13px;
    padding: 5px 10px;
  }

  .tour-day-card {
    padding: 18px 18px;
  }

  .tour-reviews-card {
    padding: 22px 20px;
  }

  .tour-day-label {
    font-size: 16px;
  }

  .tour-day-title {
    font-size: 26px;
    line-height: 1.12;
  }

  .tour-day-toggle {
    width: 36px;
    height: 36px;
  }

  .tour-day-image {
    flex-basis: 180px;
    min-height: 110px;
  }

  .reviews-hero {
    min-height: 360px;
    padding: 0;
  }


  .reviews-content {
    margin-top: 0;
  }

  .articles-hero {
    min-height: 430px;
    padding: 170px 0 56px;
  }

  .articles-hero .container {
    gap: 18px;
  }

  .articles-title {
    font-size: 42px;
    line-height: 1.08;
    -webkit-text-stroke: 1.8px #ffffff;
  }

  .articles-hero-tags {
    max-width: 100%;
    gap: 8px;
  }

  .articles-hero-tag {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 15px;
  }

  .section.section--article-breadcrumb {
    padding-top: 96px;
    padding-bottom: 6px;
  }

  .section.section--place-breadcrumb {
    padding-top: 96px;
    padding-bottom: 10px;
  }

  .article-breadcrumb-row {
    gap: 10px;
    align-items: center;
  }

  .article-back-btn {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .article-back-btn::before {
    width: 9px;
    height: 9px;
  }

  .article-breadcrumb {
    font-size: 14px;
  }

  .article-detail-section {
    padding: 18px 0 56px;
  }

  .article-detail-cover {
    height: 220px;
    border-radius: 14px;
  }

  .article-detail-title {
    margin-top: 16px;
    font-size: 36px;
    line-height: 1.04;
  }

  .article-detail-date {
    margin-top: 10px;
    font-size: 18px;
  }

  .article-detail-columns {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-detail-column {
    gap: 14px;
  }

  .article-detail-column p {
    font-size: 22px;
    line-height: 1.16;
  }

  .article-detail-richtext {
    margin-top: 28px;
    font-size: 22px;
    line-height: 1.3;
  }

  .article-detail-richtext h1 {
    font-size: 34px;
  }

  .article-detail-richtext h2 {
    font-size: 30px;
  }

  .article-detail-richtext h3 {
    font-size: 26px;
  }

  .article-detail-richtext h4,
  .article-detail-richtext h5,
  .article-detail-richtext h6 {
    font-size: 22px;
  }

  .articles-page:not(.place-page) .article-detail-richtext {
    margin-top: 28px;
    max-width: 100%;
    font-size: 19px;
    line-height: 1.45;
  }

  .articles-page:not(.place-page) .article-detail-richtext p,
  .articles-page:not(.place-page) .article-detail-richtext ul,
  .articles-page:not(.place-page) .article-detail-richtext ol,
  .articles-page:not(.place-page) .article-detail-richtext blockquote,
  .articles-page:not(.place-page) .article-detail-richtext figure {
    margin-bottom: 18px;
  }

  .articles-page:not(.place-page) .article-detail-richtext img {
    border-radius: 14px;
  }

  .section--articles-topic {
    padding-top: 85px;
  }

  .articles-topic-title {
    margin-bottom: 18px;
    font-size: 36px;
  }

  .articles-topic-grid {
    grid-template-columns: 1fr;
  }

  .articles-topic-card {
    min-height: 0;
    padding: 12px;
  }

  .articles-topic-card-media {
    height: 170px;
    margin-bottom: 10px;
  }

  .articles-topic-card-date {
    font-size: 16px;
  }

  .articles-topic-card-title {
    font-size: 18px;
  }

  .articles-topic-card-tag {
    font-size: 16px;
  }

  .articles-read-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .articles-read-card-title {
    font-size: 18px;
  }

  .articles-read-card-topic {
    font-size: 16px;
  }

  .articles-first-title {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.1;
  }

  .section--articles-first-time {
    padding-top: 12px;
  }

  .articles-first-grid {
    grid-template-columns: 1fr;
  }

  .articles-first-card {
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 118px;
  }

  .articles-first-card-media {
    width: 110px;
    height: 102px;
  }

  .articles-first-card-title {
    font-size: 18px;
  }

  .region-back-btn {
    min-height: 36px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-list-card,
  .reviews-form-card {
    padding: 22px 20px;
    height: auto;
  }

  .reviews-list {
    height: auto;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    font-size: 18px;
  }

  .review-tour-label {
    font-size: 13px;
  }

  .reviews-page .review-stars-inline {
    font-size: 15px;
    padding: 2px 7px;
  }

  .reviews-page .review-tour-title {
    font-size: clamp(19px, 6vw, 25px);
  }

  .reviews-form-title {
    font-size: 30px;
  }

  .reviews-submit {
    width: 100%;
  }

  .regions-content {
    padding: 34px 0 64px;
  }

  .regions-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 14px;
  }

  .regions-card {
    width: min(428px, 100%);
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .regions-card--center {
    grid-column: auto;
  }


  .regions-card-subtitle {
    min-height: 0;
    margin-bottom: 14px;
  }

  .header-row {
    flex-direction: column;
  }

  .site-header--home {
    padding: 12px 0;
  }

  .template-hotels-catalog .site-header--overlay {
    padding: 12px 0;
  }

  .header-row.header-row--home {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .home-header-profile,
  .home-header-contacts {
    display: none;
  }

  .home-header-logo {
    padding: 0;
    gap: 8px;
    align-items: center;
  }

  .home-header-logo .logo-img {
    display: block;
    width: auto;
    height: 18px;
  }

  .home-header-logo .logo-eagle-img {
    width: 40px;
    height: 40px;
  }

  .home-burger-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(5, 23, 68, 0.35);
    backdrop-filter: blur(4px);
  }

  .home-mobile-menu-wrap {
    display: block;
  }

  .home-mobile-menu {
    margin-top: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 44px rgba(17, 40, 97, 0.24);
    padding: 12px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .home-mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
  }

  .home-mobile-menu-nav {
    display: grid;
    gap: 6px;
  }

  .home-mobile-menu-link {
    display: block;
    min-height: 38px;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2d4f;
    background: #f6f8fd;
    border: 1px solid transparent;
  }

  .home-mobile-menu-link--external {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .home-mobile-menu-link--external::after {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid #4e669a;
    border-right: 2px solid #4e669a;
    transform: rotate(45deg);
  }

  .home-mobile-menu-link--external.is-active::after {
    border-color: #1f4fb8;
  }

  .home-mobile-menu-link.is-active {
    color: #1f4fb8;
    background: #eaf1ff;
    border-color: rgba(31, 79, 184, 0.28);
  }

  .home-mobile-menu-actions {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #d9e2f7;
    display: grid;
    gap: 8px;
  }

  .home-mobile-menu-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    border-radius: 10px;
    padding: 6px 10px;
    color: #1f2d4f;
    background: #f8faff;
    font-size: 15px;
    font-weight: 500;
  }

  .home-mobile-menu-action .icon-img {
    width: 26px;
    height: 26px;
  }

  .template-tour-mobile-header .tour-header {
    padding: 12px 0;
  }

  .template-tour-mobile-header .tour-header-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .template-tour-mobile-header .tour-header-logo {
    justify-self: start;
  }

  .template-tour-mobile-header .tour-header-logo .logo-img {
    width: auto;
    height: 18px;
  }

  .template-tour-mobile-header .tour-header-center,
  .template-tour-mobile-header .tour-header-actions {
    display: none;
  }

  .template-tour-mobile-header .tour-burger-toggle {
    display: inline-flex;
    justify-self: end;
    margin-left: 0;
  }

  .template-tour-mobile-header .tour-mobile-menu-wrap {
    display: block;
  }

  .template-reviews .reviews-hero {
    min-height: 0;
    padding: 104px 0 48px;
  }

  .template-reviews .reviews-hero-inner {
    gap: 16px;
  }

  .template-reviews .reviews-title {
    margin-top: 0;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.04;
    -webkit-text-stroke: 1.6px #ffffff;
  }

  .template-hotels-catalog .hotels-hero {
    min-height: 0;
    padding: 104px 0 48px;
  }

  .template-hotels-catalog .hotels-hero .hero-inner {
    gap: 16px;
  }

  .template-hotels-catalog .hotels-hero .hero-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.04;
  }

  .template-hotels-catalog .hotels-hero .hero-tabs {
    display: none;
  }

  .template-hotels-catalog .hotels-hero .hero-search {
    width: 100%;
    margin: 0;
  }

  .template-hotels-catalog .hotels-hero .hero-search-fields {
    border-radius: 14px;
  }

  .template-hotels-catalog .hotels-hero .search-btn {
    border-radius: 12px;
  }

  .main-nav-list {
    justify-content: center;
  }

  .site-footer {
    background: #f3f4f6;
    padding: 40px 0 56px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    text-align: center;
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .footer-brand {
    order: 1;
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 16px;
  }

  .footer-brand-head {
    display: block;
    justify-content: center;
  }

  .footer-brand-logo {
    width: 138px;
  }

  .footer-brand-meta {
    display: none;
  }

  .footer-social {
    margin-top: 0;
    justify-content: center;
    gap: 10px;
  }

  .footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #e7eaef;
  }

  .footer-social-btn img {
    width: 20px;
    height: 20px;
  }

  .footer-menu {
    order: 2;
    justify-items: center;
    gap: 14px;
    margin-top: 12px;
    width: min(240px, 100%);
  }

  .footer-sections {
    order: 3;
    width: min(340px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-flow: row;
    justify-items: stretch;
    gap: 10px;
    margin-top: 16px;
  }

  .footer-section-item {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    text-align: left;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 8px;
    border-radius: 12px;
    background: #ffffff;
  }

  .footer-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .footer-section-icon img {
    width: 16px;
    height: 16px;
  }

  .footer-section-text {
    justify-items: start;
    text-align: left;
    gap: 0;
  }

  .footer-menu a,
  .footer-section-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .footer-menu a {
    max-width: 230px;
    font-size: 17px;
    line-height: 1.25;
  }

  .footer-section-subtitle {
    display: none;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-search {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 10px;
  }

  .hero-search-fields {
    width: 100%;
    flex-direction: column;
  }

  .hero-field {
    border-left: 0;
    border-bottom: 1px solid var(--gray-200);
    min-width: 0;
  }

  .hero-search--compact .hero-field {
    min-width: 0;
    padding: 12px 18px;
    gap: 12px;
  }

  .hero-search--compact .hero-field input,
  .hero-search--compact .hero-field select {
    width: 100%;
  }

  .hero-search--compact .hero-field .hero-custom-select-trigger {
    width: 100%;
  }

  .hero-field-date-range .date-range-popover {
    left: 0;
    width: min(320px, calc(100vw - 64px));
  }

  .hero-field .hero-custom-select-popover {
    left: 0;
    width: min(320px, calc(100vw - 64px));
  }

  .hero-field:last-of-type {
    border-bottom: 0;
  }
  .hero-tabs-group {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Inter", "Arial", sans-serif;
    font-weight: 500;
    font-size: 18px;
  }

  .hero-tab {
    width: 46%;
  }

  .hero-tab-forum {
    width: 100%;
  }

  .site-header--home ~ #content .hero-tabs {
    display: none;
  }

  .template-reviews .reviews-hero .hero-tabs,
  .template-regions .reviews-hero .hero-tabs,
  .template-guides .reviews-hero .hero-tabs,
  .template-articles .articles-hero .hero-tabs {
    display: flex;
  }

  .header-hero-tabs {
    display: none;
  }

  .section--hotels-results {
    padding-top: 34px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hotel-card {
    border-radius: 20px;
    min-height: 0;
  }

  .hotel-card-media {
    height: 190px;
  }

  .hotel-card-title {
    font-size: 20px;
    margin-top: 12px;
  }

  .hotel-card-location {
    font-size: 16px;
  }

  .hotel-card-price {
    font-size: 24px;
  }

  .hotel-card-btn {
    min-height: 38px;
    font-size: 13px;
    padding: 0 12px;
  }

  .hotels-empty {
    padding: 20px 16px;
    font-size: 16px;
  }

  .hotels-pagination-link {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 18px;
  }

  .hotels-pagination-ellipsis {
    height: 40px;
    font-size: 18px;
  }

  .hotels-pagination-next {
    min-width: 84px;
    padding: 0 14px;
    font-size: 16px;
  }

  .section {
    padding: 40px 0;
  }

  .section--places {
    position: relative;
  }

  .places-banner {
    border-radius: 32px;
    padding: 50px 0 0;
  }

  .places-banner-header {
    width: 100%;
    max-width: none;
    justify-content: center;
    margin: 0 0 14px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .section--places .section-title--places {
    margin: 0 !important;
    font-size: 32px;
    line-height: 1.12;
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center !important;
  }

  .places-banner-actions {
    display: inline-flex;
    gap: 12px;
  }

  .places-grid {
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
  }

  .places-track {
    display: contents;
    gap: 12px;
  }

  .places-banner--slider .place-card {
    flex-basis: calc(100% - 146px);
  }

  .place-card {
    max-width: 360px;
    margin: 0;
    align-items: center;
    text-align: center;
  }

  .places-banner--slider .places-grid::before,
  .places-banner--slider .places-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    z-index: 3;
    pointer-events: none;
  }

  .places-banner--slider .places-grid::before {
    left: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.86) 24%,
      rgba(255, 255, 255, 0.56) 56%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .places-banner--slider .places-grid::after {
    right: 0;
    background: linear-gradient(
      270deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.86) 24%,
      rgba(255, 255, 255, 0.56) 56%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .place-card-image {
    width: 100%;
  }

  .place-card-title {
    width: 100%;
    text-align: center;
  }

  .places-progress {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    padding: 0 8px;
  }

  .places-progress[hidden] {
    display: none;
  }

  .places-progress-track {
    width: min(220px, 100%);
    height: 6px;
    border-radius: 999px;
    background: #d8dce4;
    overflow: hidden;
  }

  .places-progress-fill {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1f52b2, #4d7fe8);
    transition: width 220ms ease;
  }

  .places-footer {
    margin-top: 20px;
  }

  .section--places .places-more-btn {
    width: min(520px, 100%);
    max-width: 100%;
    min-height: 56px;
    padding: 12px 20px;
    font-size: clamp(15px, 4.6vw, 22px);
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .actual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--hot-tours {
    position: relative;
  }

  .hot-tours-track {
    gap: 12px;
  }

  .hot-tour-card {
    flex-basis: 100%;
    max-width: 360px;
    margin: 0;
    align-items: center;
    text-align: center;
  }

  .section--hot-tours.is-carousel .hot-tour-card {
    flex-basis: calc(100% - 146px);
  }

  .hot-tour-image {
    width: 100%;
  }

  .hot-tour-body {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hot-tour-title,
  .hot-tour-region,
  .hot-tour-footer {
    width: 100%;
    text-align: center;
  }

  .hot-tour-footer {
    display: flex;
    justify-content: center;
  }

  .hot-tours-header,
  .hot-tours-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .hot-tours-header {
    justify-content: center;
    margin-bottom: 14px;
  }

  .section--hot-tours .section-title {
    margin: 0;
    text-align: center;
    font-size: 32px;
  }

  .hot-tours-grid {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    touch-action: pan-y;
  }

  .hot-tours-actions {
    display: inline-flex;
    gap: 12px;
  }

.places-banner-actions.is-overlay,
.hot-tours-actions.is-overlay {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 56px;
  transform: none;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  }

  .places-banner-actions.is-overlay .circle-btn,
  .hot-tours-actions.is-overlay .circle-btn {
    pointer-events: auto;
  }

  .section--hot-tours .circle-btn,
  .section--places .circle-btn {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle at 30% 20%, #ffffff, #dbe5ff);
    color: #1f52b2;
    box-shadow: 0 0 0 1px rgba(31, 82, 178, 0.16), 0 6px 16px rgba(15, 36, 84, 0.16);
  }

  .section--hot-tours.is-carousel .hot-tours-grid::before,
  .section--hot-tours.is-carousel .hot-tours-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    z-index: 3;
    pointer-events: none;
  }

  .section--hot-tours.is-carousel .hot-tours-grid::before {
    left: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.86) 24%,
      rgba(255, 255, 255, 0.56) 56%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .section--hot-tours.is-carousel .hot-tours-grid::after {
    right: 0;
    background: linear-gradient(
      270deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.86) 24%,
      rgba(255, 255, 255, 0.56) 56%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .section--hot-tours.is-carousel .hot-tour-card,
  .places-banner--slider .place-card {
    pointer-events: none;
  }

  .section--hot-tours.is-carousel .hot-tour-card.is-current,
  .places-banner--slider .place-card.is-current {
    pointer-events: auto;
  }

  .section--hot-tours.is-expanded .hot-tours-actions,
  .places-banner.is-expanded .places-banner-actions {
    display: none !important;
  }

  .section--hot-tours.is-expanded .hot-tours-grid::before,
  .section--hot-tours.is-expanded .hot-tours-grid::after,
  .places-banner.is-expanded .places-grid::before,
  .places-banner.is-expanded .places-grid::after {
    content: none;
  }

  .section--hot-tours.is-expanded .hot-tour-card,
  .places-banner.is-expanded .place-card {
    width: min(360px, 100%);
    max-width: 360px;
    flex-basis: min(360px, 100%);
    pointer-events: auto;
  }

  .hot-tours-progress {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    padding: 0 8px;
  }

  .hot-tours-progress[hidden] {
    display: none;
  }

  .hot-tours-progress-track {
    width: min(220px, 100%);
    height: 6px;
    border-radius: 999px;
    background: #d8dce4;
    overflow: hidden;
  }

  .hot-tours-progress-fill {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1f52b2, #4d7fe8);
    transition: width 220ms ease;
  }

  .hot-tours-footer {
    margin-top: 20px;
  }

  .container-hot-tours .hot-tours-more-btn {
    width: min(520px, 100%);
    max-width: 100%;
    min-height: 56px;
    padding: 12px 20px;
    font-size: clamp(15px, 4.6vw, 22px);
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .actual-grid {
    grid-template-columns: 1fr;
  }

  .section--actual.section--actual-slider .actual-grid {
    touch-action: pan-y;
  }

  .section--actual.section--actual-slider .actual-card {
    flex-basis: 100%;
  }

  .actual-slider-progress-track {
    width: 100%;
  }

  .actual-card {
    min-height: 420px;
  }

  .actual-card-body {
    padding: 20px 20px 24px;
  }

  .actual-card-title {
    font-size: clamp(18px, 5.6vw, 30px);
    line-height: 1.08;
  }

  .actual-card-text {
    font-size: clamp(14px, 4.2vw, 20px);
    line-height: 1.22;
  }

  .actual-card-footer {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .section--region-articles {
    padding-top: 28px;
  }

  .region-articles-title {
    margin-bottom: 14px;
    font-size: 36px;
    line-height: 1.1;
  }

  .region-articles-card {
    padding: 16px;
  }

  .region-article,
  .region-article--side {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    height: 120px;
    padding: 8px;
    border-radius: 14px;
  }

  .region-article-media,
  .region-article-side-thumb {
    border-radius: 12px;
  }

  .region-article-badge,
  .region-article-badge--inline {
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    margin-bottom: 0;
  }

  .region-article-date,
  .region-article--side .region-article-date {
    font-size: 12px;
  }

  .region-article-title,
  .region-article--side .region-article-title {
    font-size: 20px;
    line-height: 1.1;
  }

  .region-article-topic,
  .region-article--side .region-article-topic {
    font-size: 13px;
    line-height: 1.2;
  }

  .region-article-list {
    gap: 8px;
  }

  .tag-location {
    padding: 8px 14px;
    font-size: 17px;
  }

  .journal-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    height: auto;
    min-height: 0;
    border-radius: 26px;
    padding: 18px 16px 16px;
  }

  .journal-card-header {
    margin: 10px;
    max-width: 100%;
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  .journal-title {
    font-size: 26px;
    line-height: 1.12;
  }

  .journal-subtitle {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.26;
  }

  .journal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 24px;
    min-height: 44px;
    font-size: 16px;
    border-radius: 12px;
  }

  .journal-card-header .journal-button {
    display: none;
  }

  .journal-button--mobile {
    display: inline-flex;
    align-self: center;
    margin-top: 0;
  }

  .journal-articles {
    align-self: center;
    width: min(320px, 100%);
    max-width: min(320px, 100%);
    flex: 0 0 auto;
    margin: 0 auto;
    min-height: 136px;
    height: 136px;
    margin-bottom: 10px;
  }

  .journal-article {
    height: 136px;
    border-radius: 14px;
    padding: 8px;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .journal-article-image {
    width: 96px;
    height: 120px;
    border-radius: 10px;
  }

  .journal-article-content {
    margin-top: 0;
    justify-content: center;
    height: 100%;
    gap: 4px;
  }

  .journal-article-date,
  .journal-article-tag {
    font-size: 12px;
  }

  .journal-article-title {
    font-size: 16px;
    line-height: 1.16;
  }

  .forum-card {
    position: relative;
    --forum-eagle-reserve: clamp(146px, 44vw, 240px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 14px;
    height: auto;
    min-height: 0;
    border-radius: 28px;
    padding: 22px 16px 18px;
    overflow: hidden;
    background: linear-gradient(90deg, #ff9a0c 0%, #ef560f 100%);
  }

  .forum-card::before {
    background-size: clamp(300px, 86vw, 620px) auto, clamp(210px, 60vw, 420px) auto;
    background-position: right -32px top -14px, left -38px bottom -18px;
    opacity: 0.2;
  }

  .forum-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    max-width: 100%;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .forum-title {
    margin: 0;
    max-width: 100%;
    color: #ffffff;
    font-size: clamp(34px, 8.2vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .forum-subtitle {
    margin: 0;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(15px, 4.1vw, 22px);
    line-height: 1.18;
  }

  .forum-button {
    position: relative;
    z-index: 2;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(520px, 100%);
    min-height: 56px;
    margin-top: 14px;
    padding: 12px 20px;
    border-radius: 14px;
    background: #f1f3f5;
    color: #131722;
    font-size: clamp(15px, 4.6vw, 22px);
    font-weight: 700;
    text-decoration: none;
  }

  .forum-image {
    display: none !important;
  }

  .forum-illustration {
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .forum-card {
    min-height: 0;
    padding: 24px 20px 20px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .forum-card {
    min-height: 300px;
    padding: 30px 28px 22px;
    gap: 22px;
  }

  .forum-card-inner {
    width: min(520px, 58%);
  }

  .forum-title {
    font-size: clamp(34px, 5.2vw, 46px);
  }

  .forum-subtitle {
    font-size: clamp(16px, 2.6vw, 20px);
    max-width: 30ch;
  }

  .forum-button {
    min-height: 52px;
    padding: 0 34px;
    font-size: 18px;
  }

  .forum-image {
    right: -8px;
    width: clamp(280px, 38vw, 420px);
    max-width: 54%;
  }
}

@media (max-width: 420px) {
  .forum-card {
    padding: 20px 14px 14px;
  }

  .forum-title {
    font-size: clamp(30px, 9.8vw, 40px);
  }

  .forum-subtitle {
    font-size: clamp(14px, 4.6vw, 18px);
  }

  .forum-button {
    min-height: 52px;
    font-size: clamp(14px, 5vw, 18px);
  }

  .container-hot-tours .hot-tours-more-btn,
  .section--places .places-more-btn {
    min-height: 52px;
    font-size: clamp(14px, 5vw, 18px);
  }

}

@media (max-width: 1200px) {
  .region-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .region-overview-grid {
    grid-template-columns: 1fr;
  }

  .region-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-overview-card {
    padding: 24px 22px 22px;
  }

  .region-overview-title {
    font-size: 34px;
  }

  .region-overview-lead,
  .region-overview-text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .section--region-overview {
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .section--region-media {
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .region-overview-title {
    font-size: 28px;
  }

  .region-overview-lead,
  .region-overview-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .region-media-grid {
    grid-template-columns: 1fr;
  }

  .section--region-overview .container,
  .section--region-media .container,
  .section--region-articles .container,
  .region-page .section--actual .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .section--region-overview .region-overview-grid,
  .section--region-media .region-media-header,
  .section--region-media .region-media-grid,
  .section--region-media .region-media-actions,
  .section--region-media .region-media-empty,
  .section--region-articles .region-articles-title,
  .section--region-articles .region-articles-card,
  .section--region-articles .region-media-empty,
  .region-page .section--actual .actual-grid,
  .region-page .section--actual .actual-slider-progress {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .section--region-overview .region-overview-card,
  .section--region-overview .region-overview-facts,
  .section--region-media .region-media-header,
  .section--region-media .section-title,
  .section--region-media .region-media-empty,
  .section--region-articles .region-articles-title,
  .section--region-articles .region-media-empty,
  .region-page .section--actual .actual-card-body {
    text-align: center;
  }

  .section--region-media .region-media-header {
    justify-content: center;
  }

  .section--region-overview .region-overview-highlights {
    justify-content: center;
  }

  .section--region-overview .region-overview-facts {
    justify-items: center;
  }

  .section--region-overview .region-fact-card {
    width: 100%;
    text-align: center;
  }

  .section--region-articles .region-article-content {
    align-items: center;
    text-align: center;
  }

  .section--region-articles .region-article-badge--inline {
    align-self: center;
  }

  .section--region-articles .region-article,
  .section--region-articles .region-article--side,
  .section--region-articles .region-article--stack {
    grid-template-columns: 1fr;
    height: auto;
    gap: 10px;
  }

  .section--region-articles .region-article-media,
  .section--region-articles .region-article-side-thumb {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .region-page .section--actual .actual-card-body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
  }

  .region-page .section--actual .actual-card-text {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .container,
  .container-hot-tours,
  .tour-page .container {
    width: min(1145px, calc(100% - 40px));
  }
}

@media (max-width: 768px) {
  .container,
  .container-hot-tours,
  .tour-page .container {
    width: min(1145px, calc(100% - 32px));
  }

  .hero-field input,
  .hero-field select,
  .reviews-field input[type="text"],
  .reviews-field select,
  .reviews-field textarea {
    font-size: 16px;
  }

  .search-btn,
  .tour-book-btn,
  .reviews-submit {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-hot-tours,
  .tour-page .container {
    width: min(1145px, calc(100% - 24px));
  }

  .section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.12;
  }

  .tour-title {
    font-size: 26px;
    line-height: 1.12;
  }

  .reviews-title {
    font-size: 40px;
    -webkit-text-stroke: 1.5px #ffffff;
  }

  .article-detail-title,
  .articles-topic-title,
  .articles-first-title,
  .region-articles-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .reviews-hero {
    min-height: 300px;
  }

  .article-detail-cover,
  .hotel-card-media,
  .place-card-image,
  .hot-tour-image,
  .articles-topic-card-media {
    height: 140px;
  }

  .tour-day-image {
    flex-basis: 100%;
  }

  .template-hotels-catalog .hotels-hero {
    padding: 96px 0 36px;
  }

  .template-hotels-catalog .hotels-hero .hero-title {
    font-size: 30px;
  }
}

/* Guides pages */
.section--guides-list {
  padding: 68px 0 68px;
}

.guides-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: #6f7787;
  font-size: 18px;
  line-height: 1.2;
}

.guides-page-title {
  margin-top: 24px;
  font-size: 60px;
  line-height: 1;
}

.guides-all-tours-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 52px;
  padding: 0 24px;
  border: 1.5px solid #cfd6e6;
  border-radius: 12px;
  background: #ffffff;
  color: #182033;
  font-size: 31px;
  font-weight: 600;
}

.guides-page-count {
  margin: 0 0 0;
  font-size: 53px;
  font-weight: 700;
  line-height: 1.05;
}

.guides-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.guide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 5px 20px rgba(18, 24, 38, 0.08);
}

.guide-card-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.guide-card-avatar-link {
  flex: 0 0 92px;
}

.guide-card-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.guide-card-body {
  min-width: 0;
}

.guide-card-name {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.guide-card-city {
  margin: 0 0 0;
  color: #6f7787;
  font-size: 18px;
  line-height: 1.25;
}

.guide-card-meta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #2f3a4f;
  font-size: 20px;
  line-height: 1.2;
}

.guide-card-rating {
  color: #f4b400;
  font-weight: 700;
}

.guide-card-reviews {
  color: #2b5ecf;
  font-weight: 500;
}

.guide-card-description {
  margin: 10px 0 0;
  max-width: 760px;
  color: #212a3e;
  font-size: 20px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card-action {
  flex: 0 0 auto;
}

.guide-card-offers-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(31, 79, 184, 0.22);
}

.guides-empty,
.guide-empty {
  margin-top: 24px;
  border-radius: 18px;
  background: #ffffff;
  padding: 22px;
  color: #5e697d;
  font-size: 18px;
  line-height: 1.35;
  box-shadow: 0 4px 16px rgba(16, 37, 89, 0.08);
}

.section--guide-profile {
  padding: 132px 0 24px;
}

.guide-profile-card {
  margin-top: 28px;
  background: #ffffff;
  border-radius: 28px;
  padding: 42px 42px 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(16, 37, 89, 0.08);
}

.guide-profile-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 180px;
}

.guide-profile-body {
  min-width: 0;
}

.guide-profile-name {
  font-size: 48px;
  line-height: 1;
}

.guide-profile-city {
  margin: 0 0 0;
  color: #6f7787;
  font-size: 22px;
}

.guide-profile-meta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #2f3a4f;
  font-size: 20px;
}

.guide-profile-meta span:first-child {
  color: #f4b400;
  font-weight: 700;
}

.guide-profile-meta .guide-profile-meta-second-child {
  color: #2c68bd;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.guide-profile-meta a.guide-profile-meta-second-child:hover {
  text-decoration-thickness: 2px;
}

.guide-profile-description {
  margin: 14px 0 0;
  color: #212a3e;
  font-size: 18px;
  line-height: 1.45;
  max-width: 820px;
}

.section--guide-tours {
  padding-top: 45px;
  padding-bottom: 18px;
}

.section--guide-reviews,
.section--guide-articles {
  padding-top: 45px;
}

.guide-section-title {
  font-size: 34px;
}

.guide-tours-grid,
.guide-articles-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-tour-card,
.guide-article-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 5px 20px rgba(16, 37, 89, 0.08);
  display: flex;
  flex-direction: column;
}

.guide-tour-image,
.guide-article-image {
  border-radius: 12px;
  height: 164px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.guide-tour-title,
.guide-article-title {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.guide-tour-meta {
  margin-top: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6f7787;
  font-size: 14px;
}

.guide-tour-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.guide-tour-price {
  color: #1f52b2;
  font-size: 18px;
  font-weight: 700;
}

.guide-tour-link,
.guide-article-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #FF9A0C 0%, #EF560F 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.guide-reviews-list {
  margin-top: 22px;
  display: grid;
  gap: 0;
}

.guide-reviews-list--single {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.guide-reviews-list--single .guide-review-card {
  border-top: 1px solid #dce2ec;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 24px 0 20px;
}

.guide-slider {
  min-width: 0;
  position: relative;
}

.guide-slider-actions {
  display: none;
}

.guide-slider-progress {
  display: none;
}

.guide-tours-grid--slider {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-reviews-list--slider {
  margin-top: 22px;
  display: grid;
  gap: 0;
}

.section--guide-reviews .guide-reviews-list--slider .guide-review-card {
  border-top: 1px solid #dce2ec;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 24px 0 20px;
  height: auto;
}

.guide-review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 20px rgba(16, 37, 89, 0.08);
}

.guide-review-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #4e5c75;
}

.guide-review-head strong {
  color: #17213a;
  font-size: 16px;
}

.guide-review-text {
  margin: 0;
  color: #1f293d;
  font-size: 20px;
  line-height: 1.42;
}

.section--guide-reviews .guide-section-title {
  text-align: left;
  font-size: clamp(30px, 3.7vw, 34px);
}

.section--guide-reviews .guide-reviews-panel {
  margin-top: 18px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(16, 37, 89, 0.09);
}

.reviews-travel-photos--guide {
  margin-top: 0;
  display: grid;
  gap: 10px;
}

.reviews-travel-photos--guide .reviews-travel-photos-title {
  margin: 0;
  color: #0f1625;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.reviews-travel-photos--guide .reviews-travel-photos-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.reviews-travel-photos--guide .reviews-travel-photo {
  position: relative;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  background-color: #d6dce8;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section--guide-reviews .reviews-travel-photo-btn,
.section--guide-reviews .review-photo-item-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.reviews-travel-photos--guide .reviews-travel-photo--more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 36, 0.52);
}

.reviews-travel-photos--guide .reviews-travel-photo--more span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.section--guide-reviews .review-item {
  border-radius: 0;
  background: transparent;
  padding: 22px 0 14px;
  border-top: 1px solid #dce2ec;
}

.section--guide-reviews .review-item--detailed {
  display: grid;
  gap: 12px;
}

.section--guide-reviews .review-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.section--guide-reviews .review-meta {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.section--guide-reviews .review-author-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.section--guide-reviews .review-avatar {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  background: #8d96a3;
  position: relative;
  overflow: hidden;
}

.section--guide-reviews .review-avatar::before {
  top: 23%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  opacity: 80%;
}

.section--guide-reviews .review-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: 64%;
  height: 32%;
  transform: translateX(-50%);
  border-radius: 999px 999px 0 0;
  box-sizing: border-box;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  opacity: 80%;
  border-bottom: 0;
}

.section--guide-reviews .review-avatar.is-blue {
  background: #2f8ce6;
}

.section--guide-reviews .review-avatar.is-yellow {
  background: #e7b535;
}

.section--guide-reviews .review-avatar.is-gray {
  background: #8d96a3;
}

.section--guide-reviews .review-avatar.is-red {
  background: #ef4040;
}

.section--guide-reviews .review-date {
  color: #8a95a8;
  font-size: clamp(18px, 1vw, 18px);
  line-height: 1.2;
  white-space: nowrap;
}

.section--guide-reviews .review-author {
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.1;
}

.section--guide-reviews .review-stars-inline {
  display: inline-flex;
  align-items: center;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff6d8;
}

.section--guide-reviews .review-stars-inline .is-filled {
  color: #f4b400;
  text-shadow: 0 1px 0 rgba(204, 138, 0, 0.2);
}

.section--guide-reviews .review-stars-inline .is-empty {
  color: #e7d9a3;
}

.section--guide-reviews .review-tour-title {
  margin: -2px 0 0;
  color: #2c68bd;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.section--guide-reviews a.review-tour-title:hover {
  text-decoration-thickness: 2px;
}

.section--guide-reviews .guide-review-text {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.42;
}

.section--guide-reviews .review-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section--guide-reviews .review-photo-item {
  border: 0;
  padding: 0;
  width: 88px;
  height: 88px;
  min-height: 0;
  flex: 0 0 88px;
  border-radius: 7px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #d6dce8;
}

.guide-article-summary {
  margin: 10px 0 0;
  color: #5e6d88;
  font-size: 14px;
  line-height: 1.4;
}

.guide-article-link {
  margin-top: auto;
  margin-top: 20px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .guides-page-title {
    font-size: 46px;
  }

  .guides-page-count {
    font-size: 39px;
  }

  .guide-card {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-card-action {
    width: 100%;
  }

  .guide-card-offers-btn {
    width: 100%;
  }

  .guide-card-description {
    font-size: 17px;
  }

  .guide-tours-grid,
  .guide-tours-grid--slider,
  .guide-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section--guides-list,
  .section--guide-profile {
    padding-top: 36px;
  }

  .guides-breadcrumb {
    font-size: 13px;
    gap: 6px;
  }

  .guides-page-title {
    margin-top: 16px;
    font-size: 34px;
  }

  .guides-all-tours-btn {
    margin-top: 16px;
    width: 100%;
    min-height: 44px;
    font-size: 16px;
  }

  .guides-page-count {
    margin-top: 28px;
    font-size: 28px;
  }

  .guide-card {
    padding: 16px;
    border-radius: 16px;
  }

  .guide-card-action {
    width: 100%;
    margin-top: 6px;
    padding-inline: 6px;
    box-sizing: border-box;
  }

  .guide-card-offers-btn {
    width: 100%;
    max-width: 100%;
  }

  .guide-card-main {
    gap: 14px;
  }

  .guide-card-avatar-link {
    flex-basis: 82px;
  }

  .guide-card-avatar {
    width: 82px;
    height: 82px;
  }

  .guide-card-name {
    font-size: 22px;
  }

  .guide-card-city {
    font-size: 14px;
  }

  .guide-card-meta {
    margin-top: 8px;
    font-size: 16px;
    gap: 10px;
  }

  .guide-card-description {
    margin-top: 10px;
    font-size: 14px;
  }

  .guide-profile-card {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    flex-direction: column;
    gap: 14px;
  }

  .guide-profile-avatar {
    width: 100px;
    height: 100px;
    flex-basis: 100px;
  }

  .guide-profile-name {
    font-size: 32px;
  }

  .guide-profile-city {
    font-size: 16px;
  }

  .guide-profile-meta {
    margin-top: 10px;
    font-size: 15px;
    gap: 8px;
  }

  .guide-profile-description {
    margin-top: 10px;
    font-size: 15px;
  }

  .guide-section-title {
    font-size: 28px;
  }

  .guide-tours-grid,
  .guide-tours-grid--slider,
  .guide-articles-grid {
    grid-template-columns: 1fr;
  }

  .guide-slider.is-enabled {
    padding-bottom: 10px;
  }

  .guide-slider.is-enabled .guide-slider-actions {
    position: absolute;
    top: 50%;
    left: -8px;
    right: -8px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .guide-slider.is-enabled .guide-slider-actions .circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #c5cfdf;
    background: rgba(255, 255, 255, 0.96);
    color: #2d5fb6;
    box-shadow: 0 6px 18px rgba(20, 42, 87, 0.18);
    pointer-events: auto;
  }

  .guide-slider.is-enabled .guide-slider-actions .circle-btn--next {
    color: #2d5fb6;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 18px rgba(20, 42, 87, 0.18);
  }

  .guide-slider.is-enabled .guide-slider-actions .circle-btn.is-disabled,
  .guide-slider.is-enabled .guide-slider-actions .circle-btn:disabled {
    opacity: 0.4;
  }

  .guide-tours-grid--slider,
  .guide-reviews-list--slider {
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 30px;
  }

  .guide-tours-grid--slider::-webkit-scrollbar,
  .guide-reviews-list--slider::-webkit-scrollbar {
    display: none;
  }

  .guide-tours-grid--slider {
    margin-top: 16px;
    grid-auto-columns: calc(100% - 64px);
  }

  .guide-reviews-list--slider {
    margin-top: 16px;
    grid-auto-columns: calc(100% - 40px);
    gap: 14px;
  }

  .guide-tours-grid--slider .guide-tour-card,
  .guide-reviews-list--slider .guide-review-card {
    scroll-snap-align: center;
  }

  .section--guide-reviews .guide-reviews-list--slider .guide-review-card {
    border-top: 0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(16, 37, 89, 0.08);
    padding: 16px;
  }

  .guide-slider.is-enabled .guide-slider-progress {
    display: block;
    margin: 12px 30px 0;
  }

  .guide-slider-progress-track {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: #d5dae3;
    overflow: hidden;
  }

  .guide-slider-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #2f5fb8;
    transition: width 0.18s ease, transform 0.18s ease;
  }

  .guide-reviews-list--single {
    padding: 0;
  }

  .section--guide-reviews .guide-reviews-panel {
    border-radius: 16px;
    padding: 14px;
  }

  .section--guide-reviews .review-head-row {
    flex-direction: column;
    gap: 8px;
  }

  .section--guide-reviews .review-date {
    font-size: 14px;
  }

  .section--guide-reviews .review-stars-inline {
    font-size: 15px;
    padding: 2px 7px;
  }

  .section--guide-reviews .review-author {
    font-size: 18px;
    line-height: 1.2;
  }

  .section--guide-reviews .review-tour-title {
    font-size: 16px;
    line-height: 1.28;
  }

  .section--guide-reviews .guide-section-title {
    font-size: clamp(30px, 8.8vw, 44px);
  }

  .section--guide-reviews .guide-review-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .reviews-travel-photos--guide .reviews-travel-photos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section--guide-reviews .reviews-travel-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .section--guide-reviews .review-photo-item {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .reviews-travel-photos--guide .reviews-travel-photos-title {
    font-size: 21px;
  }

  .guide-tour-image,
  .guide-article-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .guide-card-name {
    font-size: 23px;
  }

  .guide-profile-name {
    font-size: 28px;
  }

  .guide-tour-title,
  .guide-article-title {
    font-size: 18px;
  }

  .guide-tour-price {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  :where(.template-home) :is(
    .search-btn,
    .hot-tours-more-btn,
    .places-more-btn,
    .journal-button,
    .forum-button
  ) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

:where(.template-home) :is(
  .hot-tours-more-btn,
  .places-more-btn,
  .forum-button
) {
  border-radius: 16px;
  padding: 20px 108px;
  min-height: 56px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  :where(.template-home) :is(
    .hot-tours-more-btn,
    .places-more-btn,
    .forum-button
  ) {
    border-radius: 12px;
    padding: 12px 24px;
    min-height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  :where(.template-home) :is(
    .hot-tours-more-btn,
    .places-more-btn,
    .forum-button
  ) {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .container-hot-tours .hot-tours-more-btn,
  .section--places .places-more-btn {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}
