
/* Search layout fix: keep all filters visible and move submit below filters on narrower screens. */
.property-search {
  align-items: stretch;
  gap: 0;
}

.property-search label {
  display: grid !important;
}

@media (max-width: 1420px) {
  .hero {
    min-height: 880px;
    padding-bottom: 300px;
  }

  .property-search {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .property-search button {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 46px;
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 1040px;
    padding-bottom: 540px;
  }

  .property-search {
    bottom: 24px;
    grid-template-columns: 1fr;
  }

  .property-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 9px 10px;
  }
}


/* codex-mobile-section-spacing */
@media (max-width:700px){
  .section,
  .properties-section,
  .locations,
  .about,
  .contact,
  .sell-section,
  .career-call,
  .marketing-section,
  .documents-section,
  .reviews-section{
    padding-top:40px !important;
    padding-bottom:40px !important;
  }

  .section-head{
    gap:14px !important;
    margin-bottom:22px !important;
  }

  .section-head h2,
  .service-copy h2,
  .sell-copy h2,
  .about h2,
  .contact h2{
    margin-bottom:10px !important;
  }

  .section-head > p,
  .service-copy > p:not(.eyebrow),
  .sell-copy > p:not(.eyebrow),
  .about-lead,
  .contact-copy > p:not(.eyebrow){
    margin-top:8px !important;
    margin-bottom:14px !important;
  }

  .service-copy{
    padding:36px 20px !important;
  }

  .service-image{
    min-height:280px !important;
  }

  .location-grid{
    gap:10px !important;
    margin-top:18px !important;
  }

  .location-grid a{
    min-height:245px !important;
  }

  .property-grid{
    gap:18px !important;
  }

  .section-action{
    margin-top:20px !important;
  }

  .sell-quote{
    margin-top:22px !important;
  }

  footer{
    padding-top:34px !important;
  }
}
/* /codex-mobile-section-spacing */

