/* Approved photo A: keep the original square photograph; crop only in layout. */
.mahina-home-additions .home-best-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 60%;
}

/* Approved Visit callout B. Scoped to Visit; the Home walk block is unchanged. */
.visit-page .neighborhood-strip {
  width: min(calc(100% - 2 * var(--page-pad)), calc(1240px - 2 * var(--page-pad)));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px 44px;
  padding: 36px 42px 38px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  color: #333;
}
.visit-page .neighborhood-strip > div { min-width: 0; }
.visit-page .neighborhood-strip .eyebrow {
  color: #7c7c81;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: .13em;
  font-weight: 300;
}
.visit-page .neighborhood-strip h2 {
  margin: 9px 0 0;
  color: #333;
  font-size: 31px;
  line-height: 1.4;
  font-weight: 100 !important;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}
html[lang='ko'] .visit-page .neighborhood-strip h2 { font-family: "Mahina Walk Korean Thin",var(--font); }
.visit-page .neighborhood-strip > div > p:last-child {
  margin: 12px 0 0;
  color: #7c7c81;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
}
.visit-page .visit-walk-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 100%;
  min-height: 45px;
  padding: 12px 21px;
  border: 1px solid rgba(51,51,51,.25);
  border-radius: 999px;
  color: #66666a;
  font-size: 11px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: -.01em;
  text-align: center;
  text-decoration: none;
  transition: background-color 260ms ease,color 260ms ease,border-color 260ms ease;
}
.visit-page .visit-walk-link:hover { color: #333; border-color: #77777a; background: rgba(51,51,51,.025); }
.visit-page .visit-walk-link:focus-visible { outline: 1px solid #333; outline-offset: 5px; }
@media(max-width:1050px) {
  .visit-page .neighborhood-strip { padding: 30px; gap: 24px; }
  .visit-page .neighborhood-strip h2 { font-size: 28px; }
}
@media(max-width:767px) {
  .visit-page .neighborhood-strip { flex-direction: column; align-items: flex-start; padding: 27px 25px 28px; gap: 23px; }
  .visit-page .neighborhood-strip h2 { font-size: 27px; }
}
@media(prefers-reduced-motion:reduce) { .visit-page .visit-walk-link { transition: none; } }
