/* Sponsors page - red/white minimal style aligned with site theme */

body {
  zoom: 0.85;
}

.participants-title {
  font-family: "ProximaNova-Bold";
}

.text-block-participants-title {
  text-align: left;
}

.participants-title-section {
  margin-bottom: 3rem;
}

.participants-title span {
  color: #DD3C3C;
}

.participants-desc-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.participants-desc-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.participants-subtract {
  width: 25px;
  height: auto;
  margin-right: 10px;
}

.participants-desc {
  color: white;
  font-family: "ProximaNova-Semibold";
  font-size: 1.5rem;
  margin: 0;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
  .participants-desc-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .participants-subtract {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .participants-desc {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .participants-desc-content {
    gap: 6px;
  }

  .participants-subtract {
    width: 20px;
  }

  .participants-desc {
    font-size: 1rem;
  }
}

.sponsors {
  position: relative;
  padding: 64px 0 96px;
  color: #fff;
}

.sponsors .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}



.sponsor-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
}

.sponsor-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}

.sponsor-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sponsor-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sponsor-card__name {
  font-family: 'LeMano-Bold', 'Le Mano', system-ui, -apple-system, sans-serif;
  font-size: 28px;
  margin: 0 0 4px 0;
  color: #ff4b4b;
}

.sponsor-card__text {
  margin: 0;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
}

.sponsor-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-brand:hover {
  transform: translateY(-1px);
}

.btn-brand__icon {
  width: 18px;
  height: 18px;
}

.btn-brand--yt:hover {
  color: #ffdede;
}

.btn-brand--tg:hover {
  color: #def5ff;
}

.btn-brand--yt {
  background: #FF0000;
  box-shadow: 0 6px 14px rgba(255, 0, 0, 0.25);
}

.btn-brand--tg {
  background: #2AABEE;
  box-shadow: 0 6px 14px rgba(42, 171, 238, 0.25);
}

@media (max-width: 900px) {
  .sponsor-card {
    grid-template-columns: 1fr;
  }

  .sponsor-card__media {
    order: -1;
  }
}