:root {
  --white: #ffffff;
  --soft: #f8fcf7;
  --mint-1: #effaf1;
  --mint-2: #e4f7e8;
  --mint-3: #d8f1de;
  --mint-4: #c8ead1;
  --mint-5: #b5e2c2;
  --green-900: #113b22;
  --green-800: #19502e;
  --green-700: #24703f;
  --green-600: #3a9a57;
  --green-500: #74bd83;
  --yellow: #f5cf3a;
  --ink: #14251a;
  --muted: #607065;
  --line: #dceee0;
  --shadow: 0 24px 70px rgba(17, 59, 34, 0.13);
  --soft-shadow: 0 14px 36px rgba(17, 59, 34, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 14px clamp(14px, 3vw, 34px) auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 238, 224, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(17, 59, 34, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 12px;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

.site-nav a:hover {
  background: var(--mint-2);
}

.nav-cta {
  color: var(--white);
  background: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--mint-2);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 122px clamp(20px, 5.5vw, 86px) 138px;
  overflow: hidden;
  color: var(--white);
  background: #c8f1d0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 99, 52, 0.62) 0%, rgba(144, 211, 149, 0.34) 44%, rgba(203, 244, 211, 0.14) 100%),
    linear-gradient(0deg, rgba(219, 249, 223, 0.18), rgba(219, 249, 223, 0.18));
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "PROGRESEMOS";
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  top: 10vh;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.88) brightness(1.12);
}

.hero-copy,
.hero-strip {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7d64a;
  text-shadow: 0 2px 18px rgba(17, 59, 34, 0.18);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
  text-shadow: 0 10px 34px rgba(17, 59, 34, 0.22);
  font-size: clamp(4.8rem, 10.5vw, 9.6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-slogan {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--yellow);
  text-shadow: 0 8px 28px rgba(17, 59, 34, 0.22);
  font-size: clamp(1.75rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 1.02;
}

.hero-text {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 59, 34, 0.14);
}

.button.primary {
  color: var(--green-900);
  background: var(--yellow);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 22px;
  left: clamp(18px, 4vw, 58px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-strip a {
  padding: 18px 14px;
  color: var(--white);
  text-align: center;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(26, 112, 55, 0.22);
}

.hero-strip a:last-child {
  border-right: 0;
}

.hero-strip a:hover {
  background: rgba(255, 209, 46, 0.28);
}

.section {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5.5vw, 78px);
}

.section-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-intro.compact {
  max-width: 680px;
}

.section-intro h2 {
  margin-bottom: 14px;
  color: var(--green-900);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-intro p:not(.section-label) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.07rem;
}

.trajectory {
  background:
    linear-gradient(180deg, var(--white), var(--mint-1));
}

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

.story-card,
.pillar,
.campaign-form {
  border: 1px solid rgba(220, 238, 224, 0.9);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.story-card {
  min-height: 260px;
  padding: 24px;
}

.story-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 14px;
  font-weight: 900;
}

.story-card h3,
.pillar h3,
.campaign-form h3,
.province-panel h3 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.08;
}

.story-card p,
.pillar p {
  color: var(--muted);
}

.tone-1 {
  background: #f0faf2;
}

.tone-2 {
  background: #e8f8eb;
}

.tone-3 {
  background: #ddf3e3;
}

.tone-4 {
  background: #d1edda;
}

.timeline-block {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
}

.timeline-block h3 {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--green-900);
  font-size: clamp(1.65rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 4%;
  left: 4%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
}

.timeline article {
  position: relative;
  padding-top: 58px;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 8px solid var(--green-600);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(116, 189, 131, 0.16);
}

.timeline time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-700);
  font-weight: 900;
}

.timeline h4 {
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: 1.1rem;
}

.timeline p {
  color: var(--muted);
}

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

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

.pillar {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 24px;
  background: linear-gradient(180deg, var(--mint-1), var(--white));
}

.pillar:nth-child(2) {
  background: linear-gradient(180deg, var(--mint-2), var(--white));
}

.pillar:nth-child(3) {
  background: linear-gradient(180deg, var(--mint-3), var(--white));
}

.pillar:nth-child(4) {
  background: linear-gradient(180deg, var(--mint-4), var(--white));
}

.pillar-tag,
.form-badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.pillar a {
  margin-top: auto;
  color: var(--green-800);
  font-weight: 900;
}

.pillar a:hover {
  color: var(--green-600);
}

.province-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(300px, 1.35fr);
  gap: 24px;
  margin-top: 20px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--green-900);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.province-panel h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.province-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.province-button {
  padding: 10px 13px;
  color: var(--green-900);
  background: var(--mint-2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.province-button:hover,
.province-button.is-active {
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}


.join {
  background:
    linear-gradient(180deg, var(--mint-1), var(--white));
}

.forms-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: 20px;
  align-items: start;
}

.campaign-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
}

