:root {
  --rtp-blue: #1457ff;
  --rtp-blue-soft: #edf5ff;
  --rtp-navy: #14233f;
  --rtp-gold: #d9a441;
  --rtp-red: #ef174e;
  --rtp-olive: #668b66;
  --rtp-terracotta: #bc6245;
  --rtp-wine: #762c43;
  --rtp-ink: #172746;
  --rtp-muted: #72838f;
  --rtp-line: #e7edf5;
  --rtp-shadow: 0 18px 45px rgba(20, 35, 63, .12);
}

.rtp-search,
.rtp-smart-bar,
.rtp-card,
.rtp-booking-panel,
.rtp-dashboard,
.rtp-section {
  box-sizing: border-box;
  color: var(--rtp-ink);
  font-family: inherit;
}

.rtp-search *,
.rtp-smart-bar *,
.rtp-card *,
.rtp-booking-panel *,
.rtp-dashboard *,
.rtp-section * {
  box-sizing: border-box;
}

.rtp-search {
  display: grid;
  grid-template-columns: minmax(190px, 1.4fr) repeat(4, minmax(120px, 1fr)) auto;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--rtp-line);
  border-radius: 18px;
  background: var(--rtp-line);
  box-shadow: var(--rtp-shadow);
}

.rtp-search__field {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: #fff;
}

.rtp-search label,
.rtp-booking-panel label {
  color: var(--rtp-muted);
  font-size: 12px;
  font-weight: 800;
}

.rtp-search input,
.rtp-search select,
.rtp-booking-panel input,
.rtp-admin-field input,
.rtp-admin-field select,
.rtp-admin-field textarea,
.rtp-partner-form textarea {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: #f7f9fc;
  color: var(--rtp-ink);
  font-size: 15px;
  font-weight: 750;
}

.rtp-demo-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.rtp-demo-faq p {
  margin: 8px 0 0;
  color: var(--demo-muted);
}

.rtp-partner-form {
  display: grid;
  gap: 14px;
}

.rtp-partner-form label {
  display: grid;
  gap: 7px;
  color: var(--rtp-muted);
  font-weight: 850;
}

.rtp-inline-form {
  display: inline-block;
  margin-left: 8px;
}

.rtp-inline-form button {
  min-height: 30px;
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  background: #fff0f3;
  color: var(--rtp-red);
  cursor: pointer;
  font-weight: 850;
}

.rtp-invoice {
  max-width: 760px;
  padding: 30px;
  border: 1px solid var(--rtp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--rtp-shadow);
}

.rtp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}

.rtp-button--primary {
  background: var(--rtp-blue);
  color: #fff !important;
}

.rtp-button--gold {
  background: var(--rtp-gold);
  color: #111 !important;
}

.rtp-smart-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(180px, .5fr) minmax(0, 2fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--rtp-line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.rtp-smart-bar strong,
.rtp-smart-bar span {
  display: block;
}

.rtp-smart-bar .rtp-search {
  box-shadow: none;
}

.rtp-section {
  padding: 44px 0;
}

.rtp-section__head {
  max-width: 780px;
  margin: 0 0 24px;
}

.rtp-section h2,
.rtp-dashboard h2,
.rtp-business-hero h1 {
  margin: 0 0 10px;
  color: var(--rtp-navy);
  font-weight: 950;
  letter-spacing: 0;
}

.rtp-section p,
.rtp-card p,
.rtp-dashboard p {
  color: var(--rtp-muted);
}

.rtp-section--navy {
  padding: 34px;
  border-radius: 22px;
  background: var(--rtp-navy);
  color: #fff;
}

.rtp-section--navy h2,
.rtp-section--navy p {
  color: #fff;
}

.rtp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rtp-card {
  overflow: hidden;
  border: 1px solid var(--rtp-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--rtp-shadow);
}

.rtp-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: var(--rtp-blue-soft);
}

.rtp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.rtp-card:hover .rtp-card__image img {
  transform: scale(1.04);
}

.rtp-card__body {
  padding: 22px;
}

.rtp-card h3 {
  margin: 0 0 10px;
  color: var(--rtp-navy);
  font-size: 22px;
  font-weight: 950;
}

.rtp-card h3 a {
  color: inherit;
  text-decoration: none;
}

