/* =========================================
   Editorial Title Plate System
   -----------------------------------------
   Canonical SVG title plates with fixed
   vertical footprint and stable scaling.
   No percentages. No max-width. No wrappers.
========================================= */

/* Plate container */
.title-plate,
.landing-title {
  height: 6.5rem;              /* canonical plate height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inline SVG plate */
.title-plate-svg {
  height: 6.5rem;              /* explicit control */
  aspect-ratio: 800 / 180;     /* from SVG viewBox */
  width: auto;
  flex: 0 0 auto;              /* CRITICAL: prevent grid flexing */
  display: block;
}
