/* =========================================
   Deliverables Section Styles
   ========================================= */
:root {
  --ink: #0c0e14;
  --muted: #5a5f72;
  --line: #dde1ea;
  --surface: #f4f5f8;
  --white: #ffffff;
  --blue: #1a4fa8;
  --font-head: 'Syne', sans-serif;
  --r: 5px;
}

.sec--gray {
  background-color: #f3f4f6;
}

/* Сетка карточек */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Карточка */
.deliv-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  background: var(--white);
  transition: .15s;
}
.deliv-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 79, 168, .08);
}

/* Иконка */
.deliv-icon {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.deliv-icon svg {
  color: #fff;
}

/* Заголовок карточки */
.deliv-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

/* Текст карточки */
.deliv-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* Адаптивность */
@media (max-width: 700px) {
  .deliv-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .deliv-grid {
    grid-template-columns: 1fr;
  }
}