/* ------------------------------------------------------------------ *
 * DDMRJ custom stylesheet
 * Loaded after the theme stylesheet (LATE priority) so these rules win.
 * ------------------------------------------------------------------ */

/*
 * Homepage banner: the uploaded image is only 770px wide, but the default
 * theme forces `.homepage_image img { width:100% }`, which upscales it to the
 * full content container (up to 1160px) and makes it look blurry/stretched.
 * Cap it at its native width and center it so it stays crisp.
 */
.homepage_image img {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}
