/* ═══════════════════════════════════════════════
   Ákotí Dividers — Pure CSS

   Horizontal: <hr class="akoti-divider">
   With label: <div class="akoti-divider-label">OR</div>
   Vertical:   <span class="akoti-divider-v"></span>
   ═══════════════════════════════════════════════ */

.akoti-divider {
  border: none;
  height: 1px;
  background: rgba(26, 47, 94, 0.08);
  margin: 16px 0;
}

.akoti-divider.thick { height: 2px; }

/* With label */
.akoti-divider-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #8a8a96;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 16px 0;
}
.akoti-divider-label::before,
.akoti-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 47, 94, 0.08);
}

/* Vertical */
.akoti-divider-v {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: rgba(26, 47, 94, 0.1);
  vertical-align: middle;
  margin: 0 8px;
}

/* Gradient variant */
.akoti-divider.gradient {
  height: 2px;
  background: linear-gradient(90deg, transparent, #a8c8e8, #e8b4b8, transparent);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .akoti-divider { background: rgba(255,255,255,0.06); }
  :root:not([data-theme="light"]) .akoti-divider-label::before, .akoti-divider-label::after { background: rgba(255,255,255,0.06); }
  :root:not([data-theme="light"]) .akoti-divider-label { color: #5a5a66; }
  :root:not([data-theme="light"]) .akoti-divider-v { background: rgba(255,255,255,0.08); }
}
