:root {
  --content-max: 920px;
  --content-pad: clamp(16px, 4vw, 36px);
}

.page-shell {
  max-width: 920px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 36px);
  padding-right: clamp(16px, 4vw, 36px);
}


/* Main centered content column */
/*.ig-main-content {*/
/*  max-width: var(--content-max);*/
/*  margin-inline: auto;*/
/*  padding-left: var(--content-pad);*/
/*  padding-right: var(--content-pad);*/
/*}*/

/* Let Ignite's inner wrapper stop adding an extra width layer */
.page-shell > .ig-main-content {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* SiteHeader */
.site-header {
  width: 100%;
  margin: 0;
  padding: 0.5rem 1.25rem;
  background: #ffeecf;
  box-sizing: border-box;
}

.site-header-menu {
  width: 100%;
  display: flex;
  gap: 0.4rem;
  justify-content: flex-start;
}

.site-header-leading {
  justify-content: flex-start;
}

.site-header-centred {
  justify-content: center;
}

.site-header-trailing {
  justify-content: flex-end;
}

.site-header-link {
  display: inline-block;
  text-decoration: none;
  color: #344054;
  padding: 0.32rem 0.55rem;
  border: 1px solid #d0d5dd;
  background: #ffffff;
}

.site-header-link:hover {
  background: #f8fafc;
  color: #1d2939;
}

/* Home vertical flow */
.home-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Hero */
.hero {
  width: 100%;
  margin: 0 0 1.5rem 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #ffeecf 0%, #ffffff 100%);
  text-align: left;
  box-sizing: border-box;
}

.hero * {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #ffe3e3;
  border: 1px solid #f1b5b5;
  color: #5c1111;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.75rem;
}

.hero-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
  color: #101828;
}

.hero-summary {
  margin-top: 0.8rem;
  color: #344054;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-cta {
  display: inline-block;
  padding: 0.52rem 0.8rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.hero-cta-primary {
  background: #b42318;
  color: #ffffff;
  border-color: #b42318;
}

.hero-cta-secondary {
  background: #ffffff;
  color: #1d2939;
  border-color: #d0d5dd;
}

/* Mini cards */
.mini-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
}

.mini-card {
  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: #d2d8e5;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.mini-card-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f2a43;
  background-color: #cfe8ff;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
}

.mini-card-eyebrow-red {
  background: #ffd9d9;
  color: #5c1111;
}

.mini-card-eyebrow-green {
  background: #dff5e3;
  color: #183a22;
}

.mini-card-eyebrow-amber {
  background: #ffeecf;
  color: #4a3200;
}

.mini-card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: #111827;
}

.mini-card-summary {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4b5563;
}

.mini-card-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #0f4c81;
  text-decoration: none;
}


.site-footer {
  margin-top: 0.75rem;
  margin-bottom: 2rem; /* breathing room at bottom of page */
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, #ffeecf 0%, #ffffff 100%);
  border: 1px solid #e6e8ee;
  color: #344054;
  font-size: 0.88rem;
  line-height: 1.3;
  
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering (optional) */
  min-height: 44px;         /* gives height so vertical centering is visible */
}

.site-footer p {
	margin: 0;
}

.site-header,
.site-footer,
.hero,
.mini-card-grid {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}

