.object-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.object-gallery__main,
.object-gallery__tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f3eee8;
}

.object-gallery__main {
  min-height: 430px;
}

.object-gallery__main img,
.object-gallery__tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.object-gallery__main:hover img,
.object-gallery__tile:hover img {
  transform: scale(1.035);
}

.object-gallery__side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.object-gallery__tile {
  min-height: 209px;
}

.object-gallery__tile--more::after {
  position: absolute;
  inset: 0;
  background: rgba(41, 33, 27, 0.52);
  content: "";
}

.object-gallery__tile--more span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #2b211b;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.object-gallery__hidden {
  display: none;
}

@media (max-width: 991px) {
  .object-gallery {
    grid-template-columns: 1fr;
  }

  .object-gallery__main {
    min-height: 360px;
  }

  .object-gallery__tile {
    min-height: 170px;
  }
}

@media (max-width: 575px) {
  .object-gallery {
    gap: 8px;
  }

  .object-gallery__side {
    gap: 8px;
  }

  .object-gallery__main {
    min-height: 280px;
    border-radius: 14px;
  }

  .object-gallery__tile {
    min-height: 130px;
    border-radius: 12px;
  }

  .object-gallery__tile--more span {
    max-width: calc(100% - 20px);
    padding: 9px 12px;
    font-size: 13px;
    text-align: center;
  }
}

