/* assets/css/style.css — GP Chail portal styles */
:root {
  --navy: #0d3b66;
  --navy-dark: #082640;
  --saffron: #e67e22;
  --green: #1b7a4e;
  --green-light: #e8f5ee;
  --sky: #eef5fb;
  --text: #1c2a36;
  --muted: #5a6a7a;
  --border: #d5dde6;
  --white: #fff;
  --danger: #c0392b;
  --warn: #d68910;
  --ok: #1b7a4e;
  --radius: 8px;
  --max: 1140px;
  --shadow: 0 4px 18px rgba(13, 59, 102, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", Tahoma, sans-serif;
  color: var(--text);
  background: #f7f9fc;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0 0 0.6rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Top bar */
.topbar {
  background: var(--navy-dark);
  color: #dbe7f3;
  font-size: 0.78rem;
  padding: 0.4rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a { color: #fff; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--saffron);
  box-shadow: var(--shadow);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__emblem {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff9933, #fff 45%, #138808);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border: 2px solid var(--navy);
  flex-shrink: 0;
}
.brand__text strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}
.brand__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.primary-nav__search input {
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
  min-width: 160px;
}

/* Nav */
.primary-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}
.primary-nav__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  margin: 0.5rem 0;
  cursor: pointer;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  width: 100%;
}
.nav-links a {
  color: #fff;
  padding: 0.7rem 0.75rem;
  font-size: 0.88rem;
  display: block;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255,255,255,0.1);
  border-bottom-color: var(--saffron);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--accent { background: var(--saffron); color: #fff; }
.btn--green { background: var(--green); color: #fff; }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn--sm { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
.btn--block { width: 100%; }
.btn:disabled, .btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(280px, 48vw, 420px);
  background: var(--navy) center/cover no-repeat;
  color: #fff;
  display: grid;
  align-items: end;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,38,64,0.25) 20%, rgba(8,38,64,0.88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2rem;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 18ch;
  line-height: 1.15;
}
.hero p {
  max-width: 42ch;
  opacity: 0.95;
  margin-bottom: 1.1rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Sections */
.section { padding: 2.5rem 0; }
.section--alt { background: var(--white); }
.section--green { background: var(--green-light); }
.section-head {
  margin-bottom: 1.5rem;
}
.section-head h2 {
  color: var(--navy);
  font-size: 1.45rem;
}
.section-head p { color: var(--muted); max-width: 60ch; }

/* Module cards */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  min-height: 150px;
}
.module-card:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  text-decoration: none;
}
.module-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.module-card h3 { font-size: 1rem; color: var(--navy); }
.module-card p { font-size: 0.85rem; color: var(--muted); flex: 1; }

/* Officials */
.official-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.official-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.official-card__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.official-card__role {
  color: var(--saffron);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.data th,
table.data td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.data th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
table.data tr:last-child td { border-bottom: none; }
table.data tr:nth-child(even) td { background: #fafcfe; }

/* Badges */
.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.badge--ok { background: #d4edda; color: #155724; }
.badge--warn { background: #fff3cd; color: #856404; }
.badge--info { background: #cce5ff; color: #004085; }
.badge--danger { background: #f8d7da; color: #721c24; }
.badge--muted { background: #e9ecef; color: #495057; }
.badge--phase { background: #fdebd0; color: #9a5b0a; }

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 640px;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.form-grid--2 {
  grid-template-columns: 1fr 1fr;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field small { color: var(--muted); font-size: 0.75rem; }
.field--full { grid-column: 1 / -1; }
.tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.tab-btn {
  flex: 1;
  padding: 0.65rem;
  border: 1px solid var(--border);
  background: #f0f4f8;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
}
.tab-btn.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* Alerts / tickets */
.alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid;
  margin: 1rem 0;
}
.alert--success {
  background: #e8f8ef;
  border-color: #a7e0bf;
  color: #145a32;
}
.alert--info {
  background: #eaf3fb;
  border-color: #b6d4ef;
  color: #1a5276;
}
.ticket-box {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Dashboard */
.dash-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0 2.5rem;
}
.dash-side {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  height: fit-content;
  position: sticky;
  top: 70px;
}
.dash-side h3 {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.dash-side a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 4px;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.dash-side a:hover,
.dash-side a.is-active {
  background: var(--sky);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.1;
}
.stat-card span { font-size: 0.8rem; color: var(--muted); }

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  margin-bottom: 1rem;
}
.panel h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* Progress */
.progress {
  height: 8px;
  background: #e6edf5;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.35rem;
}
.progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #27ae60);
  border-radius: inherit;
}
.work-photo {
  width: 64px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  background: #c5d5e4;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.contact-card {
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { color: var(--navy); font-size: 1rem; }
.contact-card a { font-weight: 700; font-size: 1.05rem; }

/* Page title band */
.page-band {
  background: linear-gradient(120deg, var(--navy), #1a5f8f);
  color: #fff;
  padding: 1.75rem 0;
}
.page-band h1 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
.page-band p { opacity: 0.9; margin: 0; font-size: 0.95rem; }
.breadcrumb {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}
.breadcrumb a { color: #fff; }

/* Notice list */
.notice-list li {
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.notice-list li:last-child { border-bottom: none; }
.notice-date {
  flex-shrink: 0;
  background: var(--sky);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  min-width: 72px;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #c8d6e4;
  padding: 2rem 0 1.25rem;
  margin-top: 2rem;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.site-footer h4 { color: #fff; margin-bottom: 0.75rem; }
.site-footer a { color: #c8d6e4; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.login-wrap {
  max-width: 480px;
  margin: 2rem auto;
}
.hidden { display: none !important; }

/* ===== Meri Panchayat–style homepage ===== */
.home-mp {
  font-family: "Noto Sans Devanagari", "Segoe UI", Tahoma, sans-serif;
  background: #fff;
}

.section-title {
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}
.section-title--center { text-align: center; }
.section-title--light { color: #fff; }
.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.mp-hero {
  position: relative;
  background: linear-gradient(180deg, #f7fbf4 0%, #eef6e8 100%);
  padding: 1.75rem 0 2rem;
  overflow: hidden;
}
.mp-hero__leaves {
  position: absolute;
  width: 120px;
  height: 160px;
  opacity: 0.35;
  background:
    radial-gradient(ellipse at 30% 40%, #6f9b4e 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, #a9c98f 0%, transparent 55%);
  pointer-events: none;
}
.mp-hero__leaves--left { left: -20px; top: 10px; }
.mp-hero__leaves--right { right: -20px; bottom: 0; transform: scaleX(-1); }
.mp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mp-hero__title {
  font-family: "Tiro Devanagari Hindi", "Noto Sans Devanagari", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #c0392b;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}
.mp-hero__sub {
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1rem;
}
.mp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.mp-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  box-shadow: var(--shadow);
}
.mp-hero__badge strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
}
.mp-hero__badge-icon { font-size: 1.4rem; }
.mp-hero__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mp-hero__image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13, 59, 102, 0.18);
  border: 4px solid #fff;
}
.mp-hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mp-about {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}
.mp-about__text h2,
.mp-whats-new h2 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.mp-about__text p {
  color: #444;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.mp-whats-new ul {
  list-style: disc;
  padding-left: 1.15rem;
  margin-bottom: 1rem;
}
.mp-whats-new li {
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: #333;
}
.mp-officials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mp-official {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
}
.mp-official__photo {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.5rem;
  border-radius: 6px;
  background: hsl(var(--hue, 200) 45% 72%);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.mp-official__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.mp-official__role {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}

.mp-dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mp-dash-card {
  background: #f3f6f9;
  border: 1px solid #e2e8ef;
  border-radius: 12px;
  padding: 1.35rem 1rem;
  text-align: center;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: box-shadow 0.15s, background 0.15s;
}
.mp-dash-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.mp-dash-card__icon { font-size: 1.75rem; }

.mp-schemes {
  background: var(--navy);
  padding: 2.5rem 0;
}
.mp-scheme-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.mp-scheme-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem 0.75rem;
  text-align: center;
  min-height: 120px;
}
.mp-scheme-card__title {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.mp-scheme-card__desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.mp-links-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mp-links-cols a {
  color: #1a5f8f;
  font-size: 0.92rem;
  display: inline-block;
  padding: 0.25rem 0;
}
.mp-info-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mp-info-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.mp-info-panel h3 {
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  margin: 0;
}
.mp-info-panel ul {
  list-style: none;
  padding: 0.75rem 0.9rem;
}
.mp-info-panel li {
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  color: #333;
}
.mp-info-panel li:last-child { border-bottom: none; }

.mp-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}
.mp-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.mp-photo {
  aspect-ratio: 1;
  border-radius: 6px;
}
.mp-video__thumb {
  background: linear-gradient(135deg, #0d3b66, #2f9e6e);
  border-radius: 8px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.mp-video__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.mp-video__thumb p {
  font-size: 0.95rem;
  max-width: 28ch;
  margin: 0;
}

/* Mobile */
@media (max-width: 980px) {
  .mp-hero__inner,
  .mp-about,
  .mp-gallery,
  .mp-info-panels,
  .mp-links-cols { grid-template-columns: 1fr; }
  .mp-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-scheme-grid { grid-template-columns: repeat(3, 1fr); }
  .mp-officials { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    padding-bottom: 0.5rem;
  }
  .nav-links.is-open { display: flex; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-side { position: static; }
  .form-grid--2 { grid-template-columns: 1fr; }
  .brand__text strong { font-size: 1rem; }
}
@media (max-width: 560px) {
  .mp-dash-grid,
  .mp-scheme-grid,
  .mp-photo-grid,
  .mp-officials { grid-template-columns: 1fr 1fr; }
  .mp-hero__image { order: -1; }
}
