.cb-main.real-estate-show-main {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.real-estate-show-container {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding: 16px 24px 96px;
}

.real-estate-show__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.real-estate-show__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.real-estate-show__meta-views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.real-estate-show__meta-views svg {
  opacity: 0.72;
}

.real-estate-show-owner-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 600;
}

.real-estate-show-sidebar-stack {
  display: grid;
  gap: 12px;
}

.real-estate-show-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.real-estate-show-card .cb-seller-card {
  border: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.real-estate-show-card .cb-seller-card__title {
  margin: 0 0 12px;
  font-size: 16px;
}

.real-estate-show__top h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.2;
  max-width: 900px;
}

.real-estate-show__location {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 15px;
}

.real-estate-show__top-actions {
  flex: 0 0 auto;
}

.real-estate-show-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px) 360px;
  gap: 32px;
  align-items: start;
}

.real-estate-show__main {
  min-width: 0;
}

.real-estate-show-gallery {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}

.real-estate-show-gallery__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.real-estate-show-gallery__main {
  position: relative;
  width: 100%;
  min-width: 0;
  height: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-estate-show-gallery__bg {
  display: none;
}

.real-estate-show-gallery__open {
  position: relative;
  z-index: 1;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-estate-show-gallery__open img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(280px, 60vh, 640px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.real-estate-show-gallery__count {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: auto;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.real-estate-show-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  color: #0f172a;
}

.real-estate-show-gallery__nav--prev { left: 12px; }
.real-estate-show-gallery__nav--next { right: 12px; }

.real-estate-show-gallery__thumbs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  max-height: none;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.real-estate-show-gallery__thumb {
  position: relative;
  border: 2px solid transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 92px;
  width: 92px;
  height: 68px;
  cursor: pointer;
  background: #f2f4f7;
}

.real-estate-show-gallery__more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.58);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  pointer-events: none;
}

.real-estate-show-gallery__thumb.is-active {
  border-color: #0b63d8;
}

.real-estate-show-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.real-estate-show-gallery--guest-locked .real-estate-show-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(200px, 40vh, 360px);
}

.cb-guest-photo-gate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.cb-guest-photo-gate > img,
.cb-guest-photo-gate img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(280px, 60vh, 640px);
  margin: 0 auto;
  object-fit: contain;
  filter: blur(14px);
  transform: scale(1.04);
}

.cb-guest-photo-gate__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  text-align: center;
  background: rgba(15, 23, 42, 0.42);
  color: #fff;
}

.cb-guest-photo-gate__text {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-wrap: balance;
}

.cb-guest-photo-gate__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cb-guest-photo-gate--gallery {
  flex: 1 1 auto;
  min-height: 100%;
  border-radius: 18px;
}

.cb-guest-photo-gate--gallery > img,
.cb-guest-photo-gate--gallery img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 46vh, 520px);
  object-fit: cover;
}

.cb-guest-photo-gate--gallery .cb-guest-photo-gate__text {
  max-width: 280px;
  font-size: 15px;
}