.rtp-card__footer {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-top: 18px;
}

.rtp-price {
  display: grid;
  gap: 4px;
}

.rtp-price span {
  color: #a6b1bd;
  font-weight: 850;
  text-decoration: line-through;
}

.rtp-price strong {
  color: var(--rtp-navy);
  font-size: 26px;
  font-weight: 950;
}

.rtp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.rtp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--rtp-blue-soft);
  color: var(--rtp-blue);
  font-size: 12px;
  font-weight: 900;
}

.rtp-badge--red {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--rtp-red);
  color: #fff;
}

.rtp-badge--gold {
  background: #fff7df;
  color: #8b6211;
}

.rtp-booking-panel {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid var(--rtp-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--rtp-shadow);
}

.rtp-booking-panel h3 {
  margin: 0;
  color: var(--rtp-navy);
  font-size: 22px;
  font-weight: 950;
}

.rtp-booking-panel__trust {
  margin: 0;
  color: var(--rtp-muted);
}

.rtp-booking-panel__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--rtp-line);
}

.rtp-booking-panel__price strong {
  color: var(--rtp-blue);
  font-size: 28px;
  font-weight: 950;
}

.rtp-dashboard {
  padding: 28px;
  border: 1px solid var(--rtp-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--rtp-shadow);
}

.rtp-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.rtp-stat {
  padding: 18px;
  border-radius: 16px;
  background: #f7fbff;
}

.rtp-stat strong,
.rtp-stat span {
  display: block;
}

.rtp-stat strong {
  color: var(--rtp-blue);
  font-size: 28px;
  font-weight: 950;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
}

.rtp-table th,
.rtp-table td {
  padding: 13px;
  border-bottom: 1px solid var(--rtp-line);
  text-align: left;
}

.rtp-status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--rtp-blue-soft);
  color: var(--rtp-blue);
  font-weight: 850;
}

.rtp-business-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: stretch;
}

.rtp-business-hero__media {
  grid-row: span 2;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--rtp-blue-soft);
}

.rtp-business-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rtp-business-hero__content {
  align-self: end;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f7fbff 100%);
}

.rtp-kicker {
  margin-bottom: 10px;
  color: var(--rtp-gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.rtp-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
}

.rtp-admin-field {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  background: #fff;
}

.rtp-admin-field span {
  font-weight: 800;
}

.rtp-admin-page code {
  display: inline-block;
  margin: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f3f6fb;
}

@media (max-width: 1100px) {
  .rtp-search,
  .rtp-smart-bar,
  .rtp-business-hero {
    grid-template-columns: 1fr;
  }

  .rtp-card-grid,
  .rtp-dashboard-grid,
  .rtp-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rtp-card-grid,
  .rtp-dashboard-grid,
  .rtp-admin-grid {
    grid-template-columns: 1fr;
  }

  .rtp-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .rtp-business-hero__media {
    min-height: 320px;
  }
}

/* Demo accommodation/category templates */
.rtp-demo-single,
.rtp-demo-category {
  --demo-bg: #f3f7fb;
  --demo-blue: #0b73ee;
  --demo-navy: #10284c;
  --demo-muted: #7d8da3;
  --demo-line: #e5edf6;
  --demo-shadow: 0 18px 45px rgba(19, 41, 78, .10);
  background: var(--demo-bg);
  color: #17243b;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rtp-demo-hero {
  min-height: 560px;
  background-image: linear-gradient(90deg, rgba(9, 35, 76, .96) 0%, rgba(9, 35, 76, .82) 40%, rgba(9, 35, 76, .36) 100%), var(--rtp-hero-image);
  background-position: center;
  background-size: cover;
}

.rtp-demo-hero__inner,
.rtp-demo-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.rtp-demo-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
  padding: 42px 0;
}

.rtp-demo-hero__content {
  color: #fff;
}

.rtp-demo-pill,
.rtp-demo-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.rtp-demo-hero h1 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.rtp-demo-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 22px;
  font-weight: 650;
}

.rtp-demo-badges,
.rtp-demo-actions,
.rtp-demo-thumbs,
.rtp-demo-trust,
.rtp-demo-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.rtp-demo-badges span:first-child {
  background: var(--demo-blue);
}

.rtp-demo-badges span:last-child {
  background: #ffc83d;
  color: #1f2a3d;
}

