.cooperation {
  background-color: #fff;
  padding: 80px 20px; /* отступы от края, как в предыдущем блоке */
   color: #000;
}

.cooperation__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.cooperation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px; /* чуть шире, чем было 1000px */
  margin: 0 auto;    /* центрирование */
}

/* Карточки */
.cooperation__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* распределяем пространство между контентом и нижним текстом */
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 60px 40px 60px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* чтобы flex сработал на всю высоту карточки */
}

.cooperation__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Заголовки CPA/RevShare/Hybrid */
.cooperation__item-title {
  font-size: 3em; /* увеличенный заголовок */
  font-weight: 700;
  margin-bottom: 12px;
}

/* Описание под заголовком */
.cooperation__item-desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Нижний текст привязка к низу */
.cooperation__item-note {
  margin: 0 0 20px 0; /* привязка к низу: снизу 20px, остальное 0 */
  font-size: 13px;
  line-height: 1.4;
  color: #777;
}


/* Мобильная версия */
@media (max-width: 768px) {
  .cooperation__grid {
    grid-template-columns: 1fr; /* один блок в ряд */
  }
  .cooperation__item {
    padding: 20px 15px;
  }
  
.cooperation__item-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 12px;
}

.cooperation__item-desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}
  .cooperation__item-note {
    margin-top: 32px;
    font-size: 13px;
  }
}
