/* ═══════════════════════════════════════════════
   CMS — Hoja de Estilos Principal
   Estética: Editorial documental / Periódico moderno
   Tipografía: Playfair Display + Source Sans 3
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;600&family=JetBrains+Mono:wght@400&display=swap');

/* ── Variables ── */
:root {
  --content-width: 860px;
  --gutter: 1.5rem;
  --ink:       #0f0e0c;
  --ink-soft:  #3a3630;
  --ink-muted: #7a7468;
  --paper:     #f7f4ef;
  --paper-alt: #ede9e2;
  --cream:     #faf8f4;
  --red:       #c0392b;
  --red-dark:  #922b21;
  --gold:      #b7950b;
  --line:      #d4cfc6;

  --admin-bg:  #0d1117;
  --admin-surface: #161b22;
  --admin-border:  #30363d;
  --admin-text:    #e6edf3;
  --admin-muted:   #8b949e;
  --admin-accent:  #c0392b;
  --admin-green:   #3fb950;
  --admin-yellow:  #d29922;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Sans 3', system-ui, sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;

  --radius: 3px;
  --shadow: 0 1px 4px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.18), 0 12px 40px rgba(0,0,0,.1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--ff-body); color: var(--ink); background: var(--paper); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   PUBLIC SITE
   ════════════════════════════════════════ */

/* ── Header / Masthead ── */
.masthead {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  border-bottom: 3px solid var(--red);
}
.masthead__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
}
.masthead__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--paper);
}
.masthead__title span {
  color: var(--red);
}
.masthead__subtitle {
  font-size: .95rem;
  color: var(--ink-muted);
  margin-top: .4rem;
  font-weight: 300;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.masthead__lang {
  display: flex;
  gap: .5rem;
}
.masthead__lang a {
  color: var(--ink-muted);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border: 1px solid var(--ink-soft);
  border-radius: var(--radius);
  transition: all .2s;
}
.masthead__lang a:hover, .masthead__lang a.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  text-decoration: none;
}

/* ── Nav strip ── */
.nav-strip {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
}
.nav-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
}
.nav-strip a {
  display: block;
  padding: .75rem 1.2rem;
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.nav-strip a:hover, .nav-strip a.active {
  color: var(--red);
  border-bottom-color: var(--red);
  text-decoration: none;
}

/* ── Page container ── */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

/* ── Home layout: 3-col grid ── */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto;
  gap: 3rem;
}
@media (max-width: 780px) {
  .home-grid { grid-template-columns: 1fr; }
}

/* ── Section label ── */
.section-label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

/* ── Article cards ── */
.article-list { display: flex; flex-direction: column; gap: 2rem; }
.article-card {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.article-card:last-child { border-bottom: none; }
.article-card__layout {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .4rem;
}
.article-card__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: .6rem;
}
.article-card__title a { color: inherit; }
.article-card__title a:hover { color: var(--red); text-decoration: none; }
.article-card__excerpt {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: .8rem;
  line-height: 1.6;
}
.article-card__meta {
  font-size: .8rem;
  color: var(--ink-muted);
  font-family: var(--ff-mono);
}

/* ── Sidebar ── */
.sidebar {}
.updates-feed { display: flex; flex-direction: column; gap: 0; }
.update-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.update-item:last-child { border-bottom: none; }
.update-item__date {
  font-size: .72rem;
  font-family: var(--ff-mono);
  color: var(--red);
  margin-bottom: .3rem;
}
.update-item__body {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── Single Article ── */
.article-page { max-width: 720px; }
.article-page__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.article-page__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.article-page__meta {
  font-size: .8rem;
  color: var(--ink-muted);
  font-family: var(--ff-mono);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.article-page__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.article-page__body p { margin-bottom: 1.4em; }
.article-page__body h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2em 0 .8em;
}
.article-page__body blockquote {
  border-left: 3px solid var(--red);
  padding: .8rem 1.2rem;
  margin: 1.5rem 0;
  background: var(--paper-alt);
  font-style: italic;
  color: var(--ink-soft);
}
.article-page__lang-switch {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--ink-muted);
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: var(--ink-muted);
  font-size: .8rem;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer a { color: var(--ink-muted); }
.site-footer a:hover { color: var(--red); }

/* ════════════════════════════════════════
   ADMIN PANEL — Dark theme
   ════════════════════════════════════════ */

body.admin {
  background: var(--admin-bg);
  color: var(--admin-text);
  font-family: var(--ff-body);
}

/* ── Admin layout ── */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

/* ── Sidebar ── */
.admin-sidebar {
  background: var(--admin-surface);
  border-right: 1px solid var(--admin-border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar__brand {
  padding: 1.5rem;
  border-bottom: 1px solid var(--admin-border);
}
.admin-sidebar__logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--admin-text);
  line-height: 1.2;
}
.admin-sidebar__logo span { color: var(--admin-accent); }
.admin-sidebar__role {
  font-size: .7rem;
  color: var(--admin-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .3rem;
}
.admin-nav {
  padding: 1rem 0;
  flex: 1;
}
.admin-nav__section {
  padding: .5rem 1.2rem .2rem;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--admin-muted);
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem 1.2rem;
  color: var(--admin-muted);
  font-size: .88rem;
  transition: all .15s;
  border-left: 3px solid transparent;
}
.admin-nav a:hover {
  color: var(--admin-text);
  background: rgba(255,255,255,.04);
  text-decoration: none;
}
.admin-nav a.active {
  color: var(--admin-text);
  border-left-color: var(--admin-accent);
  background: rgba(192,57,43,.08);
}
.admin-nav__icon { width: 16px; text-align: center; opacity: .7; }
.admin-sidebar__footer {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--admin-border);
}

