.legal-list-section {
  background-color: #f5f5f7;
}

.legal-breadcrumb ol {
  list-style: none;
  font-size: 14px;
  color: #6b7280;
}

.legal-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.legal-breadcrumb a:hover,
.legal-breadcrumb a:focus-visible {
  color: #111827;
  text-decoration: underline;
}

.legal-intro {
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
}

.legal-list-wrapper {
  max-width: 720px;
}

.legal-list-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 16px;
  background-color: #ffffff;
  text-decoration: none;
  color: #111827;
  font-size: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.08s ease;
}

.legal-item:hover,
.legal-item:focus-visible {
  background-color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  outline: none;
}

.legal-item-text {
  font-weight: 500;
}

.legal-item-icon {
  font-size: 22px;
  line-height: 1;
  color: #9ca3af;
}

@media (max-width: 576px) {
  .legal-item {
    padding: 16px 16px;
    border-radius: 14px;
  }
}