.rtp-demo-rating strong {
  font-size: 26px;
}

.rtp-demo-rating span {
  color: #ffc83d;
  font-size: 18px;
  letter-spacing: 1px;
}

.rtp-demo-rating em,
.rtp-demo-rating small {
  color: rgba(255, 255, 255, .78);
  font-style: normal;
}

.rtp-demo-trust {
  gap: 28px;
}

.rtp-demo-trust div {
  display: grid;
  gap: 3px;
}

.rtp-demo-trust b,
.rtp-demo-trust span {
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
}

.rtp-demo-actions {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .16);
}

.rtp-demo-actions a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.rtp-demo-thumbs img,
.rtp-demo-thumbs span {
  width: 86px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 12px;
  object-fit: cover;
}

.rtp-demo-thumbs span {
  display: grid;
  place-items: center;
  background: rgba(10, 34, 72, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.rtp-demo-booking {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(5, 22, 48, .28);
}

.rtp-demo-booking__price {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px 10px;
  align-items: start;
}

.rtp-demo-booking__price strong {
  color: #111d35;
  font-size: 34px;
  line-height: 1;
}

.rtp-demo-booking__price em {
  color: #17a568;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.rtp-demo-booking__price small {
  grid-column: 1 / -1;
  color: var(--demo-muted);
}

.rtp-demo-tabs,
.rtp-demo-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rtp-demo-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: #eef3f8;
  color: #7b8797;
  font-weight: 900;
}

.rtp-demo-tabs button:first-child {
  background: var(--demo-blue);
  color: #fff;
}

.rtp-demo-date-grid label,
.rtp-demo-select {
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--demo-line);
  border-radius: 12px;
  color: var(--demo-muted);
  font-size: 12px;
}

.rtp-demo-date-grid b,
.rtp-demo-select b {
  color: #27364d;
  font-size: 13px;
}

.rtp-demo-club {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: #dceeff;
}

.rtp-demo-club strong {
  color: #203049;
}

.rtp-demo-club span {
  color: #7b8797;
  font-size: 12px;
}

.rtp-demo-club a,
.rtp-demo-story a,
.rtp-demo-panel a,
.rtp-demo-section-head a {
  color: var(--demo-blue);
  font-weight: 900;
  text-decoration: none;
}

.rtp-demo-booking ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #335044;
  font-size: 13px;
}

.rtp-demo-wrap {
  padding: 42px 0 70px;
}

.rtp-demo-main-grid,
.rtp-demo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.rtp-demo-story {
  padding-right: 60px;
}

.rtp-demo-story h2,
.rtp-demo-section-head h2,
.rtp-demo-panel h3,
.rtp-demo-destination h2 {
  margin: 0 0 18px;
  color: #1a2940;
  font-weight: 950;
  letter-spacing: 0;
}

.rtp-demo-story p {
  color: var(--demo-muted);
  font-size: 16px;
  line-height: 1.8;
}

.rtp-demo-panel {
  padding: 24px;
  border: 1px solid rgba(226, 235, 245, .9);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--demo-shadow);
}

.rtp-demo-icon-grid,
.rtp-demo-facilities {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.rtp-demo-icon-grid div,
.rtp-demo-facilities div {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #1b3150;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.rtp-demo-icon-grid i,
.rtp-demo-facilities i {
  color: var(--demo-blue);
  font-size: 26px;
  font-style: normal;
}

.rtp-svg-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  color: var(--demo-blue);
}

.rtp-svg-icon svg,
svg.rtp-svg-icon {
  width: 28px;
  height: 28px;
}

.rtp-room-amenities {
  margin-top: 34px;
}

.rtp-demo-rooms {
  margin-top: 36px;
}

.rtp-demo-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rtp-demo-room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.rtp-demo-room-grid article img {
  width: 100%;
  aspect-ratio: 1.65;
  border-radius: 13px;
  object-fit: cover;
}

.rtp-demo-room-grid h3 {
  margin: 12px 0 4px;
  color: #1a2940;
  font-size: 16px;
  line-height: 1.25;
}

.rtp-demo-room-grid strong {
  display: block;
  color: var(--demo-blue);
  font-size: 14px;
}

.rtp-demo-room-grid span {
  color: var(--demo-muted);
  font-size: 12px;
}

.rtp-demo-content-grid {
  grid-template-columns: 1fr 1fr 320px;
  margin-top: 62px;
}

.rtp-demo-facilities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rtp-demo-facilities div {
  min-height: 80px;
  padding: 13px;
  border: 1px solid var(--demo-line);
  border-radius: 12px;
}

.rtp-demo-faq {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--demo-line);
  color: #27364d;
  font-size: 14px;
}

