/* GoedOnline — garanties. */

.section-guarantees {
  background: var(--color-surface);
}

.guarantees-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .guarantees-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantee {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  transition: transform var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out),
              border-color var(--dur-3) var(--ease-out);
}

.guarantee:hover {
  border-color: var(--color-slate-200);
  box-shadow: var(--sh-sm);
}

.guarantee__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--color-slate-50);
  color: var(--color-slate-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guarantee__icon svg {
  width: 22px;
  height: 22px;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-ink);
  margin: 0;
  line-height: var(--lh-snug);
}

.guarantee__desc {
  color: var(--color-ink-soft);
  font-size: 0.9375rem;
  line-height: var(--lh-relaxed);
  margin: 0;
}