/* ── Main content area ── */
.admin-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-topbar {
  background: var(--admin-surface);
  border-bottom: 1px solid var(--admin-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-topbar__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--admin-text);
}
.admin-topbar__actions { display: flex; gap: .75rem; align-items: center; }
.admin-content {
  padding: 2rem;
  flex: 1;
}

/* ── Cards / Panels ── */
.card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.card__title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--admin-muted);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--admin-border);
}

/* ── Stats row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}
.stat-card__num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--admin-text);
  line-height: 1;
}
.stat-card__label {
  font-size: .75rem;
  color: var(--admin-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .4rem;
}
.stat-card--accent .stat-card__num { color: var(--admin-accent); }
.stat-card--green  .stat-card__num { color: var(--admin-green); }
.stat-card--yellow .stat-card__num { color: var(--admin-yellow); }

/* ── Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.data-table th {
  text-align: left;
  padding: .6rem .8rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--admin-muted);
  border-bottom: 1px solid var(--admin-border);
}
.data-table td {
  padding: .75rem .8rem;
  border-bottom: 1px solid rgba(48,54,61,.6);
  color: var(--admin-text);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(255,255,255,.02); }
.data-table tr:last-child td { border-bottom: none; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  padding: .15rem .6rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--green  { background: rgba(63,185,80,.15); color: var(--admin-green); }
.badge--yellow { background: rgba(210,153,34,.15); color: var(--admin-yellow); }
.badge--red    { background: rgba(192,57,43,.2);   color: #e05c4a; }
.badge--gray   { background: rgba(139,148,158,.15); color: var(--admin-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-family: var(--ff-body);
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn--primary { background: var(--admin-accent); color: #fff; }
.btn--primary:hover { background: var(--red-dark); text-decoration: none; color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--admin-muted);
  border: 1px solid var(--admin-border);
}
.btn--ghost:hover { color: var(--admin-text); border-color: var(--admin-text); text-decoration: none; }
.btn--danger { background: transparent; color: #e05c4a; border: 1px solid rgba(224,92,74,.4); }
.btn--danger:hover { background: rgba(192,57,43,.15); text-decoration: none; }
.btn--sm { padding: .3rem .7rem; font-size: .78rem; }
.btn--publish { background: rgba(63,185,80,.15); color: var(--admin-green); border: 1px solid rgba(63,185,80,.3); }
.btn--publish:hover { background: rgba(63,185,80,.25); text-decoration: none; }

/* ── Forms ── */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--admin-muted);
  margin-bottom: .4rem;
}
.form-label span { color: var(--admin-accent); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--admin-bg);
  border: 1px solid var(--admin-border);
  border-radius: var(--radius);
  color: var(--admin-text);
  padding: .6rem .8rem;
  font-family: var(--ff-body);
  font-size: .9rem;
  transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--admin-accent);
  box-shadow: 0 0 0 2px rgba(192,57,43,.2);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: .75rem; color: var(--admin-muted); margin-top: .3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Editor ── */
.editor-tabs {
  display: flex;
  border-bottom: 1px solid var(--admin-border);
  margin-bottom: 1rem;
}
.editor-tab {
  padding: .5rem 1.2rem;
  font-size: .82rem;
  cursor: pointer;
  color: var(--admin-muted);
  border-bottom: 2px solid transparent;
  transition: all .15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--ff-body);
}
.editor-tab:hover { color: var(--admin-text); }
.editor-tab.active {
  color: var(--admin-text);
  border-bottom-color: var(--admin-accent);
}
.ql-toolbar { background: var(--admin-bg) !important; border-color: var(--admin-border) !important; }
.ql-container { background: var(--admin-bg) !important; border-color: var(--admin-border) !important; color: var(--admin-text) !important; min-height: 300px; }
.ql-toolbar .ql-stroke { stroke: var(--admin-muted) !important; }
.ql-toolbar .ql-fill { fill: var(--admin-muted) !important; }
.ql-toolbar button:hover .ql-stroke { stroke: var(--admin-text) !important; }