.rtp-demo-side {
  display: grid;
  gap: 24px;
}

.rtp-demo-reviews > div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rtp-demo-reviews > div strong {
  color: #0e1e38;
  font-size: 42px;
}

.rtp-demo-reviews > div span {
  color: #ffc83d;
  font-weight: 900;
}

.rtp-demo-reviews p,
.rtp-demo-map p {
  color: var(--demo-muted);
  font-size: 13px;
}

.rtp-demo-reviews article {
  padding: 14px 0;
  border-top: 1px solid var(--demo-line);
}

.rtp-demo-reviews article b {
  color: #1a2940;
}

.rtp-demo-reviews article em {
  float: right;
  font-style: normal;
  font-weight: 900;
}

.rtp-demo-map div {
  display: grid;
  place-items: center;
  min-height: 126px;
  border-radius: 16px;
  background: #dceeff;
  color: var(--demo-blue);
  font-size: 34px;
}

.rtp-demo-map button {
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #27364d;
  font-weight: 900;
}

.rtp-demo-policy-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--demo-shadow);
}

.rtp-demo-policy-strip div {
  display: grid;
  gap: 3px;
}

.rtp-demo-policy-strip b {
  color: #27364d;
  font-size: 13px;
}

.rtp-demo-policy-strip span,
.rtp-demo-security {
  color: var(--demo-muted);
  font-size: 12px;
}

.rtp-demo-security {
  margin: 20px 0 48px;
  text-align: center;
}

.rtp-demo-destination > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) 240px;
  gap: 16px;
  align-items: stretch;
}

.rtp-demo-destination article img {
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: 12px;
  object-fit: cover;
}

.rtp-demo-destination h3 {
  margin: 9px 0 2px;
  color: #1a2940;
  font-size: 15px;
}

.rtp-demo-destination span,
.rtp-demo-destination p {
  color: var(--demo-muted);
  font-size: 12px;
}

.rtp-demo-destination aside {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  background: #dceeff;
}

.rtp-demo-category-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(9, 35, 76, .9), rgba(9, 35, 76, .35)), var(--rtp-category-image);
  background-position: center;
  background-size: cover;
}

.rtp-demo-category-hero > div {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0;
  color: #fff;
}

.rtp-demo-category-hero h1 {
  max-width: 720px;
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 950;
}

.rtp-demo-category-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}

.rtp-demo-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 54px;
}

.rtp-demo-category-grid article {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--demo-shadow);
}

.rtp-demo-category-grid img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.rtp-demo-category-grid article div {
  display: grid;
  gap: 9px;
  padding: 22px;
}

.rtp-demo-category-grid article span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf4ff;
  color: var(--demo-blue);
  font-size: 12px;
  font-weight: 900;
}

.rtp-demo-category-grid h3 {
  margin: 0;
  color: #1a2940;
}

.rtp-demo-category-grid p {
  color: var(--demo-muted);
}

.rtp-demo-category-grid strong,
.rtp-demo-category-grid a {
  color: var(--demo-blue);
  font-weight: 950;
}

@media (max-width: 980px) {
  .rtp-demo-hero__inner,
  .rtp-demo-main-grid,
  .rtp-demo-content-grid,
  .rtp-demo-destination > div {
    grid-template-columns: 1fr;
  }

  .rtp-demo-booking {
    max-width: 420px;
  }

  .rtp-demo-room-grid,
  .rtp-demo-policy-strip,
  .rtp-demo-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rtp-demo-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rtp-demo-hero__inner,
  .rtp-demo-wrap {
    width: min(100% - 24px, 1160px);
  }

  .rtp-demo-hero {
    min-height: auto;
  }

  .rtp-demo-room-grid,
  .rtp-demo-policy-strip,
  .rtp-demo-category-grid,
  .rtp-demo-facilities {
    grid-template-columns: 1fr;
  }
}
