/* Homepage-only refinements: gold property-search button and a clear mobile hero portrait. */
.td-home-search__form button {
  background: #d2a251;
}

.td-home-search__form button:hover,
.td-home-search__form button:focus-visible {
  background: #b47a31;
}

@media (max-width: 760px) {
  .td-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto clamp(310px, 76vw, 390px);
    min-height: 0;
    background: #f8f4ed;
  }
  .td-hero__media {
    position: relative;
    inset: auto;
    z-index: 0;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }
  .td-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 30%;
  }
  .td-hero__overlay {
    display: none;
  }
  .td-hero__inner {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    align-items: flex-start;
  }
  .td-hero__copy {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 28px 0 24px;
    text-align: center;
  }
  .td-hero__trust {
    margin-bottom: 0;
  }
}

@media (max-width: 520px) {
  .td-hero {
    grid-template-rows: auto clamp(285px, 74vw, 340px);
  }
  .td-hero__copy {
    padding-top: 22px;
    padding-bottom: 20px;
  }
  .td-hero__media img {
    object-position: 74% 28%;
  }
}
