/* ============================================================
   Device Pulse — styles.css
   thedevicepulse.com
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  /* Dark theme (default) */
  --dp-primary: #0A0F1C;
  --dp-surface: #131A2E;
  --dp-surface-hover: #1A2240;
  --dp-accent: #3CDFAA;
  --dp-accent-hover: #2BC898;
  --dp-accent-dark: #0D9B6A;
  --dp-text-primary: #FFFFFF;
  --dp-text-body: #C9D1D9;
  --dp-text-muted: #6B7690;
  --dp-text-dim: #4A5568;
  --dp-border: #21262D;
  --dp-border-subtle: #161B22;

  /* Semantic */
  --dp-up: #3CDFAA;
  --dp-down: #E74C3C;
  --dp-info: #4C9AFF;
  --dp-warn: #FF8C42;
  --dp-evidence: #A78BFA;
  --dp-trend: #F9C74F;

  /* Data viz */
  --dp-chart-1: #3CDFAA;
  --dp-chart-2: #4C9AFF;
  --dp-chart-3: #FF8C42;
  --dp-chart-4: #E74C3C;
  --dp-chart-5: #A78BFA;
  --dp-chart-6: #F9C74F;
  --dp-chart-7: #8B95A8;

  /* Light mode (directory pages) */
  --dp-light-bg: #FAFBFC;
  --dp-light-surface: #FFFFFF;
  --dp-light-text: #0A0F1C;
  --dp-light-body: #334155;
  --dp-light-muted: #6B7690;
  --dp-light-border: #E2E8F0;
  --dp-light-accent: #0D9B6A;

  /* Spacing scale */
  --dp-sp-1: 4px;
  --dp-sp-2: 8px;
  --dp-sp-3: 12px;
  --dp-sp-4: 16px;
  --dp-sp-5: 20px;
  --dp-sp-6: 24px;
  --dp-sp-7: 32px;
  --dp-sp-8: 40px;
  --dp-sp-9: 48px;
  --dp-sp-10: 80px;

  /* Layout */
  --dp-max-width: 1200px;
  --dp-nav-height: 60px;
  --dp-radius: 10px;
  --dp-radius-sm: 6px;
  --dp-radius-xs: 4px;
}

/* ------------------------------------------------------------
   2. Base Reset & Typography
   ------------------------------------------------------------ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dp-text-body);
  background: var(--dp-primary);
  min-height: 100vh;
}

p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dp-text-body);
  margin-bottom: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  color: var(--dp-text-primary);
  margin: 0;
}

h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

h4 {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.1px;
}

a {
  color: var(--dp-accent);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--dp-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: var(--dp-text-primary);
}

small {
  font-size: 13px;
  line-height: 1.55;
  color: var(--dp-text-body);
}

hr {
  border: none;
  border-top: 1px solid var(--dp-border);
  margin: 32px 0;
}

/* ------------------------------------------------------------
   3. Navigation
   ------------------------------------------------------------ */
