/* Audience Persona Template Styles */
.apt-wrap {
  max-width: 1100px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.apt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .apt-grid { grid-template-columns: 1fr; }
}

.apt-card {
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.apt-card h3 {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #eef0f3;
  font-size: 16px;
}

.apt-card .apt-body {
  padding: 16px;
}

.apt-field {
  margin-bottom: 12px;
}

.apt-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.apt-field input[type="text"],
.apt-field input[type="number"],
.apt-field textarea,
.apt-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5d9df;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

.apt-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.apt-btn {
  background: #1e99af;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.apt-btn.secondary {
  background: #f3f4f6;
  color: #111827;
}

.apt-preview {
  background: #fbfdff;
  border: 1px dashed #d5d9df;
  border-radius: 10px;
  padding: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.apt-small {
  color: #6b7280;
  font-size: 12px;
  margin: 6px 0 0;
}
