.other-business-page {
  --other-business-green: #0d7f41;
  --other-business-green-dark: #164f30;
  --other-business-water: #eaf6f4;
  --other-business-line: rgba(13, 127, 65, .18);
  background: linear-gradient(180deg, #f7fbfa 0%, #fff 38%, #eef7f4 100%);
}

.other-business-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(13, 127, 65, .12), transparent 25%),
    linear-gradient(135deg, #fff 0%, var(--other-business-water) 100%);
}

.other-business-list {
  background: transparent;
}

.other-business-list__grid {
  display: grid;
  grid-template-columns: minmax(0, 460px);
  gap: 24px;
  margin-top: 38px;
}

.other-business-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--other-business-line);
  border-radius: 24px;
  background: #fff;
  color: var(--tb-ink);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(22, 79, 48, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.other-business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(22, 79, 48, .15);
}

.other-business-card__media {
  display: block;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--other-business-water);
}

.other-business-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-business-card__body {
  display: grid;
  gap: 10px;
  padding: 26px 28px 30px;
}

.other-business-card__body small {
  color: var(--other-business-green);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.other-business-card__body strong {
  color: var(--other-business-green-dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.other-business-card__body b,
.other-business-card__body > span {
  line-height: 1.8;
}

.other-business-card__body b {
  color: var(--other-business-green);
}

.other-business-card__body > span {
  color: var(--tb-muted);
  font-size: .94rem;
}

.other-business-card__body em {
  margin-top: 8px;
  color: var(--other-business-green);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 640px) {
  .other-business-list__grid {
    grid-template-columns: 1fr;
  }

  .other-business-card__body {
    padding: 22px 20px 24px;
  }
}