.dp-nav {
  background: var(--dp-primary);
  border-bottom: 1px solid var(--dp-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dp-nav-inner {
  max-width: var(--dp-max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--dp-nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.dp-logo:hover {
  opacity: 0.9;
}

.dp-logo-icon {
  flex-shrink: 0;
}

.dp-logo-device {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dp-text-muted);
  letter-spacing: 1px;
}

.dp-logo-pulse {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--dp-text-primary);
  letter-spacing: 1px;
}

.dp-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.dp-nav-links a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--dp-text-muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}

.dp-nav-links a:hover,
.dp-nav-links a.active {
  color: var(--dp-accent);
}

/* ------------------------------------------------------------
   4. Hero Section
   ------------------------------------------------------------ */
.dp-hero {
  background: var(--dp-primary);
  padding: 80px 32px 64px;
  text-align: center;
  border-bottom: 1px solid var(--dp-border);
}

.dp-hero-inner {
  max-width: var(--dp-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dp-hero h1 {
  font-size: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.dp-hero p {
  font-size: 17px;
  color: var(--dp-text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.dp-hero-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}

.dp-hero-form input[type="email"] {
  flex: 1;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-sm);
  color: var(--dp-text-primary);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.dp-hero-form input[type="email"]::placeholder {
  color: var(--dp-text-dim);
}

.dp-hero-form input[type="email"]:focus {
  border-color: var(--dp-accent);
}

.dp-hero-form .dp-btn {
  flex-shrink: 0;
}

.dp-hero-note {
  font-size: 12px;
  color: var(--dp-text-dim);
  margin-top: 12px;
  text-align: center;
}

/* ------------------------------------------------------------
   5. Section Containers
   ------------------------------------------------------------ */
.dp-section {
  padding: 48px 0;
}

.dp-section + .dp-section {
  border-top: 1px solid var(--dp-border-subtle);
}

.dp-section-inner {
  max-width: var(--dp-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.dp-content {
  max-width: var(--dp-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.dp-main {
  max-width: var(--dp-max-width);
}

.dp-main .dp-content-narrow {
  max-width: 840px;
}

.dp-section-header {
  margin-bottom: 32px;
}

.dp-section-header h2 {
  margin-bottom: 8px;
}

.dp-section-header p {
  color: var(--dp-text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   6. Category Grid
   ------------------------------------------------------------ */
.dp-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dp-cat-card {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dp-cat-card:hover {
  border-color: var(--dp-accent);
  background: var(--dp-surface-hover);
}

.dp-cat-card h3 {
  color: var(--dp-text-primary);
  margin: 0;
}

.dp-cat-card p {
  color: var(--dp-text-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.dp-cat-card .dp-cat-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--dp-text-dim);
}

.dp-cat-card svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   7. Device Cards
   ------------------------------------------------------------ */
.device-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.device-card {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 28px;
  transition: border-color 0.2s;
  text-decoration: none;
  display: block;
}

.device-card:hover {
  border-color: var(--dp-accent);
}

.device-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.device-card-header h3 {
  margin: 0;
}

.device-card-header h3 a {
  color: var(--dp-text-primary);
  text-decoration: none;
}

.device-card-header h3 a:hover {
  color: var(--dp-accent);
}

.device-card-manufacturer {
  font-size: 13px;
  color: var(--dp-text-muted);
  margin-top: 4px;
}

.device-card-desc {
  color: var(--dp-text-body);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.device-card-tech {
  font-size: 14px;
  color: var(--dp-text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.device-card-prices {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.device-card-prices .price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  color: var(--dp-text-primary);
}

.device-card-prices .price-range {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  color: var(--dp-text-muted);
}

.device-card-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dp-border);
  flex-wrap: wrap;
}

.device-card-meta span {
  font-size: 12px;
  color: var(--dp-text-muted);
}

.device-card-verdict {
  font-size: 14px;
  color: var(--dp-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dp-border-subtle);
}

.device-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--dp-border-subtle);
}

.device-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ------------------------------------------------------------
   8. Mini Device Cards
   ------------------------------------------------------------ */
.device-grid-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.device-card-mini {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-sm);
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}

.device-card-mini:hover {
  border-color: var(--dp-accent);
  background: var(--dp-surface-hover);
}

.device-card-mini h4 {
  color: var(--dp-text-primary);
  font-size: 14px;
  margin-bottom: 4px;
}

.device-card-mini p {
  font-size: 12px;
  color: var(--dp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.device-card-mini .price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 15px;
  color: var(--dp-text-primary);
  margin-top: 8px;
  display: block;
}

/* ------------------------------------------------------------
   9. Comparison Components
   ------------------------------------------------------------ */

/* VS Header */
.vs-header {
  text-align: center;
  margin-bottom: 32px;
}

.vs-header h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dp-text-primary);
}

.vs-word {
  color: var(--dp-accent);
  font-size: 22px;
  margin: 0 6px;
}

/* VS Grid (side-by-side) */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: start;
}

.vs-tool {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 28px;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.vs-badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--dp-accent);
  background: rgba(60, 223, 170, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Compare Grid (3 cols) */
.dp-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dp-compare-card {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.dp-compare-card:hover {
  border-color: var(--dp-accent);
}

.dp-compare-card h3 {
  margin-bottom: 8px;
}

.dp-compare-card .price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  color: var(--dp-text-primary);
  margin-bottom: 12px;
  display: block;
}

.dp-compare-card .dp-compare-stat {
  font-size: 13px;
  color: var(--dp-text-muted);
  margin-bottom: 4px;
}

/* Comparison Table */
.dp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--dp-surface);
  border-radius: var(--dp-radius);
  overflow: hidden;
  border: 1px solid var(--dp-border);
}

.dp-compare-table thead th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--dp-text-primary);
  text-align: left;
  padding: 16px 20px;
  background: var(--dp-surface);
  border-bottom: 2px solid var(--dp-border);
  white-space: nowrap;
}

.dp-compare-table thead th:first-child {
  color: var(--dp-text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dp-compare-table tbody td {
  padding: 14px 20px;
  color: var(--dp-text-body);
  border-bottom: 1px solid var(--dp-border-subtle);
  vertical-align: top;
}

.dp-compare-table tbody tr:nth-child(even) {
  background: rgba(19, 26, 46, 0.5);
}

.dp-compare-table tbody tr:nth-child(odd) {
  background: var(--dp-surface);
}

.dp-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.dp-compare-table tbody td:first-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--dp-text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.dp-compare-table .winner {
  color: var(--dp-accent);
  font-weight: 600;
}

/* ------------------------------------------------------------
   10. Manufacturer Cards
   ------------------------------------------------------------ */
.dp-mfr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dp-mfr-card {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dp-mfr-card:hover {
  border-color: var(--dp-accent);
  background: var(--dp-surface-hover);
}

.dp-mfr-card h3 {
  color: var(--dp-text-primary);
}

.dp-mfr-card p {
  font-size: 13px;
  color: var(--dp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.dp-mfr-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dp-text-dim);
  margin-bottom: 4px;
}

.dp-mfr-card .dp-mfr-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--dp-text-muted);
  margin-top: auto;
}

/* ------------------------------------------------------------
   11. Guide Cards
   ------------------------------------------------------------ */
.dp-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dp-guide-card {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
}

.dp-guide-card:hover {
  border-color: var(--dp-accent);
  background: var(--dp-surface-hover);
}

.dp-guide-card .section-label {
  margin-bottom: 12px;
}

.dp-guide-card h3 {
  color: var(--dp-text-primary);
  margin-bottom: 8px;
}

.dp-guide-card p {
  font-size: 13px;
  color: var(--dp-text-muted);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.dp-guide-card .dp-guide-meta {
  font-size: 12px;
  color: var(--dp-text-dim);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--dp-border);
}

/* ------------------------------------------------------------
   12. Newsletter Signup
   ------------------------------------------------------------ */
.dp-signup {
  background: #0E1429;
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 48px;
  text-align: center;
  margin: 48px 0;
  width: 100%;
}

.dp-signup-inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dp-signup h2 {
  margin-bottom: 8px;
}

.dp-signup p {
  color: var(--dp-text-muted);
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto 24px;
}

.dp-signup-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.dp-signup-form input[type="email"] {
  flex: 1;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  background: var(--dp-primary);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-sm);
  color: var(--dp-text-primary);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.dp-signup-form input[type="email"]::placeholder {
  color: var(--dp-text-dim);
}

.dp-signup-form input[type="email"]:focus {
  border-color: var(--dp-accent);
}

.dp-signup-form select {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  background: var(--dp-primary);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-sm);
  color: var(--dp-text-muted);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7690' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: border-color 0.2s;
  min-width: 140px;
}

.dp-signup-form select:focus {
  border-color: var(--dp-accent);
}

.dp-signup-form select option {
  background: var(--dp-primary);
  color: var(--dp-text-body);
}

.dp-signup-form .dp-btn {
  flex-shrink: 0;
}

.dp-signup-note {
  font-size: 12px;
  color: var(--dp-text-dim);
  margin-top: 12px;
  text-align: center;
}

/* ------------------------------------------------------------
   13. Pros/Cons Layout
   ------------------------------------------------------------ */
.dp-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.dp-pros,
.dp-cons {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 24px;
}

.dp-pros .section-label {
  color: var(--dp-up);
  margin-bottom: 16px;
}

.dp-cons .section-label {
  color: var(--dp-down);
  margin-bottom: 16px;
}

.dp-pros ul,
.dp-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-pros li,
.dp-cons li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--dp-text-body);
  margin-bottom: 10px;
  line-height: 1.55;
}

.dp-pros li:last-child,
.dp-cons li:last-child {
  margin-bottom: 0;
}

.dp-pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--dp-up);
  font-size: 14px;
}

.dp-cons li::before {
  content: "\2212";
  position: absolute;
  left: 0;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--dp-down);
  font-size: 14px;
}