.real-estate-show-gallery__empty {
  min-height: 420px;
  border-radius: 16px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-estate-show__published {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
}

.real-estate-show__top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.real-estate-show-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.real-estate-show-section--key {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.real-estate-show-section h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.real-estate-show-attrs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.real-estate-show-attrs--key {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.real-estate-show-attr {
  display: grid;
  gap: 2px;
}

.real-estate-show-attr span {
  color: #64748b;
  font-size: 13px;
}

.real-estate-show-attr b {
  font-size: 16px;
}

.real-estate-show-description {
  line-height: 1.65;
  font-size: 15px;
}

.real-estate-show-description.is-collapsed .real-estate-show-description__body {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.real-estate-show-description__toggle {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.real-estate-show-description__toggle:hover {
  text-decoration: underline;
}

.real-estate-show-sidebar {
  position: sticky;
  top: 84px;
}

.real-estate-show-contact {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.real-estate-show-contact__price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.real-estate-show-contact__price {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.real-estate-show-contact__note {
  color: #64748b;
  font-size: 13px;
}

.real-estate-show-contact__sqm {
  color: #64748b;
  font-size: 14px;
}

.real-estate-show-contact__status {
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
}

.real-estate-show-contact__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}

.real-estate-show-contact__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.real-estate-show-contact__spec {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  gap: 0 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f8fafc;
}

.real-estate-show-contact__spec-icon {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eff6ff center/16px no-repeat;
}

.real-estate-show-contact__spec--rooms .real-estate-show-contact__spec-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M7 10V7a2 2 0 012-2h6a2 2 0 012 2v3h3v10H4V10h3zm2-3v3h6V7H9zm-3 5v6h12v-6H6z'/%3E%3C/svg%3E"); }
.real-estate-show-contact__spec--area .real-estate-show-contact__spec-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M4 5h16v14H4V5zm2 2v10h12V7H6z'/%3E%3C/svg%3E"); }
.real-estate-show-contact__spec--floor .real-estate-show-contact__spec-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M4 20h16v-2H4v2zm0-4h4v-4H4v4zm6 0h4v-6h-4v6zm6 0h4v-8h-4v8z'/%3E%3C/svg%3E"); }
.real-estate-show-contact__spec--kitchen .real-estate-show-contact__spec-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M6 3h12a2 2 0 012 2v3H4V5a2 2 0 012-2zm14 7v11H4V10h16z'/%3E%3C/svg%3E"); }
.real-estate-show-contact__spec--year .real-estate-show-contact__spec-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M7 2h2v2h6V2h2v2h3a2 2 0 012 2v14a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2h3V2zm13 8H4v10h16V10z'/%3E%3C/svg%3E"); }
.real-estate-show-contact__spec--house .real-estate-show-contact__spec-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M12 3l9 8h-3v10H6V11H3l9-8z'/%3E%3C/svg%3E"); }
.real-estate-show-contact__spec--default .real-estate-show-contact__spec-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20z'/%3E%3C/svg%3E"); }

.real-estate-show-contact__spec-label {
  color: #64748b;
  font-size: 11px;
  line-height: 1.2;
}

.real-estate-show-contact__spec b {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.2;
}

.real-estate-show-sidebar .real-estate-show-location {
  margin-top: 0;
}

.real-estate-show-sidebar .real-estate-show-location h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.real-estate-show-sidebar .cb-listing-map-wrap--compact {
  height: 160px;
  border-radius: 12px;
}

.real-estate-show-compose.is-open textarea,
.real-estate-show-compose.is-open [data-re-send-message] {
  display: block;
}

.real-estate-show-compose.is-open [data-re-focus-message] {
  display: none;
}

.real-estate-show-compose textarea {
  width: 100%;
  min-height: 88px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 10px 12px;
  resize: vertical;
  font: inherit;
}

.real-estate-show-compose__label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.real-estate-show-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
  max-width: 100%;
}

.real-estate-show-quick button,
.real-estate-show-quick__btn {
  box-sizing: border-box;
  max-width: 100%;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  white-space: normal;
  text-align: left;
  transition: border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}

.real-estate-show-quick button:hover,
.real-estate-show-quick__btn:hover {
  border-color: #93c5fd;
  background: #f8fbff;
  color: #1e3a8a;
}

.real-estate-show-quick button.is-active,
.real-estate-show-quick__btn.is-active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .18);
}

.real-estate-show-quick button:focus-visible,
.real-estate-show-quick__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}

.real-estate-show-compose__error {
  color: #b91c1c;
  font-size: 13px;
}

.real-estate-show-similar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.real-estate-show-similar__card {
  display: grid;
  grid-template-rows: 140px auto;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .15s ease;
}

.real-estate-show-similar__card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.real-estate-show-similar__card img,
.real-estate-show-similar__placeholder {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 13px;
}

.real-estate-show-similar__body {
  padding: 10px 12px 12px;
  display: grid;
  gap: 4px;
}

.real-estate-show-similar__body strong {
  font-size: 16px;
  color: #0f172a;
}

.real-estate-show-similar__body span {
  font-size: 14px;
}

.real-estate-show-similar__body em {
  font-style: normal;
  color: #64748b;
  font-size: 13px;
}

.real-estate-show-container .cb-listing-location-public .cb-listing-map-wrap {
  min-height: 400px;
  height: 400px;
}

.real-estate-show-container .cb-ad-slot {
  margin-bottom: 16px;
}

.real-estate-show-mobile-bar {
  display: none;
}

.real-estate-show-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0b0f17;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 64px 20px 96px;
}

.real-estate-show-lightbox[hidden] {
  display: none !important;
}

.real-estate-show-lightbox__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* No photo-blur fill — it looks broken on portrait / textured shots */
.real-estate-show-lightbox__bg {
  display: none !important;
}

.real-estate-show-lightbox__stage img {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1280px);
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  user-select: none;
  -webkit-user-drag: none;
  background: transparent;
}

