/*
 * AI Freight Intel — publication stylesheet.
 *
 * Site chrome palette is locked to the Giga-Sphere OS Brand Identity System
 * v1.0 (Giga Navy, Giga Gold, White, Navy Mid, Blue Steel, Gold Warm, Cream).
 * The --tpl-* tokens are sampled directly from the founder-approved weekly
 * cover plate (assets/afi-cover-template-base.webp) and exist solely so the
 * live overlay panel matches the approved artwork exactly. Frozen records:
 * artifacts/ai-freight-intel/issue-004-static-rescue-2026-07-10/approved-brand-palette.json
 */
:root {
  color-scheme: dark;
  /* Publication chrome palette — sampled from the gigasphere.io landing page
   * (page #050a13, cards #0b1222, gold #e8a020) per founder direction. */
  --navy: #050a13;
  --navy-mid: #0b1222;
  --blue-steel: #2a5a8c;
  --gold: #e8a020;
  --gold-warm: #c8881a;
  --white: #ffffff;
  --cream: #faf9f5;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --panel: #0b1222;
  --header-bg: rgba(5, 10, 19, 0.92);
  --link-underline: rgba(232, 160, 32, 0.75);
  --panel-shadow: rgba(0, 0, 0, 0.35);
  --panel-border: rgba(255, 255, 255, 0.08);
  --gold-glow-soft: rgba(232, 160, 32, 0.07);
  --surface-subtle: rgba(255, 255, 255, 0.04);
  --form-border: rgba(255, 255, 255, 0.22);
  --brand-ink: #050a13;
  /* Documented status colors (form feedback only). */
  --success-text: #ffffff;
  --error-text: #ffb4b4;
  /* Cover plate overlay tokens — sampled from the approved cover artwork. */
  --tpl-issue-bg: #020e17;
  --tpl-panel-bg-top: #0f100d;
  --tpl-panel-bg-bottom: #081014;
  --tpl-tile-line: rgba(255, 255, 255, 0.12);
  --tpl-gold: #e4bc61;
  --tpl-chip-green: #166047;
  --tpl-chip-rust: #7e381b;
  --tpl-chip-violet: #412561;
  --tpl-chip-blue: #1a3b76;
  --tpl-chip-gold: #976d10;
  --tpl-ring-green: #7fccb4;
  --tpl-ring-rust: #e8934a;
  --tpl-ring-violet: #ad8ec4;
  --tpl-ring-blue: #6791c7;
  --tpl-ring-gold: #e4bc61;
  --tpl-text: #f2f5f9;
  --tpl-text-muted: rgba(242, 245, 249, 0.78);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% -10%, var(--gold-glow-soft), transparent 46rem),
    var(--navy);
  color: var(--white);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.04rem;
}

.brand strong {
  color: var(--gold);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--gold);
  border-radius: 999px;
}

.brand-mark::after {
  inset: 16px;
  background: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

nav a,
footer a,
.newsletter-card a,
.latest-list a {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-color: var(--link-underline);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(72px, 10vw, 124px) 0;
}

.eyebrow,
.card-kicker,
.panel-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.support-copy {
  color: var(--muted);
  line-height: 1.55;
}

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

.button,
.subscribe-form button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary,
.subscribe-form button {
  background: var(--gold);
  color: var(--brand-ink);
}

.primary:hover,
.subscribe-form button:hover {
  background: var(--gold-warm);
}

.secondary {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.secondary:hover {
  background: var(--surface-subtle);
}

.button:focus-visible,
.subscribe-form button:focus-visible,
nav a:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.signal-panel,
.newsletter-card,
.latest-list article,
.subscribe-section {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  box-shadow: 0 24px 80px var(--panel-shadow);
}

.signal-panel {
  padding: 30px;
  border-radius: 22px;
}

.signal-panel img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
}

.signal-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.signal-panel div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.signal-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.signal-panel dt {
  font-size: 1.2rem;
  font-weight: 900;
}

.signal-panel dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.newsletter-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
}

.newsletter-card p:not(.card-kicker),
.latest-list p,
.subscribe-section p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.03rem;
}

.newsletter-card a {
  margin-top: auto;
  color: var(--white);
  font-weight: 900;
}

.latest-list {
  display: grid;
  gap: 16px;
}

.latest-list--spaced {
  margin-top: 18px;
}

