/*
 * Secondary-page hero artwork
 * ---------------------------
 * Every illustration is a standalone SVG in assets/svg/heroes/.
 * All six pages use this one placement system.
 */ .page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
    align-items: center;
}
.page-hero-grid > *, .page-hero-copy > * {
    max-width: none !important;
}
.page-hero-art {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}
.page-hero-art img {
    display: block;
    width: 100%;
    max-width: 380px;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    object-position: right center;
}
@media (max-width: 1050px) and (min-width: 761px) {
    .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 38px;
  }
    .page-hero-art img {
        max-width: 320px;
        max-height: 240px;
  }
}
@media (max-width: 760px) {
    .page-hero-grid {
        display: block;
  }
    .page-hero-art {
        justify-content: center;
        margin-top: 32px;
  }
    .page-hero-art img {
        width: min(100%, 380px);
        max-height: 230px;
        object-position: center;
  }
}