/* ------------------------------------------------------------
   14. Specs Grid
   ------------------------------------------------------------ */
.dp-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  overflow: hidden;
  margin: 24px 0;
}

.dp-specs-grid .dp-spec {
  padding: 16px 20px;
  border-bottom: 1px solid var(--dp-border-subtle);
  border-right: 1px solid var(--dp-border-subtle);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-specs-grid .dp-spec:nth-child(2n) {
  border-right: none;
}

.dp-specs-grid .dp-spec:nth-last-child(-n+2) {
  border-bottom: none;
}

.dp-specs-grid .dp-spec .data-label {
  margin-bottom: 0;
}

.dp-specs-grid .dp-spec .data-value {
  font-size: 15px;
}

/* ------------------------------------------------------------
   15. FAQ Section
   ------------------------------------------------------------ */
.dp-faq {
  margin: 48px 0;
}

.dp-faq h2 {
  margin-bottom: 28px;
}

.dp-faq-item {
  border-bottom: 1px solid var(--dp-border);
  padding: 24px 0;
}

.dp-faq-item:first-of-type {
  border-top: 1px solid var(--dp-border);
}

.dp-faq-item summary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--dp-text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  transition: color 0.15s;
}

.dp-faq-item summary::-webkit-details-marker {
  display: none;
}

