/* Berthr Help — Section content styles */
/* Loaded once by index.html; inherited by all section fragments */

.section-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.section-header h1 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 6px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 580px;
}

/* Topic blocks */
.topic {
  margin-bottom: 36px;
}

.topic h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  scroll-margin-top: 80px;
}

.topic h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.topic p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 10px;
}

.topic p:last-child { margin-bottom: 0; }

/* SMS message block */
.sms-bubble-wrap {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sms-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.sms-bubble {
  background: var(--surface-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 420px;
  font-family: 'DM Sans', sans-serif;
}

.sms-bubble strong {
  color: var(--text);
}

/* Info callout */
.callout {
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 12px 0;
  max-width: 640px;
}

.callout.gold {
  background: var(--gold-bg);
  border-color: rgba(184,112,16,0.22);
}

.callout strong { color: var(--text); }

/* Table */
.help-table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
  margin: 12px 0;
}

.help-table th {
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 12px;
  border-bottom: 1px solid var(--border);
}

.help-table td {
  padding: 9px 12px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.help-table tr:last-child td { border-bottom: none; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.badge-teal  { background: var(--teal-bg); color: var(--teal); border: 1px solid var(--teal-border); }
.badge-gold  { background: var(--gold-bg); color: var(--gold); border: 1px solid rgba(184,112,16,0.22); }
.badge-dim   { background: var(--surface-mid); color: var(--text-dim); border: 1px solid var(--border); }
