
/* ==========================================================================
   1-5. SERVICES-SECTION (Общий блок страницы услуг)
   ========================================================================== */
.services-section {
  width: 100%;
}

/* 1-5-1. SERVICES-SECTION__CONTENT */
.services-section__content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 40px;
}

@media (max-width: 768px) {
  .services-section__content {
    padding: 32px 16px;
  }
}
/* ==========================================================================
   1-5-1-1. SERVICES-ALERT (Инфо-блок)
   ========================================================================== */
.services-alert {
  background: #fff;
  border: 1px solid rgb(210, 196, 168);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 13.5px;
  color: rgb(107, 101, 88);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(38, 34, 32, 0.05);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.services-alert__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgb(239, 233, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgb(156, 130, 104);
}

@media (max-width: 480px) {
  .services-alert {
    gap: 10px;
    padding: 16px;
  }
}
/* ==========================================================================
   1-5-1-2. SERVICES-GROUP (Заголовки секций)
   ========================================================================== */
.services-group {
  margin-bottom: 34px;
}

.services-group__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(156, 130, 104);
  font-weight: 700;
  margin: 0 0 16px;
}

/* ==========================================================================
   1-5-1-2-1. SERVICES-GRID (Сетка карточек)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* 1-5-1-2-1-1. SERVICES-CARD (Карточка услуги) */
.services-card {
  background: #fff;
  border: 1px solid rgb(210, 196, 168);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(38, 34, 32, 0.05);
  display: flex;
  flex-direction: column;
}

.services-card__name {
  display: block;
  font-size: 14.5px;
  color: rgb(38, 34, 32);
  margin-bottom: 8px;
}

.services-card__desc {
  font-size: 13px;
  color: rgb(43, 36, 31);
  margin: 0 0 10px;
  line-height: 1.45;
}

.services-card__footer {
  font-size: 12px;
  color: rgb(107, 101, 88);
  border-top: 1px solid rgb(221, 211, 194);
  padding-top: 10px;
  margin-top: auto;
}

.services-card__result-label {
  color: rgb(38, 34, 32);
}

/* ==========================================================================
   1-5-1-3-1. SERVICES-LINKS (Блок со ссылками)
   ========================================================================== */
.services-links {
  background: #fff;
  border: 1px solid rgb(210, 196, 168);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 13.5px;
  color: rgb(107, 101, 88);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(38, 34, 32, 0.05);
  line-height: 1.5;
}

.services-links__item {
  color: rgb(156, 130, 104);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.services-links__item:hover {
  text-decoration: underline;
}

