.interests-page {
  background: #e7e9eb;
}

.interests-main {
  overflow: clip;
  background: #e7e9eb;
}

.interests-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 58px var(--side, 90px) 88px;
  display: flex;
  color: #e9e3cc;
  background:
    linear-gradient(90deg, rgba(19, 35, 59, .98) 0%, rgba(19, 35, 59, .93) 44%, rgba(19, 35, 59, .52) 100%),
    var(--interests-hero-image) center 48% / cover no-repeat;
}

.interests-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(190, 165, 117, .18), transparent 26%),
    linear-gradient(0deg, #13233b 0%, rgba(19, 35, 59, 0) 36%);
}

.interests-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.interests-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(233, 227, 204, .42);
  font-size: 18px;
  line-height: 1;
}

.interests-breadcrumbs a {
  color: inherit;
}

.interests-breadcrumbs span:last-child {
  color: #e9e3cc;
}

.interests-hero-copy {
  width: min(930px, 72vw);
  margin-top: auto;
  padding-top: 90px;
}

.interests-kicker {
  margin: 0 0 20px;
  color: #bea575;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.interests-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #e9e3cc;
  font-family: var(--font-display, "Philosopher", serif);
  font-size: clamp(64px, 6.2vw, 112px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.interests-hero-copy > p:last-child {
  max-width: 780px;
  margin: 38px 0 0;
  color: #e9e3cc;
  font-family: var(--font-display, "Philosopher", serif);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.06;
}

.interests-results {
  padding-top: 52px;
  padding-bottom: 84px;
}

.interests-controls {
  position: relative;
  z-index: 45;
  max-width: 1740px;
  min-height: 60px;
  margin: 0 auto 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.interests-controls-meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.interests-controls-meta > p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(19, 35, 59, .52);
  font-size: 18px;
}

.interests-controls-meta > p strong {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #486b62;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.interests-controls .currency-control {
  height: 50px;
}

.interests-controls .currency-control button {
  border: 1px solid rgba(19, 35, 59, .12);
  background: rgba(255, 255, 255, .82);
  color: #13233b;
}

.interests-controls .currency-control button.active {
  border-color: #bea575;
  background: #bea575;
  color: #fff;
}

.interests-results .property-card {
  height: auto;
  min-height: 533px;
}

.interests-results .favorite-button::before {
  content: "";
  width: 25px;
  height: 21px;
  display: block;
  background: url("/figma-object/assets/icons/favorite-outline.svg") center / contain no-repeat;
}

.interests-results .favorite-button.is-active::before,
.interests-results .favorite-button[aria-pressed="true"]::before {
  background-image: url("/figma-object/assets/icons/favorite-filled.svg");
}

.interests-empty {
  grid-column: 1 / -1;
  min-height: 280px;
  padding: 54px;
  border-radius: 20px;
  display: grid;
  place-content: center;
  text-align: center;
  background: #fff;
  color: #13233b;
}

.interests-empty h2 {
  margin: 0;
  font-family: var(--font-display, "Philosopher", serif);
  font-size: 42px;
  font-weight: 400;
}

.interests-empty p {
  max-width: 600px;
  margin: 18px auto 0;
  color: rgba(19, 35, 59, .68);
  font-size: 18px;
}

.interests-help {
  background: #e7e9eb;
}

@media (max-width: 1180px) {
  .interests-hero {
    min-height: 510px;
  }

  .interests-hero-copy {
    width: min(830px, 86vw);
  }
}

@media (max-width: 760px) {
  .interests-hero {
    min-height: 500px;
    padding: 34px var(--side, 20px) 54px;
    background:
      linear-gradient(90deg, rgba(19, 35, 59, .98) 0%, rgba(19, 35, 59, .82) 100%),
      var(--interests-hero-image) center / cover no-repeat;
  }

  .interests-breadcrumbs {
    gap: 9px;
    font-size: 12px;
  }

  .interests-hero-copy {
    width: 100%;
    padding-top: 72px;
  }

  .interests-kicker {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .interests-hero h1 {
    font-size: clamp(48px, 16vw, 62px);
    line-height: .9;
  }

  .interests-hero-copy > p:last-child {
    margin-top: 26px;
    font-size: 21px;
    line-height: 1.12;
  }

  .interests-results {
    padding-top: 38px;
    padding-bottom: 54px;
  }

  .interests-controls {
    margin-bottom: 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .interests-controls .sort-control,
  .interests-controls .sort-button {
    width: 100%;
    max-width: 100%;
  }

  .interests-controls .sort-button {
    min-height: 54px;
    padding: 0 4px;
  }

  .interests-controls .sort-button b {
    max-width: calc(100vw - 180px);
  }

  .interests-controls .sort-dropdown {
    width: 100%;
    max-height: 344px;
    overflow-y: auto;
  }

  .interests-controls-meta {
    justify-content: space-between;
    gap: 14px;
  }

  .interests-controls-meta > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 14px;
  }

  .interests-controls .currency-control {
    flex: 0 0 auto;
  }

  .interests-controls .currency-control button {
    width: 46px;
    height: 46px;
  }

  .interests-empty {
    min-height: 240px;
    padding: 36px 24px;
  }

  .interests-empty h2 {
    font-size: 34px;
  }

  .interests-empty p {
    font-size: 16px;
  }
}
