:root {
  --red: #c8172f;
  --red-dark: #8f1023;
  --navy: #0a2340;
  --ink: #14171f;
  --muted: #606879;
  --line: #dde2ea;
  --paper: #f7f8fb;
  --white: #ffffff;
  --gold: #d6aa4d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(10, 15, 24, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.site-header > nav {
  display: none;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
}

.menu-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.menu-drawer {
  position: fixed;
  z-index: 301;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100vh;
  padding: 20px;
  background: var(--navy);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.28);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.menu-shell.open .menu-drawer {
  transform: translateX(0);
}

.menu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.menu-close {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.menu-links {
  display: grid;
  gap: 2px;
}

.menu-links a,
.menu-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-left: 3px solid transparent;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.menu-links a:hover,
.menu-logout:hover {
  border-left-color: var(--red);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-links img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
}

.menu-logout {
  margin-top: 12px;
  color: var(--gold);
}

body.menu-open {
  overflow: hidden;
}

nav a {
  padding: 10px 9px;
  color: rgba(255, 255, 255, 0.82);
}

nav a:hover,
.nav-action {
  color: var(--white);
}

.nav-action {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.11);
}

.nav-login {
  background: var(--red);
  border-color: var(--red);
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.profile-chip img {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.92) 0%, rgba(5, 8, 14, 0.7) 42%, rgba(5, 8, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 8, 14, 0.75) 0%, rgba(5, 8, 14, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
  padding: 130px clamp(20px, 6vw, 76px) 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 800;
}

.hero-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.light {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.band {
  background: var(--paper);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-strip article {
  min-height: 132px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stats-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.intro,
.section,
.agenda,
.contact,
.assembly,
.vote {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 76px);
}

.section-grid,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.assembly-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
}

.assembly-number {
  display: grid;
  place-content: center;
  min-height: 300px;
  padding: 34px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.assembly-number strong {
  display: block;
  color: var(--gold);
  font-size: clamp(82px, 12vw, 150px);
  line-height: 0.8;
}

.assembly-number span {
  margin-top: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.assembly-card > div:last-child {
  padding: clamp(28px, 5vw, 58px);
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.checks span {
  padding: 14px 16px;
  background: var(--paper);
  border-left: 4px solid var(--red);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.proposal-grid,
.vote-grid,
.news-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proposal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proposal-grid article,
.vote-grid article,
.news-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.proposal-grid article span,
.news-grid article span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.vote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vote-grid article {
  background: var(--white);
  border-top: 5px solid var(--red);
}

.vote-grid strong {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
}

.news-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.news-grid article {
  min-height: 260px;
}

.featured-news {
  background: var(--navy) !important;
}

.featured-news h3,
.featured-news p {
  color: var(--white);
}

.featured-news p {
  opacity: 0.78;
}

.featured-news a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
}

.inline-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--red);
  color: var(--navy);
  font-weight: 800;
}

.mobilization {
  background: var(--white);
}

.mobilization-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.signature-progress {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 28px;
  padding: 22px;
  background: var(--navy);
  color: var(--white);
}

.signature-progress strong {
  display: block;
  color: var(--gold);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.signature-progress span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-bar {
  height: 16px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: var(--red);
}

.next-event {
  margin-top: 18px;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
  border-left: 6px solid var(--red);
}

.next-event span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-event strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
}

.next-event p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.inner-progress {
  max-width: 980px;
}

.mobilization-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
}

.mobilization-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 800;
}

.inner-page {
  min-height: 100vh;
  background: var(--white);
}

.inner-hero {
  padding: clamp(130px, 14vw, 190px) clamp(20px, 6vw, 76px) clamp(64px, 8vw, 110px);
  background:
    linear-gradient(90deg, rgba(10, 35, 64, 0.95), rgba(10, 35, 64, 0.78)),
    url("hero-talleres-es-la-docta.png") center / cover;
  color: var(--white);
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
}

.inner-hero p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.inner-section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 76px);
}

.detail-grid,
.news-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid article,
.news-list article {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
}

.detail-grid span,
.news-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.long-points {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.long-points article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
}

.long-points strong {
  color: var(--red);
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
}

.proposal-grid.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-list {
  grid-template-columns: 1fr;
  max-width: 1040px;
}

.news-list article {
  min-height: 0;
}

.news-list a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-weight: 800;
}

