/* ===================================
   DESIGN 1: Pros & Cons Cards
   =================================== */
.proscons-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.proscons-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid;
}

.proscons-pros {
  border-top-color: var(--brand-success);
}

.proscons-cons {
  border-top-color: var(--brand-danger);
}

.proscons-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.proscons-icon {
  width: 28px;
  height: 28px;
}

.proscons-pros .proscons-icon {
  color: var(--brand-success);
}

.proscons-cons .proscons-icon {
  color: var(--brand-danger);
}

.proscons-header h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.proscons-list {
  list-style: none;
}

.proscons-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
  border-bottom: 1px solid var(--border-color);
}

.proscons-list li:last-child {
  border-bottom: none;
}

.proscons-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.proscons-pros li::before {
  background-color: #d1fae5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23059669' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

.proscons-cons li::before {
  background-color: #fee2e2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dc2626' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .proscons-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proscons-card {
    padding: 24px;
  }

  .proscons-title {
    font-size: 28px;
  }
}
