:root {
    --mhv-red: #f23b18;
    --mhv-red-dark: #c92d12;
    --mhv-black: #171717;
    --mhv-black-2: #242424;
    --mhv-ink: #202020;
    --mhv-muted: #6e6e6e;
    --mhv-border: #dedede;
    --mhv-soft: #f5f5f3;
    --mhv-khaki: #9d8662;
    --mhv-white: #ffffff;
}

.mhv-app,
.mhv-app *,
.mhv-article,
.mhv-article * {
    box-sizing: border-box;
}

.mhv-app,
.mhv-article {
    color: var(--mhv-ink);
    font-family: inherit;
}

.mhv-app button,
.mhv-app input,
.mhv-app select {
    font: inherit;
}

.mhv-app {
    width: min(1460px, calc(100% - 28px));
    margin: 34px auto;
}

.mhv-hero {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(8,8,8,.96), rgba(15,15,15,.72)),
        radial-gradient(circle at 78% 20%, rgba(151,125,79,.26), transparent 30%),
        var(--mhv-hero-image, none),
        repeating-linear-gradient(125deg, #2e3029 0, #2e3029 4px, #1d1f1b 4px, #1d1f1b 16px);
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 52px rgba(0,0,0,.18);
}

.mhv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 65%, rgba(242,59,24,.09) 65% 66%, transparent 66%),
        linear-gradient(0deg, transparent 0 76%, rgba(255,255,255,.06) 76% 76.4%, transparent 76.4%);
    pointer-events: none;
}

.mhv-hero::after {
    content: "MH";
    position: absolute;
    right: -28px;
    bottom: -65px;
    color: rgba(255,255,255,.035);
    font-size: 260px;
    font-weight: 1000;
    letter-spacing: -.12em;
    line-height: 1;
}

.mhv-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 570px;
    max-width: 1120px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 7vw, 92px);
}

.mhv-kicker {
    align-self: flex-start;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.34);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.mhv-hero__intro {
    margin: 30px 0 5px !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 19px !important;
}

.mhv-hero h1 {
    max-width: 1050px;
    margin: 0 0 17px;
    color: #fff;
    font-size: clamp(55px, 8.5vw, 105px);
    font-weight: 1000;
    letter-spacing: -.065em;
    line-height: .88;
    text-transform: uppercase;
}

.mhv-hero h1 span {
    color: var(--mhv-red);
}

.mhv-hero p {
    max-width: 900px;
    margin: 0;
    color: rgba(255,255,255,.79);
    font-size: 18px;
    line-height: 1.7;
}

.mhv-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 980px;
    margin-top: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 42px rgba(0,0,0,.3);
}

.mhv-search-form input {
    min-height: 66px;
    padding: 0 22px;
    border: 0;
    outline: none;
    color: var(--mhv-ink);
    font-size: 16px;
}

.mhv-search-form button {
    min-width: 170px;
    border: 0;
    cursor: pointer;
    background: var(--mhv-red);
    color: #fff;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-search-form button:hover {
    background: var(--mhv-red-dark);
}

.mhv-suggestions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.58);
    font-size: 12px;
}

.mhv-suggestions button {
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255,255,255,.07);
    color: #fff;
}

.mhv-hero__shop {
    align-self: flex-start;
    margin-top: 24px;
    padding: 13px 19px;
    border: 1px solid rgba(255,255,255,.34);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.mhv-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--mhv-border);
    border-top: 0;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
}

.mhv-stats > div {
    padding: 25px 20px;
    border-right: 1px solid var(--mhv-border);
    text-align: center;
}

.mhv-stats > div:last-child {
    border-right: 0;
}

.mhv-stats strong,
.mhv-stats span {
    display: block;
}

.mhv-stats strong {
    color: var(--mhv-black);
    font-size: 34px;
    line-height: 1;
}

