/* ==========================================================================
   Решения для операторов связи — services-for-operators.css
   ========================================================================== */

/* ---------- Hero Section ---------- */
.operators-hero-section {
  position: relative;
  background-color: var(--color-gray-light);
}

.operators-hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.operators-hero-text {
  text-align: center;
  max-width: 994px;
  margin: 0 auto;
}

.operators-hero-text__subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #33302e;
  text-align: center;
}

/* ---------- Service cards grid ---------- */
.operators-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.operators-card {
  position: relative;
  background: #fff;
  border: 1px solid #EBECF0;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 272px;
}

.operators-card__icon {
  position: absolute;
  top: -17px;
  right: 30px;
  width: 48px;
  height: 60px;
}

.operators-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.operators-card__title {
  font-size: 24px;
  line-height: 1.5;
  color: #33302e;
  margin: 0;
}

.operators-card__list {
  font-size: 16px;
  line-height: 1.5;
  color: #33302e;
  padding-left: 24px;
  margin: 0;
}

.operators-card__list li {
  margin-bottom: 0;
}

.operators-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 10px;
  border: 2px solid var(--color-orange);
  border-radius: 10px;
  background: transparent;
  color: var(--color-orange);
  font-size: 20px;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
  transition: background-color 0.2s, color 0.2s;
}

.operators-card__btn:hover {
  background-color: var(--color-orange);
  color: #fff;
}

/* ==========================================================================
   Responsive: Tablet (768px – 1919px)
   ========================================================================== */
@media (max-width: 1919px) {
  .operators-hero-top {
    margin-bottom: 40px;
  }

  .operators-hero-text__subtitle {
    font-size: 20px;
  }

  .operators-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .operators-card {
    min-height: 320px;
  }

  .operators-card__icon {
    right: 20px;
  }
}

/* ==========================================================================
   Responsive: Mobile (375px – 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .operators-hero-top {
    margin-bottom: 30px;
  }

  .operators-hero-text__subtitle {
    font-size: 16px;
  }

  .operators-cards {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .operators-card {
    min-height: auto;
    padding: 30px 20px 20px;
  }

  .operators-card__title {
    font-size: 22px;
  }

  .operators-card__list {
    font-size: 14px;
    padding-left: 21px;
  }

  .operators-card__btn {
    font-size: 16px;
    height: 60px;
    padding: 10px;
  }

  .operators-card__icon {
    right: 20px;
  }
}