/* ── Login page ── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--admin-bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(183,149,11,.05) 0%, transparent 60%);
}
.login-card {
  width: 100%;
  max-width: 380px;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 4px;
  padding: 2.5rem;
}
.login-card__logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--admin-text);
  text-align: center;
  margin-bottom: .3rem;
}
.login-card__logo span { color: var(--admin-accent); }
.login-card__sub {
  text-align: center;
  font-size: .78rem;
  color: var(--admin-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2rem;
}
.login-error {
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.4);
  color: #e05c4a;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  font-size: .85rem;
  margin-bottom: 1.2rem;
}
.login-card .btn--primary { width: 100%; justify-content: center; margin-top: .5rem; }

/* ── Upload zone ── */
.upload-zone {
  border: 2px dashed var(--admin-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  color: var(--admin-muted);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--admin-accent);
  background: rgba(192,57,43,.05);
  color: var(--admin-text);
}
.upload-zone__icon { font-size: 2rem; margin-bottom: .75rem; }
.upload-zone input[type="file"] { display: none; }

/* ── Alerts ── */
.alert {
  padding: .8rem 1rem;
  border-radius: var(--radius);
  font-size: .88rem;
  margin-bottom: 1rem;
}
.alert--success { background: rgba(63,185,80,.1); border: 1px solid rgba(63,185,80,.3); color: var(--admin-green); }
.alert--error   { background: rgba(192,57,43,.1);  border: 1px solid rgba(192,57,43,.3); color: #e05c4a; }
.alert--warn    { background: rgba(210,153,34,.1); border: 1px solid rgba(210,153,34,.3); color: var(--admin-yellow); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .admin-content { padding: 1rem; }
  .admin-topbar { padding: .75rem 1rem; }
}

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.admin-content, .page { animation: fadeIn .25s ease; }

/* ── Scrollbar (webkit) ── */
body.admin ::-webkit-scrollbar { width: 6px; }
body.admin ::-webkit-scrollbar-track { background: var(--admin-bg); }
body.admin ::-webkit-scrollbar-thumb { background: var(--admin-border); border-radius: 3px; }
body.admin ::-webkit-scrollbar-thumb:hover { background: var(--admin-muted); }

/* ---- Social Strip ---- */
.social-strip {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: .9rem 0;
}
.social-strip__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: .25rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  align-items: center;
  justify-content: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  padding: .35rem .75rem;
  border-radius: 4px;
  border: 1px solid var(--rule);
  color: var(--ink);
  transition: background .15s, color .15s, border-color .15s;
}
.social-link:hover { text-decoration: none; }
.social-link--facebook  { --sc: #1877f2; }
.social-link--instagram { --sc: #e1306c; }
.social-link--youtube   { --sc: #ff0000; }
.social-link--gofundme  { --sc: #02a95c; }
.social-link--tiktok    { --sc: #010101; }
.social-link:hover { background: var(--sc); color: #fff; border-color: var(--sc); }
.social-link:hover svg { fill: #fff; }

/* ============================================
   RESPONSIVE — Sitio público
   ============================================ */

@media (max-width: 600px) {
  /* Masthead */
  .masthead__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .masthead__title { font-size: 1.4rem; }
  .masthead__subtitle { font-size: .82rem; }
  .masthead__lang { margin-top: .25rem; }

  /* Nav */
  .nav-strip__inner { gap: .75rem; font-size: .82rem; }

  /* Home grid ya tiene 1 columna en 780px */

  /* Artículo */
  .article-header { padding: 1.5rem 0 1rem; }
  .article-body { font-size: 1rem; }
  .article-body img { width: 100%; height: auto; }

  /* Social strip */
  .social-strip__inner { justify-content: flex-start; gap: .4rem .8rem; }
  .social-link { font-size: .76rem; padding: .28rem .6rem; }
  .social-link span { display: none; } /* solo icono en móvil muy pequeño */

  /* Footer */
  .site-footer__inner { flex-direction: column; gap: .4rem; text-align: center; }

  /* Updates */
  .update-item__date { font-size: .72rem; }
}

@media (max-width: 400px) {
  :root { --gutter: 1rem; }
  .masthead { padding: 1rem 0; }
}

/* ============================================
   RESPONSIVE — Admin panel
   ============================================ */

.admin-hamburger { display: none; }
.admin-sidebar-overlay { display: none; }

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: block;
    position: fixed;
    top: 0; left: -280px;
    width: 260px;
    height: 100vh;
    z-index: 1000;
    transition: left .25s ease;
    overflow-y: auto;
  }
  .admin-sidebar.is-open { left: 0; }
  .admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
  }
  .admin-sidebar-overlay.is-open { display: block; }
  .admin-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .4rem;
    border: none;
    background: none;
    flex-shrink: 0;
  }
  .admin-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--admin-text);
    border-radius: 2px;
  }
  .admin-content { padding: 1rem; }
  .admin-topbar { padding: .6rem 1rem; }
  .admin-topbar__title { font-size: 1rem; }
  .data-table thead { display: none; }
  .data-table tr {
    display: block;
    border-bottom: 1px solid var(--admin-border);
    padding: .75rem 0;
  }
  .data-table td { display: block; padding: .2rem 0; border: none; }
}

/* ---- Help page ---- */
.help-tip {
  margin-top: 1rem;
  padding: .6rem .9rem;
  background: rgba(192,57,43,.08);
  border-left: 3px solid var(--admin-accent);
  border-radius: 0 4px 4px 0;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--admin-text);
}