.campaign-form.accent {
  background: linear-gradient(180deg, #eef9f1, #ffffff);
  border-color: #bfe4c7;
}

.campaign-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.personero-form {
  position: relative;
}

.personero-form::before {
  content: "Gestión de personeros";
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.campaign-form input,
.campaign-form select,
.campaign-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #cfe4d5;
  border-radius: 13px;
}

.campaign-form input:focus,
.campaign-form select:focus,
.campaign-form textarea:focus {
  outline: 3px solid rgba(116, 189, 131, 0.28);
  border-color: var(--green-600);
}

.campaign-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-note.success {
  color: var(--green-800);
}

.agenda {
  background:
    linear-gradient(180deg, var(--white), #f0faf2);
}

.support-section {
  background:
    linear-gradient(180deg, #ffffff, #eefaf1);
}

.support-layout,
.agenda-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.support-layout h2,
.agenda-layout h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
}

.support-layout > div > p:not(.section-label),
.agenda-layout > div > p:not(.section-label) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.07rem;
}

.support-options,
.meeting-types {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.support-options article,
.meeting-types article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.support-options span,
.meeting-types span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-800);
  font-weight: 900;
}

.support-options p,
.meeting-types p {
  margin: 0;
  color: var(--muted);
}

.support-form {
  background: linear-gradient(180deg, #e8f8eb, #ffffff);
  border-color: #bfe4c7;
}

.support-hint {
  padding: 12px 14px;
  color: var(--green-900);
  background: #fffbea;
  border: 1px solid #f2dea1;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.agenda-form {
  background: linear-gradient(180deg, #ecf9ef, #ffffff);
  border-color: #c6e9ce;
}

.admin-section {
  background:
    linear-gradient(180deg, #f7fcf8, #ffffff);
}

.admin-section[hidden] {
  display: none;
}

.admin-login,
.admin-dashboard {
  display: grid;
  gap: 24px;
}

.admin-login {
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  align-items: center;
}

.admin-login h2,
.admin-topbar h2 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
}

.admin-login p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
}

.admin-login-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.admin-login-card label,
.admin-controls label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-weight: 900;
}

.admin-login-card input,
.admin-controls input,
.admin-controls select,
.status-select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cfe4d5;
  border-radius: 12px;
}

.admin-dashboard[hidden],
.admin-login[hidden] {
  display: none;
}

.admin-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-ghost {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--line);
}

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

.admin-stats article {
  padding: 20px;
  background: linear-gradient(180deg, var(--mint-1), var(--white));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.admin-stats span {
  display: block;
  color: var(--green-800);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.admin-stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(160px, 220px) minmax(160px, 220px) minmax(160px, 220px);
  gap: 14px;
  padding: 16px;
  background: #f1faf3;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.province-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.province-summary span {
  padding: 9px 12px;
  color: var(--green-900);
  background: var(--mint-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

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

.admin-table th {
  color: var(--green-900);
  background: #edf8f0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--ink);
  font-size: 0.92rem;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.record-type {
  display: inline-block;
  padding: 6px 9px;
  color: var(--green-900);
  background: var(--mint-2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.record-detail {
  max-width: 270px;
  color: var(--muted);
}

.record-contact {
  display: grid;
  gap: 8px;
}

.whatsapp-record {
  width: fit-content;
  padding: 7px 10px;
  color: var(--white);
  background: #20b15a;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.internal-note {
  min-width: 180px;
  min-height: 72px;
  padding: 10px;
  color: var(--ink);
  background: #fbfdf9;
  border: 1px solid #cfe4d5;
  border-radius: 10px;
  resize: vertical;
}

.delete-record {
  min-height: 38px;
  padding: 8px 10px;
  color: #8a1f1f;
  background: #fff3f3;
  border: 1px solid #f2caca;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 26px clamp(20px, 5.5vw, 78px);
  color: var(--green-900);
  background: var(--mint-2);
  font-weight: 800;
}

.site-footer strong {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #64445b;
  font-weight: 500;
}

.footer-links span::after,
.footer-links a::after {
  content: "·";
  margin-left: 8px;
  color: #8c7187;
}

.footer-links a:last-child::after {
  content: "";
  margin-left: 0;
}

.footer-links a:hover {
  color: var(--green-800);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: #20b15a;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(17, 59, 34, 0.24);
  font-weight: 900;
}

.whatsapp-float::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: var(--white);
  border-radius: 50%;
}

.whatsapp-float:hover {
  background: #17984b;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .story-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .agenda-layout {
    grid-template-columns: 1fr;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .admin-login,
  .admin-controls {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-bg img {
    object-position: 58% center;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-topbar {
    align-items: start;
    flex-direction: column;
  }

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

  .province-panel {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .site-header {
    inset: 10px 10px auto;
  }

  .hero {
    min-height: 100vh;
    padding: 108px 18px 142px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.4rem);
  }

  .hero-slogan {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-strip {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero-strip a {
    padding: 13px 8px;
    font-size: 0.9rem;
  }

  .section {
    padding: 58px 18px;
  }

  .story-grid,
  .pillar-grid,
  .forms-grid,
  .support-layout,
  .agenda-layout,
  .timeline {
    grid-template-columns: 1fr;
  }

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

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

  .personero-form::before {
    position: static;
    width: fit-content;
    order: -1;
  }

  .story-card,
  .pillar {
    min-height: auto;
  }
}