.latest-list article {
  display: grid;
  grid-template-columns: 150px minmax(170px, 0.4fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 24px;
  border-radius: 22px;
}

.latest-list span {
  color: var(--gold);
  font-weight: 900;
}

.latest-list p {
  margin: 0;
}

.latest-list a {
  font-weight: 900;
  white-space: nowrap;
}

.subscribe-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  margin: 68px 0 80px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 22px;
}

/* ---------------------------------------------------------------------------
 * Weekly cover template.
 * The founder-approved plate renders full-bleed as a real image. The regions
 * the plate reserves as placeholders (issue chip, top-5 story panel) are
 * covered by live HTML overlays positioned in plate percentages, so issue
 * data and the five stories interchange weekly from the issue JSON while the
 * artwork stays byte-identical to the approved file.
 * ------------------------------------------------------------------------- */

.afi-cover-page main {
  width: min(1280px, calc(100% - 28px));
}

.afi-cover-hero {
  padding: 0 0 56px;
}

.afi-tpl {
  container-type: inline-size;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 1536 / 1024;
  background: var(--navy);
}

.afi-cover-art {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Issue chip — covers the plate's "ISSUE ### / MONTH DD, YYYY" placeholder. */
.afi-tpl__issue {
  position: absolute;
  top: 0.8%;
  left: 80.4%;
  width: 19.6%;
  height: 8%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4cqi;
  padding-right: 2.4cqi;
  background: var(--tpl-issue-bg);
  text-transform: uppercase;
}

.afi-tpl__issue-number {
  color: var(--tpl-text);
  font-size: 1.75cqi;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.afi-tpl__issue-date {
  color: var(--tpl-gold);
  font-size: 1.15cqi;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* Story panel — covers the plate's placeholder TOP 5 panel. */
.afi-tpl__panel {
  position: absolute;
  left: 73.85%;
  top: 19.1%;
  width: 25.2%;
  height: 62.4%;
  display: flex;
  flex-direction: column;
  padding: 1.1cqi 1cqi 0.9cqi;
  background: linear-gradient(180deg, var(--tpl-panel-bg-top), var(--tpl-panel-bg-bottom));
}

.afi-cover-story-panel__header {
  margin: 0 0 0.9cqi;
  color: var(--tpl-gold);
  font-size: 1.34cqi;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid var(--tpl-tile-line);
  padding-bottom: 0.8cqi;
}

.afi-tpl__tiles {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 0.5cqi;
  flex: 1;
  min-height: 0;
}

.afi-cover-story {
  position: relative;
  display: grid;
  grid-template-columns: 3.4cqi 4.4cqi minmax(0, 1fr);
  gap: 0.8cqi;
  align-items: center;
  min-height: 0;
  border-top: 1px solid var(--tpl-tile-line);
  padding-top: 0.5cqi;
}

.afi-cover-story:first-child {
  border-top: 0;
  padding-top: 0;
}

.afi-cover-story__index {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25cqi;
  color: var(--tpl-text);
  font-size: 1.75cqi;
  font-weight: 800;
}

.afi-cover-story--green .afi-cover-story__index { background: var(--tpl-chip-green); }
.afi-cover-story--rust .afi-cover-story__index { background: var(--tpl-chip-rust); }
.afi-cover-story--violet .afi-cover-story__index { background: var(--tpl-chip-violet); }
.afi-cover-story--blue .afi-cover-story__index { background: var(--tpl-chip-blue); }
.afi-cover-story--gold .afi-cover-story__index { background: var(--tpl-chip-gold); }

.afi-cover-story__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.1cqi;
  height: 4.1cqi;
  border: 0.14cqi solid currentColor;
  border-radius: 50%;
}

.afi-cover-story__icon svg {
  width: 2.3cqi;
  height: 2.3cqi;
}

.afi-cover-story--green .afi-cover-story__icon { color: var(--tpl-ring-green); }
.afi-cover-story--rust .afi-cover-story__icon { color: var(--tpl-ring-rust); }
.afi-cover-story--violet .afi-cover-story__icon { color: var(--tpl-ring-violet); }
.afi-cover-story--blue .afi-cover-story__icon { color: var(--tpl-ring-blue); }
.afi-cover-story--gold .afi-cover-story__icon { color: var(--tpl-ring-gold); }

.afi-cover-story {
  grid-template-rows: minmax(0, 1fr) auto;
}

.afi-cover-story__index,
.afi-cover-story__icon {
  grid-row: 1 / span 2;
}

.afi-cover-story__body {
  min-width: 0;
  padding-right: 0.4cqi;
}

.afi-cover-story__body h3 {
  margin: 0 0 0.35cqi;
  color: var(--tpl-text);
  font-size: 1.16cqi;
  font-weight: 800;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.afi-cover-story__body p {
  margin: 0;
  color: var(--tpl-text-muted);
  font-size: 0.92cqi;
  line-height: 1.26;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.afi-cover-story__link {
  grid-column: 3;
  justify-self: end;
  padding-right: 0.4cqi;
  color: var(--tpl-gold);
  font-size: 0.9cqi;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.afi-cover-story__link::after {
  content: "";
  position: absolute;
  inset: -0.6cqi;
}

.afi-cover-story__link:hover,
.afi-cover-story__link:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--tpl-gold);
}

/* Masthead below the cover. */
.afi-issue-masthead {
  max-width: 900px;
  margin-top: 42px;
}

.afi-issue-masthead h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
}

.afi-issue-masthead h1 span {
  color: var(--gold);
}

.afi-issue-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.afi-issue-line .afi-issue-dot {
  color: var(--gold);
}

.afi-issue-summary {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.5;
}

.afi-cover-page .section.latest .latest-list article {
  grid-template-columns: 160px minmax(180px, 0.42fr) minmax(260px, 1fr) auto;
}

/* ---------------------------------------------------------------------------
 * Story article pages — continuous magazine prose.
 * ------------------------------------------------------------------------- */

.article {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0 20px;
}

/* The approved cover rides along on every story page, scaled to the article
 * column — same plate, same live overlays, untouched artwork. */
.article-cover {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.article-cover .afi-tpl {
  width: 100%;
  margin-left: 0;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px var(--panel-shadow);
}

.article-header h1 {
  max-width: 24ch;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.article-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-kicker a {
  text-decoration: none;
}

.article-kicker a:hover {
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
}

.article-dek {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 600;
  line-height: 1.45;
}

.article-meta {
  margin: 18px 0 0;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-body {
  margin-top: 30px;
}

.article-body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.75;
}

.article-lede {
  color: var(--white) !important;
  font-size: clamp(1.18rem, 1.9vw, 1.32rem) !important;
  line-height: 1.65 !important;
}

.article-sub {
  margin: 40px 0 16px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-body .mag-pull {
  margin: 30px 0;
}

.article-source {
  margin-top: 36px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.98rem !important;
}

.article-source a {
  color: var(--gold);
  text-decoration-color: var(--link-underline);
}

.article-next {
  margin-top: 40px;
}

.article-next a {
  display: block;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 24px 80px var(--panel-shadow);
  text-decoration: none;
}

.article-next a:hover strong {
  color: var(--gold);
}

.article-next__kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-next strong {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

/* ---------------------------------------------------------------------------
 * Magazine story layout.
 * ------------------------------------------------------------------------- */

.mag-stories .section-heading {
  margin-bottom: 44px;
}

.mag-num {
  color: var(--gold);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mag-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mag-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 24px 80px var(--panel-shadow);
}

.mag-feature h3 {
  max-width: 20ch;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.mag-feature h3 a,
.mag-card h3 a {
  text-decoration: none;
}

.mag-feature h3 a:hover,
.mag-card h3 a:hover {
  color: var(--gold);
}

.mag-dek {
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 60ch;
}

.mag-body {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
  max-width: 68ch;
}

.mag-pull {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--white);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 54ch;
}

.mag-read {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
  text-decoration: none;
}

.mag-read::after {
  content: " \2192";
}

.mag-read:hover {
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
}

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

.mag-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 24px 80px var(--panel-shadow);
}

.mag-card h3 {
  margin-top: 12px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.subscribe-form {
  display: grid;
  gap: 12px;
}

.subscribe-form label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subscribe-form input,
.subscribe-form select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--form-border);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--surface-subtle);
  color: var(--white);
  font: inherit;
}

.subscribe-form select option {
  color: var(--brand-ink);
}

.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status.success {
  color: var(--success-text);
}

.form-status.error {
  color: var(--error-text);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .subscribe-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

  .mag-feature {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .latest-list article {
    grid-template-columns: 1fr;
  }

  .afi-cover-page .section.latest .latest-list article {
    grid-template-columns: 1fr;
  }

  .latest-list a {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 24px, 1180px);
  }

  .afi-cover-hero {
    padding: 0 0 48px;
  }

  .afi-issue-masthead {
    margin-top: 26px;
  }

  .afi-issue-masthead h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.6rem);
  }

  .email-row {
    grid-template-columns: 1fr;
  }

  .button,
  .subscribe-form button {
    width: 100%;
  }
}
