/* why-us.css — Why Us checklist grid. */

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.why-item {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.why-item:last-child {
  border-bottom: none;
}
.why-item .tick {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-item h3 {
  font-family: var(--font-body);
  font-size: var(--body-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.why-item p {
  color: var(--soft-text);
  font-size: var(--small);
}

@media (max-width: 767px) {
  .why-list {
    grid-template-columns: 1fr;
  }
}
