/* Секция "Наше здоровье" */
.our-health-section {
  width: 100%;
  margin: 20px 0px 0px 0px;
  background: #f8f9fa;
}

.health-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.health-block {
  aspect-ratio: 5 / 5;
  width: 650px;
  height: 680px;
  border-radius: 20px;
  overflow: hidden;
}

/* Текстовые блоки */
.health-text-block {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.health-title {
  margin: 0px auto 25px;
  font-family: 'DINPro', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #161817;
  background: linear-gradient(
    90deg,
    #15a6e1 0%,
    #00caf4 15%,
    #00caf4 31%,
    #6789e0 50%,
    #ef786f 71%,
    #eb5c54 81%,
    #e8423b 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.health-description {
  font-family: 'DINPro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #161817;
  margin-bottom: 0;
  max-width: 440px;
  margin: 0px auto;
  text-align: center;
}

/* Блоки с изображениями */
.health-image-block {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 480px) {
  .health-container {
    padding: 0px 16px;
    gap: 16px;
  }

  .health-text-block.first-block {
    order: 1;
    height: 280px;
  }

  .health-text-block.second-block {
    order: 3;
    height: 350px;
  }

  .health-image-block.first-block {
    order: 2;
    height: 360px;
  }

  .health-image-block.second-block {
    order: 4;
    height: 360px;
  }

  .health-title {
    font-size: 22px;
    margin: 0px auto 15px;
    max-width: 310px;
  }

  .health-description {
    font-size: 15px;
    max-width: 310px;
  }
}
