/* ============================================================
   Luz y Amor — Estilos principales
   Los colores se definen como CSS custom props desde PHP/admin
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Nunito:wght@300;400;500;600&display=swap');

/* ── Reset y base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Gill Sans', Calibri, sans-serif;
  background-color: var(--bg, #FDF6EC);
  color: var(--text, #3D2B1F);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.main-content { flex: 1; }

/* ── Tipografía ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  color: var(--accent, #8B4513);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; }
h3 { font-size: 1.2rem; font-weight: 600; }

a { color: var(--primary, #C4956A); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent, #8B4513); }

p { margin-bottom: .8rem; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container.narrow { max-width: 700px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.text-center { text-align: center; }
.flex-1 { flex: 1; }

/* ── Navbar ── */
.navbar {
  background: var(--bg, #FDF6EC);
  border-bottom: 1px solid var(--border, rgba(196,149,106,.25));
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow, rgba(139,69,19,.08));
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 60px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent, #8B4513);
  text-decoration: none;
}
.brand-symbol { font-size: 1.6rem; color: var(--primary, #C4956A); }
.brand-symbol.large { font-size: 2.4rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin-left: auto;
}
.nav-menu a {
  padding: .4rem .75rem;
  border-radius: 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text, #3D2B1F);
  transition: background .2s, color .2s;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(196,149,106,.15);
  color: var(--accent, #8B4513);
}
.btn-nav-register {
  background: var(--primary, #C4956A) !important;
  color: #fff !important;
}
.btn-nav-register:hover { background: var(--accent, #8B4513) !important; }
.btn-nav-login {
  border: 1px solid var(--primary, #C4956A) !important;
}
.nav-admin { background: rgba(139,69,19,.1) !important; }
.nav-logout { color: #a0522d !important; }
.lang-switcher a { font-size: .8rem; opacity: .7; }
.lang-switcher a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent, #8B4513);
  border-radius: 2px;
  transition: transform .3s;
}

/* ── Botones ── */
.btn {
  display: inline-block;
  padding: .55rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-align: center;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
}
.btn-primary  { background: var(--primary, #C4956A); color: #fff; }
.btn-primary:hover  { background: var(--accent, #8B4513); color: #fff; }
.btn-accent   { background: var(--accent, #8B4513); color: #fff; }
.btn-accent:hover   { background: #6B3410; color: #fff; }
.btn-outline  { border-color: var(--primary, #C4956A); color: var(--primary, #C4956A); background: transparent; }
.btn-outline:hover  { background: var(--primary, #C4956A); color: #fff; }
.btn-success  { background: #5a9a5a; color: #fff; }
.btn-danger   { background: #c0392b; color: #fff; }
.btn-muted    { background: #ccc; color: #666; }
.btn-block    { display: block; width: 100%; }
.btn-lg       { padding: .75rem 2rem; font-size: 1rem; }
.btn-sm       { padding: .3rem .9rem; font-size: .82rem; }
.btn-xs       { padding: .2rem .6rem; font-size: .78rem; border-radius: 12px; }

/* ── Formularios ── */
.form-group    { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .9rem; }
.form-control {
  width: 100%;
  padding: .6rem .9rem;
  border: 1.5px solid rgba(196,149,106,.4);
  border-radius: 8px;
  background: #fff9f3;
  color: var(--text, #3D2B1F);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary, #C4956A);
  box-shadow: 0 0 0 3px rgba(196,149,106,.2);
}
.form-hint { font-size: .8rem; color: #8B7355; margin-top: .25rem; display: block; }
.form-divider { border: none; border-top: 1px solid rgba(196,149,106,.2); margin: 1.5rem 0; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-row .form-group { flex: 1; min-width: 200px; }
.form-actions { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.form-check-group { display: flex; flex-direction: column; gap: .5rem; }
.check-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-weight: 400; }
.check-label input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--primary, #C4956A); }

/* ── Alertas ── */
.alert {
  padding: .8rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: .92rem;
}
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.alert-error   { background: #fce4e4; border: 1px solid #ef9a9a; color: #b71c1c; }
.alert-info    { background: #e8f4fd; border: 1px solid #90caf9; color: #0d47a1; }

/* ── Cards ── */
.card {
  background: #fff9f3;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 16px var(--shadow, rgba(139,69,19,.08));
  border: 1px solid rgba(196,149,106,.15);
  margin-bottom: 1.5rem;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.form-card { max-width: 600px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FDF6EC 0%, #F0E0C0 40%, #E8C99A 80%, #C4956A 100%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(196,149,106,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: 700px;
}
.hero-symbol {
  font-size: 4rem;
  color: var(--accent, #8B4513);
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
  display: block;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent, #8B4513);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(61,43,31,.75);
  margin-bottom: 2rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Secciones de la landing ── */
.section-message-preview,
.section-about,
.section-goal,
.section-join {
  padding: 4rem 1.25rem;
}
.section-about { background: rgba(232,201,154,.15); }
.section-goal  { background: linear-gradient(135deg, rgba(196,149,106,.12), rgba(139,69,19,.08)); text-align: center; }
.section-join  { background: var(--accent, #8B4513); color: #fff; }
.section-join h2, .section-join p { color: #fff; }
.section-join .btn-primary { background: #fff; color: var(--accent, #8B4513); }

.page-hero { padding: 2rem 0 1.5rem; }

/* ── About features ── */
.about-text h2 { margin-bottom: 1rem; }
.about-text p   { color: rgba(61,43,31,.8); }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-item strong { display: block; }
.feature-item p { font-size: .9rem; color: rgba(61,43,31,.7); margin: 0; }

/* ── Goal bar ── */
.goal-bar-wrap {
  height: 14px;
  background: rgba(196,149,106,.2);
  border-radius: 7px;
  overflow: hidden;
  margin: 1rem 0 .5rem;
}
.goal-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary, #C4956A), var(--accent, #8B4513));
  border-radius: 7px;
  transition: width 1s ease;
}
.goal-text { font-size: .92rem; color: rgba(61,43,31,.7); margin-bottom: 1.5rem; }
.goal-widget { margin-bottom: 2rem; }

/* ── Messages ── */
.message-card {
  background: #fff9f3;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(139,69,19,.1);
  border: 1px solid rgba(196,149,106,.2);
  position: relative;
}
.message-card.featured {
  border-left: 4px solid var(--primary, #C4956A);
}
.message-card.small {
  padding: 1.25rem;
}
.message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.message-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary, #C4956A);
}
.message-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text, #3D2B1F);
  border: none;
  margin: 0 0 1rem;
  line-height: 1.65;
}
.message-author {
  font-style: italic;
  color: rgba(61,43,31,.65);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.message-section {
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.message-section.reflection { background: rgba(196,149,106,.12); }
.message-section.practice   { border-left: 3px solid var(--primary, #C4956A); background: rgba(196,149,106,.07); }
.message-section h3 { font-size: 1rem; margin-bottom: .4rem; }
.message-framework { font-size: .8rem; color: rgba(61,43,31,.5); margin-top: 1rem; font-style: italic; }
.message-cta-hint { font-size: .9rem; color: rgba(61,43,31,.65); margin-bottom: 1rem; }
.message-empty { color: rgba(61,43,31,.5); font-style: italic; padding: 2rem 0; text-align: center; }
.message-excerpt { font-style: italic; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; color: rgba(61,43,31,.75); }
.category-icon { font-size: 1.2rem; }
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .7rem;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 600;
  background: rgba(196,149,106,.15);
  color: var(--accent, #8B4513);
}
.messages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.recent-messages { margin-top: 2rem; }
.recent-messages h2 { margin-bottom: 1rem; }

/* ── Dashboard ── */
.dashboard-page { padding: 2rem 1.25rem; }
.dash-header { margin-bottom: 2rem; }
.dash-welcome { color: rgba(61,43,31,.65); margin: .25rem 0 0; }
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}
.sidebar-card {
  background: #fff9f3;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(196,149,106,.2);
  margin-bottom: 1rem;
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.sidebar-card p  { font-size: .88rem; color: rgba(61,43,31,.7); margin-bottom: .75rem; }

/* ── Auth pages ── */
.auth-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.25rem;
  min-height: calc(100vh - 200px);
}
.auth-card {
  background: #fff9f3;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 30px rgba(139,69,19,.12);
  border: 1px solid rgba(196,149,106,.2);
}
.auth-symbol {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: .5rem;
  display: block;
}
.auth-title    { text-align: center; margin-bottom: .25rem; }
.auth-subtitle { text-align: center; color: rgba(61,43,31,.6); margin-bottom: 1.5rem; font-size: .92rem; }
.auth-form     { margin-bottom: 1rem; }
.auth-alt      { text-align: center; font-size: .88rem; color: rgba(61,43,31,.65); margin-top: .75rem; }
.auth-forgot   { text-align: center; font-size: .85rem; margin-top: .75rem; }
.captcha-group { background: rgba(196,149,106,.08); padding: .75rem 1rem; border-radius: 8px; }
.captcha-input { max-width: 120px; }

/* ── Donate page ── */
.donate-page { padding: 2rem 1.25rem; }
.donate-card { padding: 2rem; }
.amount-selector { margin-bottom: 1.5rem; }
.amount-presets { display: flex; flex-wrap: wrap; gap: .5rem; margin: .5rem 0; }
.amount-btn {
  padding: .45rem 1rem;
  border-radius: 20px;
  border: 2px solid var(--primary, #C4956A);
  background: transparent;
  color: var(--primary, #C4956A);
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Nunito', sans-serif;
}
.amount-btn:hover, .amount-btn.selected {
  background: var(--primary, #C4956A);
  color: #fff;
}
.amount-input { max-width: 200px; margin-top: .5rem; }
.donor-info { margin-bottom: 1.5rem; padding: 1rem; background: rgba(196,149,106,.07); border-radius: 8px; }
.payment-methods { margin-top: 1.5rem; }
.method-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin: .5rem 0 1rem; }
.method-tab {
  padding: .45rem 1rem;
  border-radius: 20px;
  border: 2px solid rgba(196,149,106,.4);
  background: transparent;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.method-tab:hover, .method-tab.active {
  border-color: var(--primary, #C4956A);
  background: rgba(196,149,106,.12);
  color: var(--accent, #8B4513);
}
.method-panel { display: none; padding-top: 1rem; }
.method-panel.active { display: block; }
.manual-instructions {
  background: rgba(196,149,106,.08);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: .92rem;
}
.account-box {
  background: rgba(139,69,19,.1);
  padding: .6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: .75rem;
  font-size: .95rem;
}
.method-note { font-size: .85rem; color: rgba(61,43,31,.65); margin-bottom: .75rem; }

/* ── Success/failure ── */
.success-card {
  background: #fff9f3;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto;
  box-shadow: 0 4px 30px rgba(139,69,19,.1);
}
.success-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.success-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }

/* ── Admin ── */
.admin-page { padding: 2rem 1.25rem; }
.admin-page h1 { margin-bottom: 1rem; }
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196,149,106,.2);
}
.admin-nav a {
  padding: .35rem .9rem;
  border-radius: 16px;
  font-size: .88rem;
  font-weight: 600;
  border: 1px solid rgba(196,149,106,.3);
  color: var(--text);
}
.admin-nav a:hover, .admin-nav a.active {
  background: var(--primary, #C4956A);
  color: #fff;
  border-color: var(--primary);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: #fff9f3;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(196,149,106,.2);
  text-align: center;
}
.stat-card.stat-alert { border-color: #e74c3c; }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--accent, #8B4513); font-family: 'Cormorant Garamond', Georgia, serif; }
.stat-label  { font-size: .82rem; color: rgba(61,43,31,.6); margin-top: .25rem; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-top: .5rem;
}
.admin-table th {
  text-align: left;
  padding: .7rem .75rem;
  background: rgba(196,149,106,.1);
  border-bottom: 2px solid rgba(196,149,106,.2);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
}
.admin-table td {
  padding: .6rem .75rem;
  border-bottom: 1px solid rgba(196,149,106,.12);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(196,149,106,.04); }
.row-muted td { opacity: .55; }
.td-excerpt { max-width: 300px; }
.td-notes   { max-width: 200px; font-size: .82rem; color: rgba(61,43,31,.6); }

.badge {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-active, .badge-completed { background: #e8f5e9; color: #2e7d32; }
.badge-pending  { background: #fff8e1; color: #f57f17; }
.badge-failed   { background: #fce4e4; color: #b71c1c; }
.badge-suspended { background: #f3e5f5; color: #6a1b9a; }
.badge-user  { background: rgba(196,149,106,.15); color: var(--accent); }
.badge-admin { background: rgba(139,69,19,.15); color: var(--accent); }

.pagination {
  display: flex;
  gap: .4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.pagination a {
  padding: .3rem .7rem;
  border-radius: 6px;
  border: 1px solid rgba(196,149,106,.3);
  font-size: .85rem;
}
.pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.search-form { display: flex; gap: .75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.search-form .form-control { max-width: 350px; }
.filter-tabs { display: flex; gap: .4rem; flex-wrap: wrap; }

.settings-group h2 { margin-bottom: 1.25rem; font-size: 1.1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(196,149,106,.2); }
.color-field { display: flex; gap: .75rem; align-items: center; }
.color-field input[type=color] { width: 50px; height: 38px; padding: 2px; border-radius: 6px; border: 1.5px solid rgba(196,149,106,.4); cursor: pointer; }
.color-hex { max-width: 120px; }
.sticky-save {
  position: sticky;
  bottom: 1rem;
  background: var(--bg, #FDF6EC);
  padding: .75rem 0;
  z-index: 10;
}

/* ── Profile ── */
.page-title { margin-bottom: 1.5rem; padding-top: 2rem; }
.narrow.container { padding-top: 1rem; padding-bottom: 3rem; }

/* ── Footer ── */
.site-footer {
  background: linear-gradient(135deg, rgba(139,69,19,.08), rgba(196,149,106,.12));
  border-top: 1px solid rgba(196,149,106,.2);
  padding: 2.5rem 1.25rem 1rem;
  margin-top: auto;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.footer-brand { text-align: center; }
.footer-tagline { font-style: italic; font-size: .88rem; color: rgba(61,43,31,.6); margin-top: .5rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.footer-links a { font-size: .88rem; color: rgba(61,43,31,.65); }
.footer-links a:hover { color: var(--primary); }
.footer-lang { display: flex; gap: .75rem; align-items: center; }
.footer-lang a { font-size: .85rem; color: rgba(61,43,31,.5); }
.footer-lang a.active { color: var(--accent); font-weight: 600; }
.footer-copy { text-align: center; font-size: .8rem; color: rgba(61,43,31,.45); padding-top: 1rem; border-top: 1px solid rgba(196,149,106,.15); max-width: 1100px; margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg, #FDF6EC);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(196,149,106,.2);
    box-shadow: 0 8px 20px rgba(139,69,19,.1);
    gap: .25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .6rem 1rem; }
  .navbar { position: relative; }

  .grid-2 { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .form-row { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 70vh; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .auth-card { padding: 1.75rem 1.25rem; }
  .message-card.featured { padding: 1.25rem; }
  .admin-table { font-size: .8rem; }
  .admin-table td, .admin-table th { padding: .5rem; }
}