.dp-faq-item summary::after {
  content: "+";
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 400;
  color: var(--dp-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.dp-faq-item[open] summary::after {
  content: "\2212";
}

.dp-faq-item summary:hover {
  color: var(--dp-accent);
}

.dp-faq-item .dp-faq-answer {
  padding-top: 12px;
  font-size: 14px;
  color: var(--dp-text-body);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   16. Breadcrumb
   ------------------------------------------------------------ */
.dp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--dp-text-dim);
  padding: 16px 0;
  flex-wrap: wrap;
}

.dp-breadcrumb a {
  color: var(--dp-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.dp-breadcrumb a:hover {
  color: var(--dp-accent);
}

.dp-breadcrumb span.dp-breadcrumb-sep {
  color: var(--dp-text-dim);
  font-size: 10px;
}

.dp-breadcrumb span.dp-breadcrumb-current {
  color: var(--dp-text-body);
}

/* ------------------------------------------------------------
   17. Buttons
   ------------------------------------------------------------ */
.dp-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dp-primary);
  background: var(--dp-accent);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.dp-btn:hover {
  background: var(--dp-accent-hover);
  color: var(--dp-primary);
}

.dp-btn-sm {
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 6px;
}

.dp-btn-outline {
  background: transparent;
  border: 1px solid var(--dp-accent);
  color: var(--dp-accent);
}

.dp-btn-outline:hover {
  background: rgba(60, 223, 170, 0.1);
  color: var(--dp-accent);
}

/* ------------------------------------------------------------
   18. Tags & Badges
   ------------------------------------------------------------ */
.dp-tag {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--dp-text-muted);
  background: rgba(107, 118, 144, 0.15);
  padding: 3px 10px;
  border-radius: var(--dp-radius-xs);
  display: inline-block;
  line-height: 1.4;
}

.dp-tag-fda {
  background: rgba(76, 154, 255, 0.12);
  color: var(--dp-info);
}

.dp-tag-evidence {
  background: rgba(167, 139, 250, 0.12);
  color: var(--dp-evidence);
}

.dp-tag-safety {
  background: rgba(231, 76, 60, 0.12);
  color: var(--dp-down);
}

.dp-badge-top {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(60, 223, 170, 0.15);
  color: var(--dp-accent);
  padding: 4px 10px;
  border-radius: var(--dp-radius-xs);
  display: inline-block;
  line-height: 1.4;
}

/* ------------------------------------------------------------
   19. Data Display
   ------------------------------------------------------------ */
.data-label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dp-text-muted);
  line-height: 1;
}

.data-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  color: var(--dp-text-primary);
  line-height: 1;
}

.data-value-sm {
  font-size: 15px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.section-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--dp-border);
}

