.grid {
  display: grid;
  gap: var(--s-8);
}

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

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

@media (max-width: 900px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--s-12) 0;
  }
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242,227,199,0.55);
  color: var(--brand-600);
  font-size: var(--fs-400);
  font-weight: 700;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-400);
  color: var(--brand-600);
  font-weight: 800;
}

.hr {
  height: 1px;
  background: var(--slate-200);
  border: 0;
  margin: var(--s-12) 0;
}


/* EDITORIAL WIDTH OVERRIDE */

/* Expand usable page width */
.container{
  max-width: 1500px;
}

/* Slightly tighter side padding */
.section .container{
  padding-left: 24px;
  padding-right: 24px;
}

/* Stronger editorial proportion */
.editorial-grid{
  grid-template-columns: minmax(0,1.45fr) minmax(300px,0.75fr);
}

/* Reduce vertical stretch feel */
.content-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Tighten spacing */
.meta-list{
  gap:6px;
}

.panel-body{
  padding: clamp(18px, 1.6vw, 28px);
}

/* Reduce intro height */
.page-intro--media{
  min-height:260px;
}

/* Responsive */
@media (max-width:1200px){
  .container{
    max-width: 100%;
  }
}


/* FINAL_ALIGNMENT_TUNING */

/* Pull right column content up slightly */
.editorial-grid > :last-child{
  margin-top: -40px;
}

/* Tighten gap before footer */
main + footer,
.section:last-of-type{
  margin-bottom: 24px;
}

/* Ensure consistent bottom rhythm */
.support-panel{
  margin-bottom: 0;
}

/* Slight visual balance tweak */
.content-card{
  padding-bottom: 18px;
}
