.treatment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.3vw, 48px);
  width: 100%;
  padding: clamp(40px, 6.7vw, 96px) clamp(16px, 6.7vw, 96px);
  background: #f3f7fa;
}

.treatment__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.7vw, 24px);
  width: 100%;
}

/* Reusable: Card/PhotoTile (24:33), aspect-ratio keeps 294:330 proportion while growing */
.treatment-card {
  position: relative;
  aspect-ratio: 294 / 330;
  border-radius: 10px;
  overflow: hidden;
  background: #7e93a8;
}

.treatment-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 57.5%;
  background: linear-gradient(to bottom, rgba(11,29,46,0), rgba(11,29,46,0.88));
}

.treatment-card__text {
  position: absolute;
  left: 7.5%;
  bottom: 7.3%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.treatment-card__sub {
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 500;
  color: #c9d6e2;
}

.treatment-card__title {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 700;
  color: #fff;
}

/* Mobile — node 65:1794 (2-col grid) */
@media (max-width: 900px) {
  .treatment {
    padding: 48px 20px;
    gap: 24px;
  }

  .treatment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
