/* ─────────────────────────────────────────────
   Zerofivemm Privacy Policy Plugin — Styles
───────────────────────────────────────────── */

:root {
  --zmm-navy:      #1e2a47;
  --zmm-orange:    #e8521a;
  --zmm-text:      #2a2a2a;
  --zmm-text-mid:  #555;
  --zmm-bg-light:  #f4f4f2;
  --zmm-border:    #ddd;
  --zmm-serif:     'Playfair Display', Georgia, serif;
  --zmm-sans:      'Source Sans 3', sans-serif;
}

.zmm-terms-wrap {
  font-family: var(--zmm-sans);
  color: var(--zmm-text);
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 0 5rem;
  box-sizing: border-box;
}

/* Section Blocks */
.zmm-section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--zmm-border);
}
.zmm-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.zmm-section-tag {
  font-family: var(--zmm-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zmm-orange);
  margin-bottom: 0.6rem;
}

.zmm-section h2 {
  font-family: var(--zmm-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--zmm-navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.zmm-section p {
  font-family: var(--zmm-sans);
  font-size: 0.95rem;
  color: var(--zmm-text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}
.zmm-section p:last-child { margin-bottom: 0; }
.zmm-section strong { color: var(--zmm-text); font-weight: 600; }

.zmm-section ul {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
  font-family: var(--zmm-sans);
  font-size: 0.95rem;
  color: var(--zmm-text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.zmm-section ul li { margin-bottom: 0.3rem; }
.zmm-section a { color: var(--zmm-navy); font-weight: 600; text-decoration: none; }
.zmm-section a:hover { text-decoration: underline; }

/* Note box */
.zmm-note {
  background: var(--zmm-bg-light);
  border-left: 3px solid var(--zmm-orange);
  border-radius: 0 3px 3px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-family: var(--zmm-sans);
  font-size: 0.88rem;
  color: var(--zmm-text-mid);
  line-height: 1.7;
  font-weight: 300;
}
.zmm-note strong { color: var(--zmm-orange); font-weight: 600; }

/* Tables */
.zmm-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-family: var(--zmm-sans);
  font-size: 0.88rem;
}
.zmm-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--zmm-bg-light);
  border: 1px solid var(--zmm-border);
  color: var(--zmm-navy);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.zmm-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--zmm-border);
  color: var(--zmm-text-mid);
  vertical-align: top;
  line-height: 1.65;
  font-weight: 300;
  font-size: 0.9rem;
}
.zmm-table tr:hover td { background: #fafaf9; }
