.pp-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 var(--space-4);
}

.pp-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.pp-list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary);
}

.pp-table-wrapper {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(255, 252, 246, 0.85);
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.pp-table thead {
  background: linear-gradient(135deg, #2f5b4a, #1f3830);
  color: #f8f1e4;
}

.pp-table th,
.pp-table td {
  padding: 0.85rem 1rem;
  vertical-align: top;
}

.pp-table th {
  text-align: left;
  font-weight: 600;
}

.pp-table tbody tr:nth-child(even) {
  background-color: rgba(248, 239, 226, 0.9);
}

.pp-table tbody tr:nth-child(odd) {
  background-color: rgba(255, 252, 246, 0.9);
}

.pp-table tbody tr:hover {
  background-color: rgba(223, 210, 193, 0.6);
}

.pp-table td:first-child {
  min-width: 11rem;
  font-weight: 500;
  color: var(--color-neutral-800);
}

@media (max-width: 720px) {
  .pp-table-wrapper {
    border-radius: var(--radius-md);
  }

  .pp-table,
  .pp-table thead,
  .pp-table tbody,
  .pp-table th,
  .pp-table td,
  .pp-table tr {
    display: block;
  }

  .pp-table thead {
    display: none;
  }

  .pp-table tr {
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 0.5rem 0.75rem;
  }

  .pp-table td {
    padding: 0.15rem 0;
  }

  .pp-table td:first-child {
    font-weight: 600;
    margin-bottom: 0.35rem;
  }
}