.object-publication-date {
  display: flex;
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(242, 157, 53, 0.22);
  border-radius: 12px;
  background: rgba(242, 157, 53, 0.07);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.object-publication-date span {
  color: #d87f12;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.object-publication-date strong {
  color: #2b211b;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 575px) {
  .object-publication-date {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .object-publication-date strong {
    text-align: left;
  }
}

.object-price-summary {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(41, 33, 27, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(41, 33, 27, 0.07);
}

.object-price-summary__heading {
  margin-bottom: 14px;
}

.object-price-summary__heading span {
  display: inline-block;
  margin-bottom: 5px;
  color: #f29d35;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.object-price-summary__heading h2 {
  margin: 0;
  color: #2b211b;
  font-size: 20px;
  font-weight: 700;
}

.object-price-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.object-price-summary__item {
  display: flex;
  padding: 14px 16px;
  border: 1px solid rgba(41, 33, 27, 0.08);
  border-radius: 12px;
  background: #faf7f2;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.object-price-summary__item span {
  color: #7b6f66;
  font-size: 14px;
  font-weight: 600;
}

.object-price-summary__item strong {
  color: #2b211b;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  text-align: right;
}

.object-price-summary__item:first-child {
  background: rgba(242, 157, 53, 0.08);
  border-color: rgba(242, 157, 53, 0.22);
}

.object-price-summary__item:first-child strong {
  color: #d87f12;
}

.object-price-summary__item + .object-price-summary__item {
  background: #fdfbf8;
  border-color: rgba(41, 33, 27, 0.06);
}

@media (max-width: 575px) {
  .object-price-summary {
    padding: 18px;
  }

  .object-price-summary__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .object-price-summary__item strong {
    font-size: 19px;
    text-align: left;
  }
}

.object-platforms {
  margin: 28px 0;
  padding: 28px;
  border: 1px solid rgba(41, 33, 27, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(41, 33, 27, 0.08);
}

.object-platforms__heading {
  margin-bottom: 18px;
}

.object-platforms__heading span {
  display: inline-block;
  margin-bottom: 6px;
  color: #f29d35;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.object-platforms__heading h2 {
  margin: 0;
  color: #2b211b;
  font-size: 24px;
  font-weight: 700;
}

.object-platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.object-platform {
  display: flex;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(41, 33, 27, 0.1);
  border-radius: 14px;
  background: #faf7f2;
  color: #2b211b;
  text-decoration: none;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.object-platform:hover {
  color: #2b211b;
  text-decoration: none;
  border-color: rgba(242, 157, 53, 0.45);
  box-shadow: 0 14px 30px rgba(41, 33, 27, 0.12);
  transform: translateY(-2px);
}

.object-platform__name {
  font-size: 18px;
  font-weight: 700;
}

.object-platform__action {
  color: #f29d35;
  font-size: 14px;
  font-weight: 700;
}

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

@media (max-width: 575px) {
  .object-platforms {
    padding: 22px;
  }

  .object-platforms__grid {
    grid-template-columns: 1fr;
  }
}

.object-map {
  margin: 34px 0 48px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(64, 31, 13, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(36, 26, 18, 0.06);
}

.object-map__heading {
  margin-bottom: 18px;
}

.object-map__heading span {
  display: block;
  margin-bottom: 6px;
  color: #f29d35;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.object-map__heading h2 {
  margin: 0 0 8px;
  color: #241a12;
  font-size: 24px;
  font-weight: 800;
}

.object-map__heading p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  color: #6b5f55;
  font-size: 15px;
  line-height: 1.55;
}

.object-map__heading i {
  margin-top: 4px;
  color: #f29d35;
}

.object-map__frame {
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 8px;
}

.object-map__canvas {
  width: 100%;
  height: 460px;
}

@media (max-width: 575px) {
  .object-map {
    padding: 18px;
  }

  .object-map__heading h2 {
    font-size: 22px;
  }

  .object-map__canvas {
    height: 360px;
  }
}


#showcase-inner.object-hero {
  min-height: auto;
  padding: 42px 0 36px;
  background: linear-gradient(135deg, #2f241d 0%, #401f0d 52%, #6f3a13 100%);
  background-attachment: scroll;
}

#showcase-inner.object-hero::before {
  display: none;
}

.object-hero__content {
  color: #fff;
}

.object-hero__eyebrow {
  display: inline-flex;
  min-height: 28px;
  color: #f29d35;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  align-items: center;
}

.object-hero h1 {
  max-width: 920px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
}

.object-hero__address {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.object-hero__address i {
  margin-top: 5px;
  color: #f29d35;
}

.object-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.object-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.object-hero__badges {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.object-hero__fresh-badge {
  display: inline-flex;
  min-height: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  align-items: center;
  gap: 7px;
}

.object-hero__fresh-badge i {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.object-hero__fresh-badge::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  content: "";
}

@media (max-width: 575px) {
  #showcase-inner.object-hero {
    padding: 30px 0 28px;
  }

  .object-hero h1 {
    font-size: 28px;
  }

  .object-hero__address {
    font-size: 15px;
  }
}

.object-breadcrumb-section {
  padding: 18px 0 0;
}

.object-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #7c7168;
  font-size: 14px;
  line-height: 1.45;
}

.object-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7c7168;
  font-weight: 700;
}

.object-breadcrumb a:hover {
  color: #f29d35;
  text-decoration: none;
}

.object-breadcrumb i {
  color: #f29d35;
  font-size: 12px;
}

.object-breadcrumb__divider {
  color: #c8beb5;
}

.object-breadcrumb__current {
  overflow: hidden;
  max-width: 520px;
  color: #241a12;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .object-breadcrumb-section {
    padding-top: 14px;
  }

  .object-breadcrumb {
    font-size: 13px;
  }

  .object-breadcrumb__current {
    max-width: 100%;
    white-space: normal;
  }
}

.object-detail-nav {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.object-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: #241a12;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  background: rgba(242, 157, 53, 0.14);
  border: 1px solid rgba(242, 157, 53, 0.28);
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.object-detail-back i {
  font-size: 13px;
}

.object-detail-back:hover {
  color: #fff;
  background: #f29d35;
  border-color: #f29d35;
  text-decoration: none;
}

[data-lightbox="home-images"] {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 6px;
  margin-bottom: 8px;
}

[data-lightbox="home-images"] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-description {
  margin: 32px 0;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(64, 31, 13, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(36, 26, 18, 0.06);
}

.object-description__heading {
  margin-bottom: 18px;
}

.object-description__heading span {
  display: block;
  margin-bottom: 6px;
  color: #f29d35;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.object-description__heading h2 {
  margin: 0;
  color: #241a12;
  font-size: 26px;
  font-weight: 800;
}

.object-description__content {
  color: #3f342b;
  font-size: 17px;
  line-height: 1.75;
}

.object-description__content p {
  margin-bottom: 14px;
}

.object-description__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .object-description {
    padding: 22px;
  }

  .object-description__heading h2 {
    font-size: 22px;
  }

  .object-description__content {
    font-size: 16px;
  }
}

.object-specs {
  margin: 28px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(64, 31, 13, 0.08);
  border-radius: 8px;
}

.object-specs__heading {
  margin-bottom: 18px;
}

.object-specs__heading span {
  display: block;
  margin-bottom: 6px;
  color: #f29d35;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.object-specs__heading h2 {
  margin: 0;
  color: #241a12;
  font-size: 24px;
  font-weight: 800;
}

.object-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.object-spec {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fbfaf8;
  border: 1px solid rgba(64, 31, 13, 0.06);
  border-radius: 8px;
}

.object-spec--price {
  background: rgba(242, 157, 53, 0.12);
}

.object-spec > i {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #8c3b0b;
  background: rgba(242, 157, 53, 0.16);
  border-radius: 50%;
}

.object-spec strong i {
  width: auto;
  height: auto;
  display: inline;
  color: inherit;
  background: none;
  border-radius: 0;
  font-size: 0.9em;
}

.object-spec span {
  display: block;
  margin-bottom: 3px;
  color: #766b61;
  font-size: 13px;
}

.object-spec strong {
  color: #241a12;
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 575px) {
  .object-specs {
    padding: 18px;
  }

  .object-specs__grid {
    grid-template-columns: 1fr;
  }
}

.object-agent-card {
  position: sticky;
  top: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(64, 31, 13, 0.08);
  border-radius: 8px;
}

.object-agent-card__photo {
  aspect-ratio: 1 / 1;
  background: #f2f2f2;
}

.object-agent-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-agent-card__body {
  padding: 18px;
}

.object-agent-card__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #f29d35;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.object-agent-card h2 {
  margin: 0 0 8px;
  color: #241a12;
  font-size: 20px;
  font-weight: 800;
}

.object-agent-card--wide h2 {
  font-size: 24px;
}

.object-agent-card--wide p {
  font-size: 16px;
}

.object-agent-card p {
  margin-bottom: 14px;
  color: #6b5f55;
  font-size: 14px;
  line-height: 1.55;
}

.object-agent-card__phones {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.object-agent-card__phones a {
  display: block;
  padding: 10px 12px;
  color: #241a12;
  font-weight: 800;
  text-align: center;
  background: rgba(242, 157, 53, 0.14);
  border-radius: 6px;
}

.object-agent-card__phones a:hover {
  color: #fff;
  background: #f29d35;
  text-decoration: none;
}

.object-agent-card__objects {
  display: block;
  color: #8c3b0b;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.object-agent-card__objects:hover {
  color: #f29d35;
  text-decoration: none;
}

@media (max-width: 767px) {
  .object-agent-card {
    position: static;
    margin-top: 24px;
  }
}

.object-agent-card--wide {
  position: static;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 34px 0 38px;
  padding: 28px;
}

.object-agent-card--wide .object-agent-card__photo {
  border-radius: 8px;
  overflow: hidden;
}

.object-agent-card--wide .object-agent-card__body {
  padding: 0;
}

.object-agent-card--wide .object-agent-card__phones {
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: center;
}

.object-agent-card--wide .object-agent-card__phones a {
  min-width: 190px;
}

.object-agent-card--wide .object-agent-card__objects {
  display: inline-block;
  text-align: left;
}

@media (max-width: 767px) {
  .object-agent-card--wide {
    grid-template-columns: 1fr;
  }

  .object-agent-card--wide .object-agent-card__photo {
    width: 160px;
    margin: 0 auto;
  }

  .object-agent-card--wide .object-agent-card__body {
    text-align: center;
  }

  .object-agent-card--wide .object-agent-card__phones {
    grid-template-columns: 1fr;
  }

  .object-agent-card--wide .object-agent-card__objects {
    text-align: center;
  }
}

.lb-data .lb-number {
  display: inline-flex !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
