body.in-index .ch-about-home {
  width: min(1380px, calc(100% - 48px));
  margin: 72px auto 68px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
  background: #f5f0e9;
  border: 1px solid rgba(103, 57, 22, .08);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(72, 42, 20, .06);
}

body.in-index .ch-about-home__media {
  min-height: 356px;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #eadfD2;
}

body.in-index .ch-about-home__media img {
  width: 100%;
  height: 100%;
  min-height: 356px;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

body.in-index .ch-about-home__media:hover img {
  transform: scale(1.018);
}

body.in-index .ch-about-home__content {
  max-width: 710px;
  padding: 28px clamp(18px, 2vw, 34px) 28px 0;
}

body.in-index .ch-about-home__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #d27a1c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.in-index .ch-about-home h2 {
  margin: 0 0 20px;
  color: #351d0d;
  font: inherit;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 800;
  line-height: 1.12;
}

body.in-index .ch-about-home__content p {
  margin: 0 0 12px;
  color: #5d4b3e;
  font-size: 15px;
  line-height: 1.65;
}

body.in-index .ch-about-home__button {
  min-height: 48px;
  margin-top: 10px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #d27a1c;
  border-radius: 9px;
  background: #d27a1c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

body.in-index .ch-about-home__button::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

body.in-index .ch-about-home__button:hover,
body.in-index .ch-about-home__button:focus {
  border-color: #b86214;
  background: #b86214;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  body.in-index .ch-about-home {
    grid-template-columns: minmax(290px, .9fr) minmax(0, 1.1fr);
    gap: 28px;
  }

  body.in-index .ch-about-home__content {
    padding-right: 12px;
  }
}

@media (max-width: 767px) {
  body.in-index .ch-about-home {
    width: calc(100% - 28px);
    margin: 46px auto 44px;
    padding: 14px 14px 28px;
    grid-template-columns: 1fr;
    gap: 25px;
    border-radius: 15px;
  }

  body.in-index .ch-about-home__media,
  body.in-index .ch-about-home__media img {
    min-height: 0;
  }

  body.in-index .ch-about-home__media {
    aspect-ratio: 16 / 11;
    border-radius: 11px;
  }

  body.in-index .ch-about-home__content {
    max-width: none;
    padding: 0 8px;
  }

  body.in-index .ch-about-home h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 9vw, 36px);
  }

  body.in-index .ch-about-home__content p {
    font-size: 14px;
    line-height: 1.58;
  }

  body.in-index .ch-about-home__button {
    width: 100%;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.in-index .ch-about-home__media img,
  body.in-index .ch-about-home__button {
    transition: none;
  }
}