.news-actions {
  margin-bottom: 18px;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.news-filters button {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.news-filters button.active {
  background: var(--navy);
  color: var(--white);
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--paper);
}

.news-card-content {
  padding: 24px;
}

.news-card span,
.news-card > span {
  display: block;
  margin: 24px 24px 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card h3,
.news-card p,
.news-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.news-card h3 {
  font-size: 24px;
}

.news-card a {
  display: inline-flex;
  margin-top: 8px;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 800;
}

.article-page {
  min-height: 100vh;
  background: var(--white);
}

.article-hero {
  padding: clamp(130px, 14vw, 190px) clamp(20px, 6vw, 76px) clamp(42px, 7vw, 80px);
  background: var(--navy);
  color: var(--white);
}

.article-hero span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

.article-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.article-author img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.article-author small,
.article-author strong {
  display: block;
}

.article-author small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-author strong {
  color: var(--white);
}

.article-body {
  max-width: 860px;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 6vw, 76px);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-body h2 {
  margin-top: 34px;
}

.article-body img {
  max-width: 100%;
  margin: 24px 0;
}

.article-loading {
  padding: 160px clamp(20px, 6vw, 76px);
  color: var(--muted);
}

.editor-page {
  background: var(--paper);
}

.editor-shell {
  padding: clamp(92px, 10vw, 132px) clamp(20px, 6vw, 76px) clamp(58px, 8vw, 96px);
}

.editor-heading {
  margin-bottom: 22px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--navy);
}

.editor-heading h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
}

.editor-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.editor-form {
  display: grid;
  gap: 18px;
}

.ql-toolbar.ql-snow {
  border-color: var(--line);
  background: var(--paper);
}

.ql-container.ql-snow {
  height: 360px;
  min-height: 0;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.ql-editor {
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  font-size: 17px;
  line-height: 1.7;
}

.empty-state {
  grid-column: 1 / -1;
  padding: clamp(28px, 5vw, 52px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.empty-state h3 {
  margin-bottom: 8px;
}

.empty-state p {
  margin-bottom: 0;
}

.pillars article {
  min-height: 280px;
  padding: 30px;
  background: var(--white);
}

.pillars span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--red);
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 240px;
  padding: 26px;
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--red);
}

.timeline strong {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 26px;
}

.timeline h3,
.timeline p {
  color: var(--white);
}

.timeline p {
  opacity: 0.78;
}

.participation-list {
  display: grid;
  gap: 12px;
}

.participation-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 18px 20px;
  border-left: 5px solid var(--red);
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
}

.participation-list a:hover {
  background: #eef2f7;
}

.contact {
  align-items: center;
  background: var(--navy);
}

.contact-logo {
  display: block;
  width: min(190px, 54vw);
  height: auto;
  margin-bottom: 24px;
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact p {
  opacity: 0.76;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
}

.contact-guest {
  display: grid;
  gap: 16px;
}

.contact-known {
  padding: 18px;
  background: var(--paper);
  border-left: 5px solid var(--red);
}

.contact-known span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-known strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.contact-known p {
  margin: 6px 0 8px;
  font-size: 14px;
}

.contact-known a {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--red);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(200, 23, 47, 0.18);
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.profile-callout {
  display: block;
  padding: 15px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.account-page {
  min-height: 100vh;
  background: var(--paper);
}

.account-header {
  position: sticky;
}

.account-shell,
.profile-shell {
  padding: clamp(92px, 10vw, 132px) clamp(20px, 6vw, 76px) clamp(58px, 8vw, 96px);
}

.account-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(10, 35, 64, 0.94), rgba(10, 35, 64, 0.75)),
    url("hero-talleres-es-la-docta.png") center / cover;
}

.account-intro {
  max-width: 760px;
  color: var(--white);
}

.account-intro h1,
.profile-summary h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
}

.account-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.auth-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}

.auth-tab {
  min-height: 46px;
  border: 0;
  background: var(--paper);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.active {
  background: var(--navy);
  color: var(--white);
}

.auth-form {
  display: none;
  gap: 16px;
}

.auth-form.active {
  display: grid;
}

.form-two,
.form-three {
  display: grid;
  gap: 16px;
}

.form-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.google-button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.auth-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-note[data-type="warning"] {
  color: var(--red);
}

.auth-note[data-type="success"] {
  color: #1b6b3a;
}

.profile-shell {
  background: var(--paper);
}

.profile-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px minmax(260px, 0.38fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  max-width: 1220px;
  margin: 0 auto 28px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--navy);
}

.profile-summary p {
  color: rgba(255, 255, 255, 0.74);
}

