/*==================================================
WHY
==================================================*/

.why {
  padding: 120px 0;

  background: var(--white);
}

.why-list {
  max-width: 900px;

  margin: auto;
}

.why-item {
  display: flex;

  gap: 30px;

  align-items: flex-start;

  padding: 32px 0;

  border-bottom: 1px solid var(--primary-alpha-08);
}

.why-item:last-child {
  border-bottom: none;
}

.why-icon {
  width: 68px;

  height: 68px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: var(--radius-round);

  background: var(--primary-soft);

  color: var(--primary);

  font-weight: 700;

  font-size: 1.2rem;
}

.why-content h3 {
  margin-bottom: 14px;
}

.why-content p {
  margin-bottom: 0;
}
