/* MB05 news UI fixes — 2026-08-24.
   Intentionally kept separate from the large compiled site.css after the
   production CSS incident. This file is loaded only on the pages that need it. */

/* News detail: long publication titles should not dominate the page hero. */
.mb-page-hero--news h1 {
    font-size: clamp(30px, 3.1vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

/* Homepage news: preserve the complete source image instead of cropping it. */
.home-news-card__image > .home-news-card__media-image {
    box-sizing: border-box;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 5px !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
}

.home-news-card:hover .home-news-card__image > .home-news-card__media-image {
    transform: none !important;
}

@media (max-width: 767.98px) {
    .mb-page-hero--news h1 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.14;
    }

    .home-news-card__image > .home-news-card__media-image {
        padding: 3px !important;
    }
}