.profile-photo-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.profile-photo-card img {
  width: 138px;
  height: 138px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.avatar-upload {
  display: block;
  color: var(--white);
  text-align: center;
  cursor: pointer;
}

.avatar-upload input {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.eligibility-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px;
  background: var(--white);
  border-top: 5px solid var(--gold);
}

.eligibility-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eligibility-card strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
}

.eligibility-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.eligibility-card[data-status="ok"] {
  border-top-color: #1b6b3a;
}

.eligibility-card[data-status="warning"] {
  border-top-color: var(--red);
}

.profile-form {
  display: grid;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.password-form {
  margin-top: 18px;
}

.password-form .form-two label + label {
  margin-top: 0;
}

.password-form .profile-actions {
  margin-top: 26px;
  padding: 0;
  background: transparent;
  border: 0;
}

.password-form .auth-note {
  margin: 0;
}

.profile-section-copy {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.profile-section {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
}

.profile-section h2 {
  margin-bottom: 22px;
  font-size: clamp(24px, 3vw, 34px);
}

.profile-section label + label,
.profile-section .form-three + .form-three,
.profile-section .form-three + label {
  margin-top: 16px;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.logout-button {
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-page {
  min-height: 100vh;
  background: var(--paper);
}

.admin-shell {
  padding: clamp(92px, 10vw, 132px) clamp(20px, 6vw, 76px) clamp(58px, 8vw, 96px);
}

.admin-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--navy);
}

.admin-heading h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
}

.admin-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.admin-stat {
  display: grid;
  place-content: center;
  padding: 22px;
  background: var(--white);
  text-align: center;
}

.admin-stat span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-stat strong {
  color: var(--navy);
  font-size: 56px;
  line-height: 1;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-subtitle {
  margin: 0;
  padding: 20px 20px 0;
  font-size: 24px;
}

.messages-wrap .admin-table {
  min-width: 760px;
}

.table-action {
  border: 0;
  margin-left: 10px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.table-action.danger {
  color: var(--red);
}

.category-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 20px;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 20px;
}

.category-list span {
  padding: 8px 10px;
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.admin-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted);
  font-size: 14px;
}

.admin-table td strong {
  display: block;
  color: var(--navy);
}

.admin-table td span {
  display: block;
  margin-top: 4px;
}

.admin-note {
  margin: 16px 0 0;
  font-size: 14px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 76px);
  background: #080d16;
}

.footer-logo {
  display: block;
  width: 160px;
  max-height: 72px;
  object-fit: contain;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

.signature-page {
  min-height: 100vh;
  background: #f2f5f8;
}

.signature-main,
.signature-campaign-main,
#signatureCampaign {
  padding: 128px clamp(20px, 6vw, 76px) 64px;
}

.signature-intro {
  max-width: 820px;
  margin-bottom: 28px;
}

.signature-intro h1,
.signature-hero h1 {
  margin: 6px 0 12px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

.signature-intro p,
.signature-hero p,
.sensitive-note {
  color: var(--muted);
  line-height: 1.65;
}

.campaign-card-grid,
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.campaign-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.campaign-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.campaign-card-body {
  padding: 20px;
}

.campaign-card-body > span,
.campaign-admin-list article span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-card h3 {
  margin: 8px 0;
  color: var(--navy);
}

.campaign-card p {
  min-height: 68px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.campaign-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
}

.campaign-progress,
.signature-public-progress {
  display: flex;
  align-items: center;
  gap: 14px;
}

.campaign-progress {
  justify-content: space-between;
}

.campaign-progress strong,
.campaign-progress small,
.signature-public-progress strong,
.signature-public-progress span {
  display: block;
}

.campaign-progress strong,
.signature-public-progress strong {
  color: var(--navy);
}

.campaign-progress small,
.signature-public-progress span {
  color: var(--muted);
  font-size: 11px;
}

.progress-bar {
  height: 8px;
  overflow: hidden;
  background: #dce3ea;
  border-radius: 20px;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
}

.campaign-card .progress-bar {
  margin-top: 12px;
}

.signature-hero {
  padding: 30px;
  background: #fff;
  border-left: 5px solid var(--gold);
}

.signature-public-progress {
  margin: 24px 0 12px;
}

.signature-public-progress .progress-bar {
  flex: 1;
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 20px;
  margin-top: 20px;
}

.legal-box,
.signature-form {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.legal-box h2,
.signature-form h2,
.campaign-admin-form h3 {
  margin: 4px 0 12px;
  color: var(--navy);
}

.legal-copy {
  color: var(--muted);
  line-height: 1.65;
  white-space: pre-line;
}

.signature-form label,
.campaign-admin-form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.signature-form input,
.campaign-admin-form input,
.campaign-admin-form select,
.campaign-admin-form textarea,
.adhesion-filters input,
.adhesion-filters select,
.adhesion-table select,
.adhesion-table textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px;
  color: var(--navy);
  font: inherit;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.declaration-check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px !important;
}

.declaration-check input {
  width: auto;
  margin-top: 2px;
}

.signature-pad-wrap {
  margin: 18px 0;
}

.signature-pad-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--navy);
}