.real-estate-show-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background 0.15s ease;
}

.real-estate-show-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.real-estate-show-lightbox__nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.real-estate-show-lightbox__nav[hidden],
.real-estate-show-lightbox__nav.is-single {
  display: none !important;
}

.real-estate-show-lightbox__nav button {
  pointer-events: auto;
  margin: 0 16px;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.real-estate-show-lightbox__nav button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.real-estate-show-lightbox__counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.real-estate-show-lightbox__counter[hidden] {
  display: none !important;
}

.real-estate-show-lightbox__thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding: 0 16px 4px;
  z-index: 3;
}

.real-estate-show-lightbox__thumbs:empty {
  display: none;
}

.real-estate-show-lightbox__thumb {
  border: 2px solid transparent;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  width: 64px;
  height: 48px;
  flex: 0 0 auto;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.72;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.real-estate-show-lightbox__thumb:hover {
  opacity: 1;
}

.real-estate-show-lightbox__thumb.is-active {
  border-color: #fff;
  opacity: 1;
}

.real-estate-show-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  max-height: none;
}

@media (max-width: 1100px) {
  .real-estate-show-grid {
    grid-template-columns: 1fr;
  }

  .real-estate-show-sidebar {
    position: static;
  }

  .real-estate-show-gallery__layout {
    grid-template-columns: 1fr;
  }

  .real-estate-show-gallery__thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
  }

  .real-estate-show-gallery__thumb {
    width: 88px;
    height: 66px;
    flex: 0 0 auto;
  }

  .real-estate-show-attrs--key {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.real-estate-show__top--in-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}

.real-estate-show-container .real-estate-show-location {
  margin-bottom: 8px;
}

.real-estate-show-container .cb-listing-map-wrap--compact {
  height: 200px;
  min-height: 180px;
}