.section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dp-dot-price { background: var(--dp-up); }
.dp-dot-fda { background: var(--dp-info); }
.dp-dot-safety { background: var(--dp-down); }
.dp-dot-evidence { background: var(--dp-evidence); }
.dp-dot-market { background: var(--dp-warn); }
.dp-dot-trend { background: var(--dp-trend); }

/* Price change display */
.price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  color: var(--dp-text-primary);
}

.price-change {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 12px;
}

.price-change.up { color: var(--dp-up); }
.price-change.down { color: var(--dp-down); }
.price-change.flat { color: var(--dp-text-muted); }

/* ------------------------------------------------------------
   20. Meta Row
   ------------------------------------------------------------ */
.dp-meta-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 0;
}

.dp-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 24px;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-sm);
  min-width: 160px;
}

.dp-meta-item .data-label {
  font-size: 10px;
  color: var(--dp-accent);
  letter-spacing: 1.5px;
}

.dp-meta-item strong,
.dp-meta-item .data-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dp-text-primary);
  line-height: 1.2;
}

.dp-meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   21. Footer
   ------------------------------------------------------------ */
.dp-footer {
  background: var(--dp-primary);
  border-top: 1px solid var(--dp-border);
  color: var(--dp-text-muted);
  padding: 48px 32px;
  margin-top: 80px;
}

.dp-footer-inner {
  max-width: var(--dp-max-width);
  margin: 0 auto;
}

.dp-footer-brand p {
  font-size: 13px;
  color: var(--dp-text-dim);
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 0;
}

.dp-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
}

.dp-footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dp-footer-links h3,
.dp-footer-links h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dp-text-muted);
  margin-bottom: 6px;
}

.dp-footer-links a {
  font-size: 13px;
  color: var(--dp-text-body);
  text-decoration: none;
  transition: color 0.15s;
}

.dp-footer-links a:hover {
  color: var(--dp-accent);
}

.dp-footer-bottom {
  max-width: 100%;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--dp-border);
  text-align: center;
  font-size: 12px;
  color: var(--dp-text-dim);
}

.dp-footer-bottom p {
  font-size: 12px;
  color: var(--dp-text-dim);
  margin-bottom: 8px;
}

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

.dp-footer-disclaimer {
  max-width: 800px;
  margin: 8px auto 0;
  font-size: 11px;
  line-height: 1.5;
}

.dp-footer-bottom a {
  color: var(--dp-text-muted);
  text-decoration: none;
}

.dp-footer-bottom a:hover {
  color: var(--dp-accent);
}

/* ------------------------------------------------------------
   22. Links
   ------------------------------------------------------------ */
.dp-link {
  color: var(--dp-accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dp-link:hover {
  color: var(--dp-accent-hover);
}

.dp-link::after {
  content: "\2192";
  font-size: 14px;
  transition: transform 0.15s;
}

.dp-link:hover::after {
  transform: translateX(3px);
}

.dp-link-sm {
  font-size: 12px;
}

.dp-link-sm::after {
  font-size: 12px;
}

/* ------------------------------------------------------------
   23. Page Hero Variants
   ------------------------------------------------------------ */
.dp-page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--dp-border);
  margin-bottom: 48px;
}

.dp-page-hero h1 {
  margin-bottom: 16px;
}

.dp-page-hero p {
  color: var(--dp-text-body);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 0;
}

.dp-page-hero-device {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--dp-border);
  margin-bottom: 32px;
}

.dp-page-hero-device h1 {
  margin-bottom: 4px;
}

.dp-page-hero-device .dp-device-manufacturer {
  font-size: 14px;
  color: var(--dp-text-muted);
  margin-bottom: 16px;
}

.dp-page-hero-device .dp-device-hero-prices {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.dp-page-hero-device .dp-device-hero-prices .price-tag {
  font-size: 28px;
}

.dp-page-hero-device .dp-device-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   24. Evidence Compare Layout
   ------------------------------------------------------------ */
.dp-evidence-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.dp-evidence-compare .dp-evidence-side {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 24px;
}

.dp-evidence-compare .dp-evidence-side h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-evidence-compare .dp-evidence-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--dp-border-subtle);
}

.dp-evidence-compare .dp-evidence-stat:last-child {
  border-bottom: none;
}

.dp-evidence-compare .dp-evidence-stat .data-label {
  font-size: 11px;
}

.dp-evidence-compare .dp-evidence-stat .data-value {
  font-size: 16px;
}

