.hs-live {
  --hs-live-border: rgba(121, 132, 112, 0.28);
  --hs-live-muted: #798470;
  --hs-live-text: #18221b;
  --hs-live-accent: #872B31;
  --hs-live-soft: #FEF8EC;
  color: var(--hs-live-text);
  font-family: inherit;
}

.hs-live__toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 10px;
}

.hs-live__title {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.hs-live__subtitle,
.hs-live__status {
  color: var(--hs-live-muted);
  font-size: 14px;
}

.hs-live__toolbar > div:last-child {
  text-align: right;
}

.hs-live__range {
  color: var(--hs-live-accent);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.hs-live__status.is-error {
  color: #b42318;
}

.hs-live__mapWrap {
  position: relative;
  min-height: 360px;
}

.hs-live__map {
  height: var(--hs-live-map-height, 560px);
  min-height: 360px;
  border: 1px solid var(--hs-live-border);
  border-radius: 8px;
  overflow: hidden;
}

.hs-live__count {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 500;
  min-width: 126px;
  border: 1px solid rgba(135, 43, 49, 0.22);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(254, 248, 236, 0.96);
  box-shadow: 0 8px 22px rgba(22, 34, 27, 0.12);
}

.hs-live__count strong {
  display: block;
  color: var(--hs-live-accent);
  font-size: 30px;
  line-height: 1;
}

.hs-live__count span {
  color: var(--hs-live-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hs-live-cluster-label {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-weight: 800;
}

.hs-live__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.hs-live-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--hs-live-border);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22, 34, 27, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hs-live-card:hover {
  border-color: rgba(135, 43, 49, 0.35);
  box-shadow: 0 14px 34px rgba(22, 34, 27, 0.12);
  transform: translateY(-1px);
}

.hs-live-card--premium {
  border-color: rgba(178, 132, 39, 0.58);
  box-shadow: 0 12px 34px rgba(135, 43, 49, 0.12), 0 0 0 1px rgba(178, 132, 39, 0.18);
}

.hs-live-card--premium:hover {
  border-color: rgba(178, 132, 39, 0.78);
}

.hs-live-card__media {
  position: relative;
  width: 190px;
  height: 190px;
}

.hs-live-card img,
.hs-live-card__placeholder {
  display: block;
  width: 190px;
  height: 190px;
  border-radius: 0;
  object-fit: cover;
  background: rgba(121, 132, 112, 0.16);
}

.hs-live-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  padding: 12px 14px;
}

.hs-live-card h3 {
  margin: 0 0 7px;
  color: var(--hs-live-text);
  font-size: 17px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.hs-live-card__premium {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  margin-bottom: 8px;
  border: 1px solid rgba(178, 132, 39, 0.48);
  border-radius: 6px;
  padding: 3px 7px;
  background: linear-gradient(135deg, #fff7d7, #d9a73f);
  color: #872B31;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hs-live-card p {
  margin: 0 0 6px;
  color: var(--hs-live-muted);
  font-size: 14px;
}

.hs-live-card__type {
  font-weight: 700;
  text-transform: capitalize;
}

.hs-live-card__city {
  position: relative;
  padding-left: 16px;
  font-weight: 700;
}

.hs-live-card__city::before {
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--hs-live-accent);
  content: "";
}

.hs-live-card__price {
  position: absolute;
  right: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  border-radius: 6px;
  padding: 6px 9px;
  background: #fff;
  color: var(--hs-live-accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(22, 34, 27, 0.12);
}

.hs-live-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: auto;
  border-radius: 6px;
  padding: 6px 10px;
  background: var(--hs-live-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.hs-live-card a:hover {
  filter: brightness(0.95);
}

.hs-live__empty {
  grid-column: 1 / -1;
  border: 1px solid var(--hs-live-border);
  border-radius: 8px;
  padding: 16px;
  color: var(--hs-live-muted);
  background: var(--hs-live-soft);
}

.hs-live__more {
  display: block;
  min-height: 42px;
  margin: 14px auto 0;
  border: 0;
  border-radius: 6px;
  padding: 9px 18px;
  background: var(--hs-live-accent);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.hs-live__more[hidden] {
  display: none;
}

.hs-live__more:disabled {
  cursor: wait;
  opacity: 0.7;
}

.hs-phone-live {
  --hs-phone-accent: #872B31;
  --hs-phone-muted: #798470;
  --hs-phone-soft: #FEF8EC;
  display: flex;
  justify-content: center;
  color: #18221b;
  font-family: inherit;
}

.hs-phone-live__device {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1657 / 3281;
}

.hs-phone-live__mockup,
.hs-phone-live__camera {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hs-phone-live__mockup {
  z-index: 1;
}

.hs-phone-live__camera {
  z-index: 4;
}

.hs-phone-live__screen {
  position: absolute;
  z-index: 2;
  top: 3.538%;
  right: 7.815%;
  bottom: 3.045%;
  left: 7.008%;
  overflow: hidden;
  border-radius: 15.88% / 7.31%;
  background: var(--hs-phone-soft);
}

.hs-phone-live__track,
.hs-phone-slide {
  width: 100%;
  height: 100%;
}

.hs-phone-live__track {
  position: relative;
  isolation: isolate;
}

.hs-phone-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fefbf3 100%);
  opacity: 0;
  transform: translate3d(10%, 0, 0) scale(1.02);
  transform-origin: center center;
  filter: blur(3px);
  transition:
    opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
  will-change: transform, opacity, filter;
}

.hs-phone-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  z-index: 2;
}

.hs-phone-slide.is-entering {
  z-index: 3;
}

.hs-phone-slide.is-leaving {
  opacity: 0;
  transform: translate3d(-8%, 0, 0) scale(0.985);
  filter: blur(4px);
  z-index: 1;
}

.hs-phone-slide__photo {
  position: relative;
  height: 47%;
  min-height: 0;
  overflow: hidden;
  background: rgba(121, 132, 112, 0.16);
}

.hs-phone-slide__photo img,
.hs-phone-slide__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 2200ms ease;
}

.hs-phone-slide.is-active .hs-phone-slide__photo img {
  transform: scale(1.08);
}

.hs-phone-slide__premium {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(178, 132, 39, 0.5);
  border-radius: 999px;
  padding: 6px 10px;
  background: linear-gradient(135deg, #fff7d7, #d9a73f);
  color: var(--hs-phone-accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22, 34, 27, 0.16);
  z-index: 2;
}

.hs-phone-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 34, 27, 0.06) 0%, rgba(24, 34, 27, 0.14) 42%, rgba(24, 34, 27, 0.72) 100%);
}

.hs-phone-slide__heroText {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 22px 18px 18px;
  color: #fff;
}

.hs-phone-slide__heroLabel {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hs-phone-slide__heroText h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 26px;
  line-height: 1.02;
  text-wrap: balance;
}

.hs-phone-slide__heroMeta {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.hs-phone-slide__content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 18px;
  background:
    radial-gradient(circle at top left, rgba(135, 43, 49, 0.045) 0, rgba(135, 43, 49, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 248, 236, 0.98) 100%);
}

.hs-phone-slide__summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.hs-phone-slide__eyebrow {
  margin: 0;
  color: var(--hs-phone-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hs-phone-slide__price {
  margin: 0;
  color: var(--hs-phone-accent);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
}

.hs-phone-slide__rows {
  display: grid;
  gap: 0;
  min-height: 0;
  flex: 0 1 auto;
  overflow: hidden;
}

.hs-phone-slide__row {
  padding: 14px 0 14px;
  border-top: 1px solid rgba(121, 132, 112, 0.24);
}

.hs-phone-slide__row:first-child {
  border-top: 0;
  padding-top: 4px;
}

.hs-phone-slide__rowHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hs-phone-slide__rowHead h4 {
  margin: 0;
  color: #18221b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.hs-phone-slide__row p {
  margin: 0;
  color: #18221b;
  font-size: 13px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.hs-phone-slide__rowIcon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid rgba(121, 132, 112, 0.3);
  border-radius: 999px;
  background: rgba(254, 248, 236, 0.9);
}

.hs-phone-slide__rowIcon::before,
.hs-phone-slide__rowIcon::after {
  position: absolute;
  content: "";
}

.hs-phone-slide__rowIcon--life::before {
  left: 6px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 9px 0 9px 0;
  background: var(--hs-phone-accent);
  transform: rotate(-18deg);
}

.hs-phone-slide__rowIcon--structure::before {
  left: 5px;
  top: 6px;
  width: 12px;
  height: 9px;
  border: 1.6px solid var(--hs-phone-accent);
  border-bottom-width: 2px;
  border-radius: 2px;
}

.hs-phone-slide__rowIcon--structure::after {
  left: 7px;
  top: 4px;
  width: 8px;
  border-top: 2px solid var(--hs-phone-accent);
}

.hs-phone-slide__rowIcon--access::before {
  left: 5px;
  top: 10px;
  width: 12px;
  border-top: 2px solid var(--hs-phone-accent);
}

.hs-phone-slide__rowIcon--access::after {
  right: 4px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--hs-phone-accent);
  border-right: 2px solid var(--hs-phone-accent);
  transform: rotate(45deg);
}

.hs-phone-slide__rowIcon--facilities::before,
.hs-phone-slide__rowIcon--horse::before {
  left: 5px;
  top: 5px;
  width: 12px;
  height: 12px;
  border: 1.6px solid var(--hs-phone-accent);
  border-radius: 4px;
}

.hs-phone-slide__rowIcon--facilities::after {
  left: 9px;
  top: 5px;
  width: 1.6px;
  height: 12px;
  background: var(--hs-phone-accent);
  box-shadow: -4px 0 0 var(--hs-phone-accent), 4px 0 0 var(--hs-phone-accent);
}

.hs-phone-slide__rowIcon--location::before {
  left: 7px;
  top: 4px;
  width: 8px;
  height: 12px;
  border: 1.6px solid var(--hs-phone-accent);
  border-radius: 8px 8px 8px 8px / 8px 8px 12px 12px;
  transform: rotate(45deg);
}

.hs-phone-slide__rowIcon--location::after {
  left: 9px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--hs-phone-accent);
}

.hs-phone-slide__rowIcon--price::before {
  left: 7px;
  top: 4px;
  color: var(--hs-phone-accent);
  content: "€";
  font-size: 12px;
  font-weight: 900;
}

.hs-phone-slide__row--chips h4 {
  margin: 0 0 9px;
  color: #4e5648;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.hs-phone-slide__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 62px;
  overflow: hidden;
}

.hs-phone-slide__chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  background: #f1f0f2;
  color: #5b6057;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-phone-slide a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  border-radius: 10px;
  padding: 9px 14px;
  background: var(--hs-phone-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(135, 43, 49, 0.22);
}

.hs-phone-live__empty {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 24px;
  color: var(--hs-phone-muted);
  text-align: center;
}

@media (max-width: 760px) {
  .hs-live__toolbar {
    display: grid;
    gap: 8px;
  }

  .hs-live__toolbar > div:last-child {
    text-align: left;
  }

  .hs-live__list {
    grid-template-columns: 1fr;
  }

  .hs-live-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0;
  }

  .hs-live-card img,
  .hs-live-card__placeholder {
    width: 112px;
    height: 112px;
  }

  .hs-live-card__media {
    width: 112px;
    height: 112px;
  }

  .hs-live-card h3 {
    font-size: 15px;
  }

  .hs-live-card__price {
    font-size: 12px;
    padding: 5px 7px;
  }

  .hs-phone-live__device {
    width: min(300px, 100%);
  }

  .hs-phone-slide__heroText h3 {
    font-size: 22px;
  }

  .hs-phone-slide__content {
    padding: 16px 16px 16px;
  }

  .hs-phone-slide__row {
    padding: 12px 0 12px;
  }

  .hs-phone-slide__row p,
  .hs-phone-slide__rowHead h4 {
    font-size: 12px;
  }

  .hs-phone-slide__row--chips h4 {
    font-size: 11px;
  }

  .hs-phone-slide__chip {
    min-height: 24px;
    padding: 0 9px;
    font-size: 10px;
  }
}