.mhv-stats span {
    margin-top: 7px;
    color: var(--mhv-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.mhv-index-notice {
    margin-top: 18px;
    padding: 15px 18px;
    border-left: 5px solid var(--mhv-red);
    background: #fff1ed;
    color: #763421;
}

.mhv-popular,
.mhv-browser,
.mhv-source-note {
    margin-top: 70px;
}

.mhv-section-heading,
.mhv-results-head {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mhv-eyebrow {
    color: var(--mhv-red);
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mhv-section-heading h2,
.mhv-filter-heading h2,
.mhv-results-head h2,
.mhv-source-note h2 {
    margin: 5px 0 0;
    color: var(--mhv-black);
    font-size: clamp(31px, 4vw, 50px);
    font-weight: 1000;
    letter-spacing: -.04em;
    line-height: .98;
    text-transform: uppercase;
}

.mhv-section-heading p {
    max-width: 500px;
    margin: 0;
    color: var(--mhv-muted);
    line-height: 1.6;
}

.mhv-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mhv-category-card {
    display: grid;
    min-height: 195px;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 5px 18px;
    align-content: center;
    padding: 26px;
    border: 1px solid var(--mhv-border);
    cursor: pointer;
    background: #fff;
    color: var(--mhv-ink);
    text-align: left;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}

.mhv-category-card:hover {
    transform: translateY(-3px);
    border-color: var(--mhv-red);
    box-shadow: 0 16px 38px rgba(0,0,0,.1);
}

.mhv-category-card > span {
    display: grid;
    width: 58px;
    height: 58px;
    grid-row: span 2;
    place-items: center;
    background: var(--mhv-black);
    color: var(--mhv-red);
    font-size: 18px;
    font-weight: 1000;
}

.mhv-category-card strong {
    align-self: end;
    color: var(--mhv-black);
    font-size: 18px;
    line-height: 1.15;
    text-transform: uppercase;
}

.mhv-category-card small {
    align-self: start;
    color: var(--mhv-muted);
    line-height: 1.45;
}

.mhv-browser {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 25px;
    align-items: start;
    scroll-margin-top: 20px;
}

.mhv-filter-panel {
    position: sticky;
    top: 24px;
    padding: 26px;
    background: var(--mhv-black);
    color: #fff;
    box-shadow: 0 16px 38px rgba(0,0,0,.16);
}

.mhv-filter-heading {
    margin-bottom: 22px;
}

.mhv-filter-heading h2 {
    color: #fff;
    font-size: 34px;
}

.mhv-filter-panel label {
    display: grid;
    gap: 7px;
    margin-top: 15px;
}

.mhv-filter-panel label > span {
    color: rgba(255,255,255,.7);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.mhv-filter-panel select {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.16);
    outline: none;
    background: #292929;
    color: #fff;
}

.mhv-reset-filters {
    width: 100%;
    min-height: 44px;
    margin-top: 15px;
    border: 1px solid rgba(255,255,255,.24);
    cursor: pointer;
    background: transparent;
    color: #fff;
    font-weight: 800;
}

.mhv-filter-help {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.mhv-filter-help p {
    margin: 7px 0 14px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.55;
}

.mhv-filter-help a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: var(--mhv-red);
    color: #fff;
    font-weight: 1000;
    text-decoration: none;
    text-transform: uppercase;
}

.mhv-results-panel {
    min-width: 0;
    scroll-margin-top: 20px;
}

.mhv-results-head h2 {
    max-width: 820px;
    font-size: 39px;
}

.mhv-results-count {
    flex: 0 0 auto;
    padding: 8px 12px;
    background: var(--mhv-soft);
    color: var(--mhv-muted);
    font-size: 12px;
    font-weight: 800;
}

.mhv-loading {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    color: var(--mhv-muted);
}

.mhv-loading[hidden] {
    display: none;
}

.mhv-loading span {
    width: 18px;
    height: 18px;
    border: 3px solid #e1e1df;
    border-top-color: var(--mhv-red);
    border-radius: 50%;
    animation: mhv-spin .7s linear infinite;
}

@keyframes mhv-spin {
    to { transform: rotate(360deg); }
}

.mhv-live-products {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--mhv-border);
    background: var(--mhv-soft);
}

.mhv-live-products[hidden] {
    display: none;
}

.mhv-live-products__head {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.mhv-live-products__head h3 {
    margin: 0;
    color: var(--mhv-black);
    font-size: 20px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-live-products__head a {
    color: var(--mhv-red-dark);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.mhv-live-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mhv-live-product-card {
    min-width: 0;
    background: #fff;
}

.mhv-live-product-card__image {
    display: grid;
    aspect-ratio: 1 / .78;
    place-items: center;
    overflow: hidden;
    background: #ecece9;
    color: var(--mhv-red);
    font-size: 28px;
    font-weight: 1000;
}

.mhv-live-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mhv-live-product-card > div {
    padding: 12px;
}

.mhv-live-product-card h4 {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 1.3;
}

.mhv-live-product-card h4 a {
    color: var(--mhv-black);
    text-decoration: none;
}

.mhv-live-product-card__price {
    color: var(--mhv-red-dark);
    font-weight: 900;
}

.mhv-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    transition: opacity .18s;
}

.mhv-results.is-loading {
    opacity: .48;
}

.mhv-result-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--mhv-border);
    background: #fff;
    box-shadow: 0 10px 29px rgba(0,0,0,.045);
}

.mhv-result-card__meta {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: space-between;
}

.mhv-result-card__meta span {
    padding: 5px 8px;
    background: #fff0ec;
    color: #b7290f;
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-result-card__meta small {
    overflow: hidden;
    color: var(--mhv-muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mhv-result-card__subject {
    margin-top: 17px;
    color: var(--mhv-khaki);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-result-card h3 {
    margin: 7px 0 11px;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.18;
}

.mhv-result-card h3 a {
    color: var(--mhv-black);
    text-decoration: none;
}

.mhv-result-card h3 a:hover {
    color: var(--mhv-red-dark);
}

.mhv-result-card p {
    margin: 0 0 21px;
    color: var(--mhv-muted);
    line-height: 1.62;
}

.mhv-read-more {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: auto;
    color: var(--mhv-black);
    font-size: 12px;
    font-weight: 1000;
    text-decoration: none;
    text-transform: uppercase;
}

.mhv-read-more span {
    color: var(--mhv-red);
    font-size: 18px;
}

.mhv-empty-results {
    grid-column: 1 / -1;
    min-height: 250px;
    padding: 65px 25px;
    border: 1px dashed var(--mhv-border);
    background: var(--mhv-soft);
    text-align: center;
}

.mhv-empty-results strong {
    color: var(--mhv-black);
    font-size: 25px;
}

.mhv-empty-results p {
    color: var(--mhv-muted);
}

.mhv-pagination {
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    flex-wrap: wrap;
}

.mhv-pagination button {
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--mhv-border);
    cursor: pointer;
    background: #fff;
    color: var(--mhv-ink);
    font-weight: 800;
}

.mhv-pagination button.is-current {
    border-color: var(--mhv-red);
    background: var(--mhv-red);
    color: #fff;
}

.mhv-source-note {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 48px;
    align-items: center;
    padding: clamp(32px, 5vw, 60px);
    background:
        radial-gradient(circle at 85% 10%, rgba(157,134,98,.25), transparent 30%),
        var(--mhv-black);
    color: #fff;
}

.mhv-source-note h2 {
    color: #fff;
}

.mhv-source-note p {
    margin: 0;
    color: rgba(255,255,255,.7);
    line-height: 1.78;
}

/* Detailpagina */
.mhv-single-page {
    width: 100%;
}

.mhv-article {
    width: min(1360px, calc(100% - 28px));
    margin: 34px auto 72px;
}

.mhv-breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: var(--mhv-muted);
    font-size: 12px;
    flex-wrap: wrap;
}

.mhv-breadcrumbs a {
    color: var(--mhv-muted);
    text-decoration: none;
}

.mhv-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 245px;
    gap: 34px;
    align-items: center;
    padding: clamp(34px, 5vw, 68px);
    background:
        radial-gradient(circle at 88% 14%, rgba(157,134,98,.28), transparent 30%),
        linear-gradient(128deg, #111, #292929);
    color: #fff;
}

.mhv-article-hero h1 {
    max-width: 1000px;
    margin: 9px 0 16px;
    color: #fff;
    font-size: clamp(38px, 5.4vw, 66px);
    font-weight: 1000;
    letter-spacing: -.045em;
    line-height: 1.01;
}

.mhv-article-hero p {
    max-width: 880px;
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 17px;
    line-height: 1.65;
}

.mhv-article-hero__badge {
    display: grid;
    min-height: 190px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.045);
    text-align: center;
}

.mhv-article-hero__badge span,
.mhv-article-hero__badge small {
    color: rgba(255,255,255,.62);
}

.mhv-article-hero__badge strong {
    display: block;
    margin: 4px 0;
    color: var(--mhv-red);
    font-size: 28px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 29px;
    align-items: start;
    margin-top: 29px;
}

.mhv-article-main {
    min-width: 0;
}

.mhv-answer-box {
    padding: 29px;
    border-left: 6px solid var(--mhv-red);
    background: #fff0ec;
}

.mhv-answer-box span {
    color: #b42a11;
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-answer-box p {
    margin: 7px 0 0;
    color: #542115;
    font-size: 19px;
    font-weight: 750;
    line-height: 1.56;
}

.mhv-content-section {
    margin-top: 18px;
    padding: clamp(26px, 4vw, 43px);
    border: 1px solid var(--mhv-border);
    background: #fff;
}

.mhv-content-section h2 {
    margin: 0 0 18px;
    color: var(--mhv-black);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 1000;
    letter-spacing: -.035em;
    line-height: 1.03;
    text-transform: uppercase;
}

.mhv-content-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.76;
}

.mhv-fact-strip {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 8px 15px;
    margin-top: 20px;
    padding: 20px;
    background: var(--mhv-soft);
}

.mhv-fact-strip span {
    color: var(--mhv-muted);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-fact-strip strong {
    color: var(--mhv-black);
}

.mhv-checklist {
    display: grid;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.mhv-checklist li {
    position: relative;
    padding: 13px 15px 13px 44px;
    background: var(--mhv-soft);
    line-height: 1.52;
}

.mhv-checklist li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 12px;
    color: var(--mhv-red);
    font-weight: 1000;
}

.mhv-route-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.mhv-route-grid > div {
    padding: 20px;
    border-top: 4px solid var(--mhv-red);
    background: var(--mhv-soft);
}

.mhv-route-grid strong {
    color: var(--mhv-black);
}

.mhv-route-grid p {
    margin: 7px 0 0;
    font-size: 14px;
    line-height: 1.56;
}

.mhv-sources {
    display: grid;
    gap: 10px;
}

.mhv-sources a {
    display: grid;
    padding: 18px;
    border: 1px solid var(--mhv-border);
    color: var(--mhv-black);
    text-decoration: none;
}

.mhv-sources a:hover {
    border-color: var(--mhv-red);
}

.mhv-sources span {
    color: var(--mhv-muted);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-sources strong {
    margin-top: 3px;
}

.mhv-warning {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid #e3c59a;
    background: #fff8e9;
}

.mhv-warning p {
    margin-bottom: 0;
    color: #675131;
    line-height: 1.65;
}

.mhv-product-section__head {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mhv-product-section__head h2 {
    margin-bottom: 0;
}

.mhv-product-section__head > a {
    color: var(--mhv-red-dark);
    font-size: 12px;
    font-weight: 1000;
    text-decoration: none;
    text-transform: uppercase;
}

.mhv-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.mhv-product-card {
    border: 1px solid var(--mhv-border);
    background: #fff;
}

.mhv-product-card__image {
    display: grid;
    aspect-ratio: 1 / .82;
    place-items: center;
    overflow: hidden;
    background: var(--mhv-soft);
    color: var(--mhv-red);
    font-size: 30px;
    font-weight: 1000;
}

.mhv-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mhv-product-card__body {
    padding: 14px;
}

.mhv-product-card h3 {
    margin: 0 0 9px;
    font-size: 15px;
    line-height: 1.35;
}

.mhv-product-card h3 a {
    color: var(--mhv-black);
    text-decoration: none;
}

.mhv-product-card__price {
    color: var(--mhv-red-dark);
    font-weight: 1000;
}

.mhv-product-card__link {
    display: inline-block;
    margin-top: 10px;
    color: var(--mhv-black);
    font-size: 11px;
    font-weight: 1000;
    text-decoration: none;
    text-transform: uppercase;
}

.mhv-legal-note {
    margin-top: 18px;
    padding: 23px;
    border-left: 5px solid var(--mhv-red);
    background: var(--mhv-soft);
}

.mhv-legal-note p {
    margin-bottom: 0;
    color: var(--mhv-muted);
    line-height: 1.62;
}

.mhv-article-sidebar {
    position: sticky;
    top: 25px;
    display: grid;
    gap: 15px;
}

.mhv-sidebar-card {
    padding: 24px;
    border: 1px solid var(--mhv-border);
    background: #fff;
}

.mhv-sidebar-card h3 {
    margin: 0 0 15px;
    color: var(--mhv-black);
    font-size: 23px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-sidebar-card--cta {
    border: 0;
    background: var(--mhv-black);
    color: #fff;
}

.mhv-sidebar-card--cta > span {
    color: var(--mhv-red);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-sidebar-card--cta h3 {
    margin-top: 7px;
    color: #fff;
    font-size: 30px;
}

.mhv-sidebar-card--cta p {
    color: rgba(255,255,255,.65);
    line-height: 1.57;
}

.mhv-sidebar-card--cta a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 17px;
    padding: 0 14px;
    background: var(--mhv-red);
    color: #fff;
    font-weight: 1000;
    text-decoration: none;
    text-transform: uppercase;
}

.mhv-sidebar-card dl,
.mhv-sidebar-card dt,
.mhv-sidebar-card dd {
    margin: 0;
}

.mhv-sidebar-card dl {
    display: grid;
    gap: 10px;
}

.mhv-sidebar-card dl > div {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--mhv-border);
}

.mhv-sidebar-card dt {
    color: var(--mhv-muted);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
}

.mhv-sidebar-card dd {
    margin-top: 3px;
    color: var(--mhv-black);
    font-weight: 700;
}

.mhv-sidebar-link {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--mhv-border);
    color: var(--mhv-black);
    font-weight: 750;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .mhv-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mhv-browser {
        grid-template-columns: 285px minmax(0, 1fr);
    }

    .mhv-results {
        grid-template-columns: 1fr;
    }

    .mhv-live-products__grid,
    .mhv-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mhv-article-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
    }
}

@media (max-width: 820px) {
    .mhv-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mhv-stats > div:nth-child(2) {
        border-right: 0;
    }

    .mhv-stats > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--mhv-border);
    }

    .mhv-browser,
    .mhv-source-note,
    .mhv-article-layout,
    .mhv-article-hero {
        grid-template-columns: 1fr;
    }

    .mhv-filter-panel,
    .mhv-article-sidebar {
        position: static;
    }

    .mhv-article-hero__badge {
        min-height: 125px;
    }
}

@media (max-width: 620px) {
    .mhv-app,
    .mhv-article {
        width: min(100% - 16px, 1460px);
        margin-top: 14px;
    }

    .mhv-hero,
    .mhv-hero__content {
        min-height: 610px;
    }

    .mhv-hero__content {
        padding: 30px 18px;
    }

    .mhv-hero h1 {
        font-size: 52px;
    }

    .mhv-search-form {
        grid-template-columns: 1fr;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }

    .mhv-search-form input,
    .mhv-search-form button {
        min-height: 55px;
    }

    .mhv-search-form button {
        margin-top: 7px;
    }

    .mhv-section-heading,
    .mhv-results-head,
    .mhv-product-section__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .mhv-category-grid,
    .mhv-live-products__grid,
    .mhv-product-grid,
    .mhv-route-grid {
        grid-template-columns: 1fr;
    }

    .mhv-category-card {
        min-height: 150px;
    }

    .mhv-content-section {
        padding: 23px 17px;
    }

    .mhv-fact-strip {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   Vraagbaak-detailpagina v1.2
   Dezelfde themaheader en footer als de Vraagbaak-hoofdpagina
   ========================================================= */

body.mhv-question-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

body.mhv-question-page header.site-header,
body.mhv-question-page .elementor-location-header,
body.mhv-question-page footer.site-footer,
body.mhv-question-page .elementor-location-footer,
body.mhv-question-page #colophon {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 20;
    width: 100%;
}

/* Footerwidgets nooit verbergen door de full-width Vraagbaak. */
body.mhv-question-page footer .widget-area,
body.mhv-question-page footer .sidebar,
body.mhv-question-page .elementor-location-footer .widget-area {
    display: block !important;
    visibility: visible !important;
}

/* Alleen een echte contentzijbalk van het thema uitschakelen. */
body.mhv-question-page #secondary,
body.mhv-question-page .site-content > aside.widget-area,
body.mhv-question-page .content-area + aside.widget-area {
    display: none !important;
}

body.mhv-question-page .site-content,
body.mhv-question-page .content-area,
body.mhv-question-page main#primary,
body.mhv-question-page .site-main {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    float: none !important;
}

body.mhv-question-page .mhv-question-page-shell {
    position: relative;
    z-index: 1;
    left: 50%;
    width: 100vw;
    width: 100dvw;
    max-width: none;
    margin-right: 0;
    margin-left: -50vw;
    margin-left: -50dvw;
    padding: 0;
    overflow: clip;
}

body.mhv-question-page .mhv-article {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 64px;
    background: #fff;
}

/* Volledig brede hero, maar tekst blijft netjes uitgelijnd. */
body.mhv-question-page .mhv-article-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
    gap: 28px;
    padding: 46px max(20px, calc((100dvw - 1800px) / 2 + 20px));
    align-items: center;
}

body.mhv-question-page .mhv-article-hero__copy {
    min-width: 0;
}

body.mhv-question-page .mhv-article-hero h1 {
    max-width: 1120px;
    margin: 8px 0 14px;
    font-size: clamp(30px, 3.4vw, 52px);
    letter-spacing: -.035em;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

body.mhv-question-page .mhv-article-hero p {
    max-width: 900px;
    font-size: 16px;
    line-height: 1.6;
}

body.mhv-question-page .mhv-article-hero__badge {
    min-height: 145px;
    padding: 18px;
}

body.mhv-question-page .mhv-article-hero__badge strong {
    font-size: 22px;
}

/* Bijna volledige schermbreedte op desktop. */
body.mhv-question-page .mhv-breadcrumbs,
body.mhv-question-page .mhv-article-layout {
    width: calc(100% - 24px);
    max-width: 1800px;
    margin-right: auto;
    margin-left: auto;
}

body.mhv-question-page .mhv-breadcrumbs {
    padding-top: 18px;
}

body.mhv-question-page .mhv-article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(285px, 340px);
    gap: 18px;
    margin-top: 18px;
}

/* Sidebar beweegt normaal mee met de pagina en blijft niet vastplakken. */
body.mhv-question-page .mhv-article-sidebar {
    position: static !important;
    top: auto !important;
    align-self: start;
}

body.mhv-question-page .mhv-content-section {
    margin-top: 14px;
    padding: clamp(22px, 2.5vw, 34px);
}

body.mhv-question-page .mhv-content-section h2 {
    margin-bottom: 14px;
    font-size: clamp(23px, 2vw, 32px);
    letter-spacing: -.025em;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

body.mhv-question-page .mhv-answer-box {
    padding: 23px 25px;
}

body.mhv-question-page .mhv-answer-box p {
    font-size: 17px;
}

body.mhv-question-page .mhv-sidebar-card h3 {
    font-size: 19px;
    line-height: 1.15;
}

body.mhv-question-page .mhv-sidebar-card--cta h3 {
    font-size: 24px;
}

body.mhv-question-page .mhv-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Standaard paginatitel van het thema niet dubbel boven de eigen hero tonen. */
body.mhv-question-page main#primary > .page-header,
body.mhv-question-page main#primary > article > .entry-header,
body.mhv-question-page .mhv-question-page-shell + .page-header {
    display: none !important;
}

@media (max-width: 1180px) {
    body.mhv-question-page .mhv-article-layout {
        grid-template-columns: minmax(0, 1fr) 285px;
    }

    body.mhv-question-page .mhv-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.mhv-question-page .mhv-article-hero,
    body.mhv-question-page .mhv-article-layout {
        grid-template-columns: 1fr;
    }

    body.mhv-question-page .mhv-article-hero {
        padding: 34px 18px;
    }

    body.mhv-question-page .mhv-article-hero__badge {
        min-height: 100px;
    }

    body.mhv-question-page .mhv-article-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.mhv-question-page .mhv-sidebar-card--cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    body.mhv-question-page .mhv-question-page-shell {
        overflow: hidden;
    }

    body.mhv-question-page .mhv-article {
        padding-bottom: 38px;
    }

    body.mhv-question-page .mhv-breadcrumbs,
    body.mhv-question-page .mhv-article-layout {
        width: calc(100% - 12px);
    }

    body.mhv-question-page .mhv-breadcrumbs {
        padding-top: 11px;
        font-size: 11px;
    }

    body.mhv-question-page .mhv-article-hero {
        gap: 18px;
        padding: 27px 14px;
    }

    body.mhv-question-page .mhv-article-hero h1 {
        font-size: clamp(27px, 9vw, 36px);
        line-height: 1.12;
    }

    body.mhv-question-page .mhv-article-hero p {
        font-size: 14px;
    }

    body.mhv-question-page .mhv-article-hero__badge {
        display: none;
    }

    body.mhv-question-page .mhv-answer-box,
    body.mhv-question-page .mhv-content-section,
    body.mhv-question-page .mhv-sidebar-card {
        padding: 18px 15px;
    }

    body.mhv-question-page .mhv-content-section h2 {
        font-size: 23px;
    }

    body.mhv-question-page .mhv-answer-box p {
        font-size: 15px;
    }

    body.mhv-question-page .mhv-route-grid,
    body.mhv-question-page .mhv-product-grid,
    body.mhv-question-page .mhv-article-sidebar {
        grid-template-columns: 1fr;
    }

    body.mhv-question-page .mhv-product-section__head {
        align-items: flex-start;
    }

    body.mhv-question-page .mhv-product-section__head > a {
        margin-top: 3px;
    }
}