/* ------------------------------------------------------------
   25. Bottom Line Section
   ------------------------------------------------------------ */
.dp-bottom-line {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-left: 3px solid var(--dp-accent);
  border-radius: 0 var(--dp-radius) var(--dp-radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.dp-bottom-line .section-label {
  color: var(--dp-accent);
  margin-bottom: 12px;
}

.dp-bottom-line h3 {
  margin-bottom: 12px;
}

.dp-bottom-line p {
  font-size: 14px;
  color: var(--dp-text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   26. Hero Note & Signup Note (already in sections 4 & 12)
   Additional shared styles
   ------------------------------------------------------------ */
.dp-hero-note a,
.dp-signup-note a {
  color: var(--dp-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dp-hero-note a:hover,
.dp-signup-note a:hover {
  color: var(--dp-accent);
}

/* ------------------------------------------------------------
   27. Responsive (860px breakpoint)
   ------------------------------------------------------------ */
@media (max-width: 860px) {
  /* Typography */
  h1 { font-size: 24px; letter-spacing: -0.3px; }
  h2 { font-size: 18px; }

  /* Navigation */
  .dp-nav-inner { padding: 0 16px; }
  .dp-nav-links { display: none; }

  /* Hero */
  .dp-hero {
    padding: 48px 16px 40px;
  }

  .dp-hero h1 {
    font-size: 28px;
  }

  .dp-hero p {
    font-size: 15px;
  }

  .dp-hero-form {
    flex-direction: column;
    max-width: 100%;
  }

  /* Sections */
  .dp-section-inner,
  .dp-content {
    padding: 0 16px;
  }

  .dp-section {
    padding: 32px 0;
  }

  /* Category grid */
  .dp-cat-grid {
    grid-template-columns: 1fr;
  }

  /* Device grid */
  .device-grid {
    grid-template-columns: 1fr;
  }

  /* Mini device grid */
  .device-grid-mini {
    grid-template-columns: 1fr;
  }

  /* Compare grid */
  .dp-compare-grid {
    grid-template-columns: 1fr;
  }

  /* VS grid */
  .vs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vs-divider {
    padding-top: 0;
  }

  .vs-header h1 {
    font-size: 22px;
  }

  /* Comparison table */
  .dp-compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Manufacturer grid */
  .dp-mfr-grid {
    grid-template-columns: 1fr;
  }

  /* Guide grid */
  .dp-guide-grid {
    grid-template-columns: 1fr;
  }

  /* Signup */
  .dp-signup {
    padding: 32px 20px;
    margin: 32px 0;
  }

  .dp-signup-form {
    flex-direction: column;
  }

  .dp-signup-form select {
    min-width: 0;
    width: 100%;
  }

  /* Pros/cons */
  .dp-pros-cons {
    grid-template-columns: 1fr;
  }

  /* Specs grid */
  .dp-specs-grid {
    grid-template-columns: 1fr;
  }

  .dp-specs-grid .dp-spec {
    border-right: none;
  }

  .dp-specs-grid .dp-spec:last-child {
    border-bottom: none;
  }

  /* Evidence compare */
  .dp-evidence-compare {
    grid-template-columns: 1fr;
  }

  /* Page heroes */
  .dp-page-hero-device .dp-device-hero-prices .price-tag {
    font-size: 22px;
  }

  /* Footer */
  .dp-footer {
    padding: 32px 16px;
    margin-top: 48px;
  }

  .dp-footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dp-footer-bottom {
    text-align: center;
    margin-top: 24px;
  }

  /* Meta row */
  .dp-meta-row {
    gap: 10px;
  }

  .dp-meta-item {
    padding: 12px 16px;
    min-width: 0;
    flex: 1;
  }

  .dp-section-content {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  /* Device card */
  .device-card {
    padding: 20px;
  }

  .device-card-header {
    flex-direction: column;
    gap: 8px;
  }

  /* Bottom line */
  .dp-bottom-line {
    padding: 20px;
  }

  /* Breadcrumb */
  .dp-breadcrumb {
    font-size: 11px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 22px; }

  .dp-hero h1 { font-size: 24px; }

  .dp-hero {
    padding: 40px 16px 32px;
  }

  .data-value {
    font-size: 17px;
  }

  .dp-compare-card {
    padding: 20px;
  }

  .dp-cat-card,
  .dp-mfr-card,
  .dp-guide-card {
    padding: 20px;
  }
}

/* ------------------------------------------------------------
   Homepage additions — pain, benefits, steps, why, group heading
   ------------------------------------------------------------ */
.dp-pain {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.dp-pain h2 {
  text-align: center;
  margin-bottom: 20px;
}
.dp-pain p {
  font-size: 16px;
  color: var(--dp-text-body);
  margin-bottom: 16px;
  line-height: 1.7;
}

.dp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.dp-benefit {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 24px;
}
.dp-benefit-icon {
  font-size: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.dp-benefit h3 {
  color: var(--dp-text-primary);
  margin-bottom: 8px;
}
.dp-benefit p {
  color: var(--dp-text-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.dp-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.dp-step {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 28px;
}
.dp-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 24px;
  color: var(--dp-accent);
  display: block;
  margin-bottom: 12px;
}
.dp-step h3 {
  color: var(--dp-text-primary);
  margin-bottom: 10px;
  font-size: 16px;
}
.dp-step p {
  color: var(--dp-text-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.dp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.dp-why {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-left: 3px solid var(--dp-accent);
  border-radius: var(--dp-radius);
  padding: 24px;
}
.dp-why h3 {
  color: var(--dp-text-primary);
  margin-bottom: 8px;
}
.dp-why p {
  color: var(--dp-text-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.dp-group-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dp-text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dp-border);
}
.dp-group-heading:first-child {
  margin-top: 8px;
}

.dp-section-alt {
  background: rgba(19, 26, 46, 0.4);
}

@media (max-width: 860px) {
  .dp-benefit-grid,
  .dp-steps,
  .dp-why-grid {
    grid-template-columns: 1fr;
  }
}

.dp-hero-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--dp-border);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.dp-trust-item {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--dp-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dp-trust-icon {
  color: var(--dp-accent);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 600px) {
  .dp-hero-trust {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* Subscribe Success */
.dp-subscribe-success {
  text-align: center;
  padding: 16px 0;
}

/* Logo Bar */
.dp-logo-bar {
  border-bottom: 1px solid var(--dp-border);
  padding: 32px 0;
  background: var(--dp-primary);
}

.dp-logo-bar-inner {
  max-width: var(--dp-max-width);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.dp-logo-bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dp-text-dim);
  margin-bottom: 20px;
}

.dp-logo-bar-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
}

.dp-logo-item {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dp-text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-sm);
  background: var(--dp-surface);
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.dp-logo-item:hover {
  color: var(--dp-accent);
  border-color: var(--dp-accent);
}

/* Stats Bar */
.dp-stats-bar {
  padding: 40px 0;
  background: var(--dp-surface);
  border-bottom: 1px solid var(--dp-border);
}

.dp-stats-bar-inner {
  max-width: var(--dp-max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.dp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 100px;
}

.dp-stat-number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--dp-accent);
  line-height: 1;
}

.dp-stat-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: var(--dp-text-muted);
  text-align: center;
}

/* Section sub-heading */
.dp-section-sub {
  color: var(--dp-text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 640px;
}

.dp-hero-sub {
  font-size: 17px;
  color: var(--dp-text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .dp-stats-bar-inner {
    gap: 24px;
  }

  .dp-stat-number {
    font-size: 24px;
  }

  .dp-logo-bar-grid {
    gap: 8px 12px;
  }

  .dp-logo-item {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Last updated banner */
.dp-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dp-text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--dp-border-subtle);
  text-align: left;
}

.dp-page-hero .dp-updated {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 12px;
  border: 1px solid var(--dp-border);
  border-radius: 4px;
  background: var(--dp-surface);
}

/* ------------------------------------------------------------
   Section Content (category/device page body sections)
   ------------------------------------------------------------ */
.dp-section-content {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dp-border-subtle);
}

.dp-section-content:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dp-section-content h2 {
  margin-bottom: 20px;
}

.dp-section-content p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.dp-section-content p:last-child {
  margin-bottom: 0;
}

.dp-section-content ul,
.dp-section-content ol {
  margin-top: 16px;
  margin-bottom: 20px;
}

.dp-section-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.vs-header .dp-updated {
  text-align: center;
  display: inline-block;
  margin-top: 16px;
}