.signature-pad-head button,
.table-action {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
}

#signaturePad {
  display: block;
  width: 100%;
  height: 180px;
  border: 1px solid #aebbc8;
  background: #fbfcfd;
  touch-action: none;
}

.signatures-admin {
  margin-top: 20px;
}

.admin-section-head,
.export-actions,
.campaign-admin-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-section-head {
  padding: 20px;
}

.admin-section-head p {
  margin: 5px 0 0;
  color: var(--muted);
}

.switch-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.switch-control input {
  position: absolute;
  opacity: 0;
}

.switch-control span {
  width: 40px;
  height: 22px;
  padding: 3px;
  background: #b4c0ca;
  border-radius: 20px;
}

.switch-control span::after {
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  content: "";
  transition: transform 160ms ease;
}

.switch-control input:checked + span {
  background: #267453;
}

.switch-control input:checked + span::after {
  transform: translateX(18px);
}

.campaign-admin-form {
  padding: 0 20px 20px;
  border-top: 1px solid var(--line);
}

.campaign-admin-list {
  border-top: 1px solid var(--line);
}

.campaign-admin-list article {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.campaign-admin-list h3,
.campaign-admin-list p {
  margin: 5px 0;
}

.adhesion-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.adhesion-stats article {
  padding: 18px;
  background: #fff;
}

.adhesion-stats strong,
.adhesion-stats span {
  display: block;
}

.adhesion-stats strong {
  color: var(--navy);
  font-size: 26px;
}

.adhesion-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.daily-evolution {
  padding: 16px 20px 0;
}

.daily-evolution h3 {
  color: var(--navy);
}

.daily-evolution div {
  display: grid;
  grid-template-columns: 96px minmax(20px, 1fr) 30px;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.daily-evolution i {
  height: 8px;
  background: var(--gold);
}

.embedded-table {
  margin-top: 0;
  border-right: 0;
  border-left: 0;
}

.empty-state,
.article-loading {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.admin-dashboard-page {
  min-height: 100vh;
  background: #eef2f5;
}

.admin-dashboard-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 71px);
  padding: 22px 14px;
  background: #0a2340;
  color: #fff;
}

.admin-sidebar-title {
  padding: 4px 10px 20px;
}

.admin-sidebar-title span,
.admin-sidebar-title strong {
  display: block;
}

.admin-sidebar-title span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-sidebar-title strong {
  margin-top: 4px;
  font-size: 19px;
}

.admin-module-nav {
  display: grid;
  gap: 3px;
}

.admin-module-nav button {
  border: 0;
  padding: 11px 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.admin-module-nav button:hover,
.admin-module-nav button.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-back-link {
  margin-top: auto;
  padding: 16px 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.admin-workspace {
  min-width: 0;
  padding: 26px clamp(16px, 3vw, 36px) 56px;
}

.admin-workspace-head,
.admin-surface-head,
.document-actions,
.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-workspace-head h1 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
}

.admin-module-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-module-status[data-type="success"] {
  color: #267453;
}

.admin-module-status[data-type="warning"] {
  color: var(--red);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.dashboard-metrics article {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.dashboard-metrics span,
.dashboard-metrics strong {
  display: block;
}

.dashboard-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-metrics strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 25px;
}

.admin-surface {
  overflow: hidden;
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.admin-surface-head {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-surface-head h2,
.admin-surface-head p {
  margin: 0;
}

.admin-surface-head h2 {
  color: var(--navy);
  font-size: 20px;
}

.admin-surface-head p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-activity div,
.admin-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-activity strong,
.dashboard-activity span {
  display: block;
}

.dashboard-activity span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.admin-compact-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.admin-compact-filters label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.admin-compact-filters input,
.admin-compact-filters select,
.admin-table select {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  padding: 9px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.admin-table-scroll {
  overflow-x: auto;
}

.admin-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 16px;
}

.admin-inline-form {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.admin-inline-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  padding: 10px;
}

.dashboard-campaign-form {
  border-top: 0;
}

.campaign-config-fieldset {
  margin: 18px 0 4px;
  padding: 16px;
  border: 1px solid var(--line);
}

.campaign-config-fieldset legend {
  padding: 0 6px;
  color: var(--navy);
  font-weight: 900;
}

.campaign-config-fieldset p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.campaign-config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 14px;
  margin: 8px 0;
}

.campaign-config-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.campaign-config-grid input {
  width: auto;
}

.requirement-list {
  color: var(--muted);
  line-height: 1.7;
}

.settings-list {
  padding: 8px 18px;
}

.settings-row {
  padding: 14px 0;
}

.settings-row small,
.settings-row strong {
  display: block;
}

.settings-row small {
  margin-top: 4px;
  color: var(--muted);
}

.adhesion-detail-dialog {
  width: min(1180px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  border: 0;
  padding: 28px;
  background: #f5f7f9;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.adhesion-detail-dialog::backdrop {
  background: rgba(4, 13, 25, 0.72);
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 23px;
}

.detail-heading h2 {
  margin: 4px 0 6px;
  color: var(--navy);
  font-size: 30px;
}

.detail-heading p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.detail-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-data-grid div {
  padding: 14px;
  background: #fff;
}

.detail-data-grid span,
.detail-data-grid strong {
  display: block;
}

.detail-data-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-data-grid strong {
  margin-top: 5px;
  color: var(--navy);
  overflow-wrap: anywhere;
}

.document-section {
  margin-top: 22px;
}

.document-section h3 {
  color: var(--navy);
  text-transform: uppercase;
}

.document-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.document-preview-card {
  min-width: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.document-preview-card.is-expanded {
  grid-column: 1 / -1;
}

.document-preview-card h4 {
  margin: 0 0 10px;
  color: var(--navy);
}

.document-preview {
  height: 220px;
  overflow: hidden;
  background: #e9edf1;
}

.document-preview img,
.document-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.document-preview-card.is-expanded .document-preview {
  height: min(72vh, 720px);
}

.document-actions {
  margin-top: 10px;
}

.document-actions button,
.document-actions a {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
}

.document-preview-card.is-missing {
  color: var(--muted);
  background: #fafbfc;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .section-grid,
  .split,
  .contact,
  .account-shell,
  .profile-summary,
  .admin-heading,
  .admin-filters,
  .signature-progress {
    grid-template-columns: 1fr;
  }

  .category-form {
    grid-template-columns: 1fr;
  }

  .pillars,
  .timeline,
  .proposal-grid,
  .vote-grid,
  .news-grid,
  .stats-strip,
  .mobilization-grid,
  .detail-grid,
  .proposal-grid.expanded,
  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assembly-card {
    grid-template-columns: 1fr;
  }

  .form-two,
  .form-three,
  .campaign-config-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card-grid,
  .campaign-grid,
  .signature-layout {
    grid-template-columns: 1fr;
  }

  .document-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .admin-sidebar {
    display: block;
    align-self: start;
    min-height: 0;
    height: auto;
    padding: 12px;
  }

  .admin-sidebar-title,
  .admin-back-link {
    display: none;
  }

  .admin-module-nav {
    display: flex;
    overflow-x: auto;
  }

  .admin-module-nav button {
    flex: 0 0 auto;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-two-columns {
    grid-template-columns: 1fr;
  }

  .detail-data-grid,
  .document-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pillars,
  .timeline,
  .proposal-grid,
  .vote-grid,
  .news-grid,
  .stats-strip,
  .checks,
  .mobilization-grid,
  .detail-grid,
  .proposal-grid.expanded,
  .news-card-grid,
  .long-points article {
    grid-template-columns: 1fr;
  }

  .admin-section-head,
  .export-actions,
  .campaign-admin-list article {
    align-items: stretch;
    flex-direction: column;
  }

  .adhesion-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-workspace {
    padding: 18px 12px 42px;
  }

  .admin-workspace-head,
  .admin-surface-head,
  .document-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-compact-filters,
  .detail-data-grid,
  .document-preview-grid {
    grid-template-columns: 1fr;
  }

  .adhesion-detail-dialog {
    padding: 16px;
  }

  .stats-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pillars article,
  .timeline article,
  .proposal-grid article,
  .vote-grid article,
  .news-grid article {
    min-height: auto;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 8px;
  }
}