@media (max-width: 767px) {
  .real-estate-show-container {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .cb-listing-breadcrumbs {
    font-size: 12px;
    margin-bottom: 8px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .real-estate-show__meta {
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 13px;
  }

  .real-estate-show__meta-views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
  }

  .real-estate-show-owner-bar {
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .real-estate-show-attrs,
  .real-estate-show-attrs--key {
    grid-template-columns: 1fr;
  }

  .real-estate-show-container .real-estate-show-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .real-estate-show-container .real-estate-show__main,
  .real-estate-show-container .real-estate-show-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .real-estate-show-container .real-estate-show-sidebar {
    order: 2 !important;
    position: static !important;
  }

  .real-estate-show-container .real-estate-show__main {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .real-estate-show-gallery {
    margin-bottom: 0 !important;
  }

  .real-estate-show-gallery__main {
    border-radius: 16px !important;
    height: auto !important;
  }

  .real-estate-show-gallery__open img {
    max-height: clamp(220px, 70vw, 480px) !important;
  }

  .real-estate-show__top--in-main {
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  .real-estate-show__top--in-main h1 {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .real-estate-show__top-actions {
    width: 100% !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .real-estate-show__top-actions .cb-btn,
  .real-estate-show__top-actions .cb-listing-compare-actions {
    flex: 1 1 calc(50% - 4px) !important;
    min-width: 0 !important;
  }

  .real-estate-show-container .real-estate-show-location {
    margin: 0 !important;
    padding: 14px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06) !important;
  }

  .real-estate-show-container .real-estate-show-location h2 {
    font-size: 17px !important;
    margin: 0 0 10px !important;
  }

  .real-estate-show-container .cb-listing-map-wrap--compact {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 180px !important;
    border-radius: 12px !important;
  }

  .real-estate-show-section {
    margin: 0 !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .real-estate-show-section h2 {
    font-size: 17px !important;
    margin: 0 0 12px !important;
  }

  .real-estate-show-sidebar-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .real-estate-show-contact {
    grid-template-columns: minmax(0, 1fr) !important;
    overflow-x: clip !important;
    border-radius: 16px !important;
    padding: 14px !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06) !important;
  }

  .real-estate-show-contact > * {
    min-width: 0;
    max-width: 100%;
  }

  .real-estate-show-contact__price-row {
    flex-wrap: wrap;
  }

  .real-estate-show-sidebar .real-estate-show-contact .real-estate-show-compose,
  .real-estate-show-sidebar .real-estate-show-contact .cb-btn--primary.cb-btn--wide[data-cb-reveal-phone],
  .real-estate-show-sidebar .real-estate-show-contact .cb-btn--primary.cb-btn--wide[href*="login"] {
    display: none !important;
  }

  .real-estate-show-mobile-bar {
    display: flex !important;
    gap: 8px;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
    box-sizing: border-box;
  }

  .real-estate-show-mobile-bar__price {
    flex: 1;
    min-width: 0;
    font-weight: 800;
    font-size: 17px;
  }

  .real-estate-show-quick {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

.cb-share-fallback {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.45);
}

.cb-share-fallback[hidden] {
  display: none !important;
}

.cb-share-fallback__panel {
  width: min(420px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.cb-share-fallback__panel input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
}

.owner-listing-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.is-owner-mode .real-estate-show-grid,
.owner-listing-hero {
  display: grid;
  grid-template-columns: minmax(0, 820px) 360px;
  gap: 32px;
  align-items: start;
}

.is-owner-mode .real-estate-show-sidebar {
  position: sticky;
  top: 92px;
}

.owner-listing-sidebar {
  display: grid;
  gap: 16px;
}

.owner-listing-sidebar__card {
  border: 1px solid #dbeafe;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  display: grid;
  gap: 10px;
}

.owner-listing-sidebar__price {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.owner-listing-sidebar__sqm {
  color: #64748b;
  font-size: 14px;
}

.owner-listing-sidebar__status {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.owner-listing-sidebar__meta {
  color: #64748b;
  font-size: 13px;
}

.owner-listing-sidebar__actions {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.owner-listing-sidebar__actions form {
  margin: 0;
}

.owner-listing-sidebar__hint {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 13px;
  line-height: 1.4;
}

.owner-listing-sidebar__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.owner-listing-sidebar__stats div {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.owner-listing-sidebar__stats span {
  display: block;
  color: #64748b;
  font-size: 12px;
}

.owner-listing-sidebar__stats strong {
  font-size: 20px;
  line-height: 1.2;
}

.cb-owner-header--compact {
  margin-bottom: 18px;
}

.cb-owner-header--compact .cb-owner-header__actions {
  display: none;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.cb-listing-reco-strip {
  margin: 28px 0;
  min-width: 0;
}

.cb-listing-reco-strip h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.cb-listing-reco-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  min-width: 0;
}

.cb-listing-reco-card__photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #f1f5f9;
}

.cb-listing-reco-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cb-listing-reco-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  background: #f1f5f9;
}

.cb-listing-reco-card__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
}

.cb-listing-reco-card__body {
  padding: 12px;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cb-listing-reco-card__body strong {
  font-size: 16px;
  color: #0f172a;
}

.cb-listing-reco-card__body a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cb-listing-reco-card__body span,
.cb-listing-reco-card__body em {
  color: #64748b;
  font-size: 13px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .is-owner-mode .real-estate-show-grid,
  .owner-listing-hero {
    grid-template-columns: 1fr;
  }

  .is-owner-mode .real-estate-show-sidebar {
    position: static;
  }

  .recommendation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .recommendation-grid {
    grid-template-columns: 1fr;
  }
}

/* Owner listing analytics & promotion — scoped to owner container only */
.owner-listing-container .ols-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.owner-listing-container .ols-stats {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.owner-listing-container .ols-stats__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.owner-listing-container .ols-stats__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.owner-listing-container .ols-stats__link {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
}

.owner-listing-container .ols-stats__link:hover {
  text-decoration: underline;
}

.owner-listing-container .ols-stats__kpi {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.owner-listing-container .ols-stats__kpi-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 82px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f7f9fc;
}

.owner-listing-container .ols-stats__kpi-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #64748b;
}

.owner-listing-container .ols-stats__kpi-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
}

.owner-listing-container .ols-stats__kpi-delta {
  display: block;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #94a3b8;
}

.owner-listing-container .ols-stats__kpi-delta.is-up {
  color: #15803d;
}

.owner-listing-container .ols-stats__kpi-delta.is-down {
  color: #b91c1c;
}

.owner-listing-container .ols-stats__kpi-delta.is-neutral {
  color: #94a3b8;
}

.owner-listing-container .ols-stats__controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 18px;
}

.owner-listing-container .ols-stats__periods {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 100%;
  padding: 3px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.owner-listing-container .ols-stats button.ols-stats__period-btn {
  appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: 36px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
}

.owner-listing-container .ols-stats button.ols-stats__period-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.owner-listing-container .ols-stats button.ols-stats__period-btn.is-active {
  border-color: #2563eb;
  background: #2563eb;
  color: #fff;
}

.owner-listing-container .ols-stats__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.owner-listing-container .ols-stats button.ols-stats__metric-btn {
  appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: 32px;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
}

.owner-listing-container .ols-stats button.ols-stats__metric-btn:hover {
  background: #f1f5f9;
  color: #334155;
}

.owner-listing-container .ols-stats button.ols-stats__metric-btn.is-active {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.owner-listing-container .ols-stats__chart-box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 290px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
}

.owner-listing-container .ols-stats__chart {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.owner-listing-container .ols-stats__chart-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  background: #f8fafc;
  pointer-events: none;
}

.owner-listing-container .ols-stats__chart-empty[hidden] {
  display: none;
}

.owner-listing-container .ols-stats__status {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.owner-listing-container .ols-stats__status[hidden] {
  display: none;
}

.owner-listing-container .ols-promo {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.owner-listing-container .ols-promo__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.owner-listing-container .ols-promo__cards {
  display: grid;
  gap: 12px;
}

.owner-listing-container .ols-promo-card {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #f8fbff;
}

.owner-listing-container .ols-promo-card__body,
.owner-listing-container .ols-promo-card__info {
  min-width: 0;
}

.owner-listing-container .ols-promo-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.owner-listing-container .ols-promo-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.owner-listing-container .ols-promo-card__status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.owner-listing-container .ols-promo-card__desc {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
}

.owner-listing-container .ols-promo-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.owner-listing-container .ols-promo-card__meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.owner-listing-container .ols-promo-card__meta-label {
  flex: 0 0 auto;
  color: #94a3b8;
  font-weight: 600;
}

.owner-listing-container .ols-promo-card__meta-value {
  flex: 1 1 auto;
  min-width: 0;
  color: #475569;
  text-align: right;
}

.owner-listing-container .ols-promo-card__meta-value--accent {
  width: 100%;
  font-weight: 600;
  color: #1d4ed8;
  text-align: left;
}

.owner-listing-container .ols-promo-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 auto;
}

.owner-listing-container .ols-promo-card__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.owner-listing-container .ols-promo-card__btn--primary {
  border: 1px solid #2563eb;
  background: #2563eb;
  color: #fff;
}

.owner-listing-container .ols-promo-card__btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}

.owner-listing-container .ols-promo-card__btn--ghost {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.owner-listing-container .ols-promo-card__btn--ghost:hover {
  background: #f8fafc;
  color: #0f172a;
}

.owner-listing-container .ols-promo__empty {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
}

.owner-listing-container .ols-promo__empty p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #64748b;
}

.owner-listing-container .owner-listing-sidebar__promo-hint {
  margin: 0;
}

.owner-listing-container .owner-listing-sidebar .owner-listing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.owner-listing-container .owner-listing-sidebar .owner-listing-badge--raise {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.owner-listing-container .owner-listing-sidebar .owner-listing-badge--raise::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 3v10M8 3l-3 3M8 3l3 3' stroke='%2315803d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

.owner-listing-container .owner-listing-sidebar .owner-listing-badge--vip,
.owner-listing-container .owner-listing-sidebar .owner-listing-badge--pin,
.owner-listing-container .owner-listing-sidebar .owner-listing-badge--highlight,
.owner-listing-container .owner-listing-sidebar .owner-listing-badge--default {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

@media (max-width: 1200px) {
  .owner-listing-container .ols-stats__kpi {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .owner-listing-container .ols-stats {
    padding: 18px;
  }

  .owner-listing-container .ols-stats__kpi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .owner-listing-container .ols-stats__periods {
    width: 100%;
  }

  .owner-listing-container .ols-stats button.ols-stats__period-btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .owner-listing-container .ols-promo {
    padding: 18px;
  }

  .owner-listing-container .ols-promo-card {
    grid-template-columns: 1fr;
  }

  .owner-listing-container .ols-promo-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .owner-listing-container .ols-stats__kpi {
    grid-template-columns: 1fr;
  }
}

/* ── Spec cards (reference layout) ── */
.re-show-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.re-show-spec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e8edf5;
  background: #fff;
  min-height: 72px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.re-show-spec-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.re-show-spec-card__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #2563eb;
}

.re-show-spec-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.re-show-spec-card__body {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.re-show-spec-card__label {
  color: #64748b;
  font-size: 12px;
  line-height: 1.3;
}

.re-show-spec-card__value {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

.re-show-spec-card__value.is-sensitive-blur,
.re-show-additional-item__value.is-sensitive-blur {
  filter: blur(7px);
  user-select: none;
  pointer-events: none;
  letter-spacing: 0.08em;
}

.re-show-spec-card__hint {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.re-show-spec-card--blue .re-show-spec-card__icon { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; }
.re-show-spec-card--indigo .re-show-spec-card__icon { background: linear-gradient(135deg, #eef2ff, #e0e7ff); color: #4f46e5; }
.re-show-spec-card--cyan .re-show-spec-card__icon { background: linear-gradient(135deg, #ecfeff, #cffafe); color: #0891b2; }
.re-show-spec-card--teal .re-show-spec-card__icon { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #0d9488; }
.re-show-spec-card--green .re-show-spec-card__icon { background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: #059669; }
.re-show-spec-card--orange .re-show-spec-card__icon { background: linear-gradient(135deg, #fff7ed, #ffedd5); color: #ea580c; }
.re-show-spec-card--amber .re-show-spec-card__icon { background: linear-gradient(135deg, #fffbeb, #fef3c7); color: #d97706; }
.re-show-spec-card--violet .re-show-spec-card__icon { background: linear-gradient(135deg, #f5f3ff, #ede9fe); color: #7c3aed; }
.re-show-spec-card--pink .re-show-spec-card__icon { background: linear-gradient(135deg, #fdf2f8, #fce7f3); color: #db2777; }
.re-show-spec-card--rose .re-show-spec-card__icon { background: linear-gradient(135deg, #fff1f2, #ffe4e6); color: #e11d48; }
.re-show-spec-card--slate .re-show-spec-card__icon { background: linear-gradient(135deg, #f8fafc, #f1f5f9); color: #475569; }

.real-estate-show-section--specs,
.real-estate-show-section--equipment,
.real-estate-show-section--additional {
  background: #fff;
}

.re-show-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.re-show-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.re-show-additional-list {
  display: grid;
  gap: 0;
}

.re-show-additional-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
}

.re-show-additional-item:last-child {
  border-bottom: 0;
}

.re-show-additional-item__icon {
  width: 28px;
  height: 28px;
  color: #64748b;
  display: grid;
  place-items: center;
}

.re-show-additional-item__icon svg {
  width: 18px;
  height: 18px;
}

.re-show-additional-item__label {
  color: #64748b;
  font-size: 14px;
}

.re-show-additional-item__value {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}

.real-estate-show-safety h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.re-show-safety-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.re-show-safety-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
}

.re-show-safety-list__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #059669;
  display: grid;
  place-items: center;
}

.re-show-safety-list__icon svg {
  width: 16px;
  height: 16px;
}

.real-estate-show-contact__spec-icon {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
}

.real-estate-show-contact__spec-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.real-estate-show-contact__spec {
  background: #f8fafc;
}

@media (max-width: 1100px) {
  .re-show-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .re-show-spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .re-show-spec-grid {
    grid-template-columns: 1fr;
  }

  .re-show-additional-item {
    grid-template-columns: 28px 1fr;
  }

  .re-show-additional-item__value {
    grid-column: 2;
    text-align: left;
  }
}
