.mch-home {
    --mch-orange: #ff7900;
    --mch-orange-dark: #e96200;
    --mch-blue: #0870c9;
    --mch-blue-dark: #034b91;
    --mch-navy: #071d2d;
    --mch-text: #102334;
    --mch-muted: #657687;

    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    background: #fff;
    color: var(--mch-text);
    overflow: hidden;
}

.mch-home *,
.mch-home *::before,
.mch-home *::after {
    box-sizing: border-box;
}

.mch-home a {
    text-decoration: none;
}

.mch-svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.mch-shell {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}


/* HERO */

.mch-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #071d2d;
}

.mch-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.mch-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 19, 30, .94) 0%,
            rgba(3, 19, 30, .77) 28%,
            rgba(3, 19, 30, .34) 52%,
            rgba(3, 19, 30, .08) 72%
        ),
        linear-gradient(
            0deg,
            rgba(4, 19, 30, .34),
            rgba(4, 19, 30, 0) 45%
        );
}

.mch-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding-top: 46px;
    padding-bottom: 96px;
}

.mch-hero__copy {
    max-width: 610px;
    color: #fff;
}

.mch-eyebrow {
    margin-bottom: 13px;
    color: #ff9a27;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
}

.mch-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 4.4vw, 68px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.035em;
}

.mch-hero h1 span {
    display: inline-block;
    color: var(--mch-orange);
}

.mch-hero__subtitle {
    max-width: 590px;
    margin: 23px 0 0;
    color: rgba(255,255,255,.96);
    font-size: 20px;
    line-height: 1.52;
}

.mch-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.mch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.mch-btn:hover {
    transform: translateY(-1px);
}

.mch-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.mch-btn--orange {
    background: var(--mch-orange);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,121,0,.28);
}

.mch-btn--orange:hover {
    color: #fff;
    background: var(--mch-orange-dark);
}

.mch-btn--white {
    background: #fff;
    color: #075fa9;
    box-shadow: 0 8px 22px rgba(0,0,0,.13);
}

.mch-btn--white:hover {
    color: #034b91;
}

.mch-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.mch-hero__tags span {
    padding: 6px 11px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(8,27,40,.42);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    backdrop-filter: blur(3px);
}


/* MAIN MAP PANEL */

.mch-map-panel {
    position: relative;
    z-index: 5;
    width: min(1280px, calc(100% - 48px));
    margin: -62px auto 0;
    padding: 17px;
    border: 1px solid #e4e9ee;
    border-radius: 20px;
    background: #fff;
    box-shadow:
        0 22px 55px rgba(17,39,58,.14);
}

.mch-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.mch-map-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 13px;
    isolation: isolate;
}

.mch-map-card__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mch-map-card__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.mch-map-card--camper .mch-map-card__shade {
    background:
        linear-gradient(
            90deg,
            rgba(241,103,0,.98) 0%,
            rgba(240,103,0,.91) 32%,
            rgba(240,103,0,.47) 57%,
            rgba(240,103,0,.06) 85%
        );
}

.mch-map-card--travel .mch-map-card__shade {
    background:
        linear-gradient(
            90deg,
            rgba(0,74,151,.98) 0%,
            rgba(0,83,167,.91) 34%,
            rgba(0,91,183,.50) 60%,
            rgba(0,90,180,.08) 88%
        );
}

.mch-map-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 320px;
    width: 66%;
    padding: 24px 24px 20px;
    color: #fff;
}

.mch-map-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #fff;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.05;
}

.mch-map-card h2 svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.mch-map-card p {
    margin: 8px 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.mch-map-card ul {
    display: grid;
    gap: 7px;
    margin: 3px 0 16px;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 14px;
}

.mch-map-card li {
    position: relative;
    padding-left: 21px;
}

.mch-map-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
}

.mch-map-card__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 39px;
    margin-top: auto;
    padding: 0 15px;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.mch-map-card--camper
.mch-map-card__button {
    color: #e96200;
}

.mch-map-card--travel
.mch-map-card__button {
    color: #075fa9;
}


/* QUICK SEARCH */

.mch-quick {
    width: min(1280px, calc(100% - 48px));
    margin: 26px auto 62px;
}

.mch-quick > h2 {
    margin: 0 0 16px;
    color: #152735;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.1;
}

.mch-quick__grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 13px;
}

.mch-quick__grid > a {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 6px;
    border: 1px solid #e2e7ec;
    border-radius: 11px;
    background: #fff;
    color: #172736;
    text-align: center;
    box-shadow:
        0 3px 12px rgba(22,42,58,.035);
    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
}

.mch-quick__grid > a:hover {
    color: #172736;
    transform: translateY(-2px);
    border-color: #d1d9e0;
    box-shadow:
        0 10px 22px rgba(22,42,58,.09);
}

.mch-quick__grid > a > span:last-child {
    font-size: 13px;
    font-weight: 800;
}

.mch-quick__icon {
    display: grid;
    width: 49px;
    height: 49px;
    place-items: center;
}

.mch-quick__icon svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mch-c-green {
    color: #379a35;
}

.mch-c-blue {
    color: #0868bd;
}

.mch-c-orange {
    color: #ff7900;
}

.mch-c-purple {
    color: #7c3aed;
}


/* TABLET */

@media (max-width: 1000px) {

    .mch-shell,
    .mch-map-panel,
    .mch-quick {
        width: min(100% - 32px, 1280px);
    }

    .mch-hero {
        min-height: 480px;
    }

    .mch-hero__content {
        min-height: 480px;
    }

    .mch-map-grid {
        grid-template-columns: 1fr;
    }

    .mch-map-card {
        min-height: 330px;
    }

    .mch-map-card__content {
        min-height: 330px;
        width: 64%;
    }

    .mch-quick__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* MOBILE */

@media (max-width: 640px) {

    .mch-shell,
    .mch-map-panel,
    .mch-quick {
        width: calc(100% - 24px);
    }

    .mch-hero {
        min-height: 560px;
    }

    .mch-hero__image {
        object-position: 64% center;
    }

    .mch-hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(3,19,30,.91) 0%,
                rgba(3,19,30,.62) 70%,
                rgba(3,19,30,.32) 100%
            ),
            linear-gradient(
                0deg,
                rgba(3,19,30,.70),
                transparent 65%
            );
    }

    .mch-hero__content {
        min-height: 560px;
        align-items: flex-end;
        padding-top: 36px;
        padding-bottom: 82px;
    }

    .mch-hero h1 {
        font-size: 43px;
    }

    .mch-hero__subtitle {
        font-size: 17px;
    }

    .mch-btn {
        width: 100%;
    }

    .mch-map-panel {
        margin-top: -42px;
        padding: 10px;
        border-radius: 15px;
    }

    .mch-map-card {
        min-height: 350px;
    }

    .mch-map-card__content {
        width: 82%;
        min-height: 350px;
        padding: 22px 18px 18px;
    }

    .mch-map-card h2 {
        font-size: 27px;
    }

    .mch-map-card p {
        font-size: 15px;
    }

    .mch-map-card ul {
        font-size: 13px;
    }

    .mch-quick {
        margin-top: 24px;
        margin-bottom: 44px;
    }

    .mch-quick__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .mch-quick__grid > a {
        min-height: 100px;
    }
}


/* ==========================================================
   MYCAMPER STEP 7B
   NOW ON MYCAMPER + LEGISLATION
   ========================================================== */

.mch-quick {
    margin-bottom: 34px;
}

.mch-now {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto 58px;
}

.mch-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.mch-section-heading h2 {
    margin: 0;
    color: #142534;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.mch-now__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, 1.55fr);
    gap: 18px;
}

.mch-featured-article {
    min-width: 0;
}

.mch-featured-article__link {
    position: relative;
    display: block;
    height: 100%;
    min-height: 426px;
    overflow: hidden;
    border-radius: 12px;
    background: #0a2234;
    color: #fff;
    box-shadow:
        0 7px 24px rgba(15,38,55,.10);
}

.mch-featured-article__link:hover {
    color: #fff;
}

.mch-featured-article img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.mch-featured-article__link:hover img {
    transform: scale(1.025);
}

.mch-featured-article__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(4,23,37,.94) 0%,
            rgba(4,23,37,.71) 38%,
            rgba(4,23,37,.12) 76%
        );
}

.mch-featured-article__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 25px 25px 22px;
}

.mch-featured-article__badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 9px;
    border-radius: 5px;
    background: #ff7900;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
}

.mch-featured-article h3 {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.12;
}

.mch-featured-article p {
    max-width: 550px;
    margin: 11px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.45;
}

.mch-featured-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 13px;
    color: rgba(255,255,255,.86);
    font-size: 12px;
}

.mch-featured-article__meta strong {
    color: #ff9a27;
}


.mch-now__secondary {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mch-small-article {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e2e7ec;
    border-radius: 11px;
    background: #fff;
    box-shadow:
        0 5px 18px rgba(17,39,58,.055);
}

.mch-small-article > a {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: #152735;
}

.mch-small-article > a:hover {
    color: #152735;
}

.mch-small-article__media {
    position: relative;
    height: 132px;
    overflow: hidden;
    background: #edf1f4;
}

.mch-small-article__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.mch-small-article:hover
.mch-small-article__media img {
    transform: scale(1.035);
}

.mch-small-article__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 12px 14px 11px;
}

.mch-small-article h3 {
    margin: 0;
    color: #152735;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.22;
}

.mch-small-article p {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0 9px;
    color: #687786;
    font-size: 12px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mch-small-article time {
    margin-top: auto;
    color: #7d8892;
    font-size: 11px;
}


.mch-legislation {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 17px 20px;
    border: 1px solid #87acd0;
    border-radius: 10px;
    background:
        linear-gradient(
            90deg,
            #fff 0%,
            #f8fbfd 100%
        );
}

.mch-legislation__icon {
    display: grid;
    width: 61px;
    height: 61px;
    place-items: center;
    color: #8e4309;
}

.mch-legislation__icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mch-legislation__copy h3 {
    margin: 0 0 2px;
    color: #182a38;
    font-size: 21px;
    font-weight: 800;
}

.mch-legislation__copy strong {
    display: block;
    color: #253744;
    font-size: 14px;
}

.mch-legislation__copy p {
    margin: 3px 0 0;
    color: #71808d;
    font-size: 13px;
}

.mch-legislation__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #82909b;
    border-radius: 6px;
    background: #fff;
    color: #243744;
    font-size: 13px;
    font-weight: 800;
}

.mch-legislation__button:hover {
    border-color: #ff7900;
    color: #e96200;
}


@media (max-width: 1000px) {

    .mch-now {
        width: min(100% - 32px, 1280px);
    }

    .mch-now__grid {
        grid-template-columns: 1fr;
    }

    .mch-featured-article__link {
        min-height: 420px;
    }

}


@media (max-width: 640px) {

    .mch-now {
        width: calc(100% - 24px);
        margin-bottom: 42px;
    }

    .mch-section-heading h2 {
        font-size: 24px;
    }

    .mch-featured-article__link {
        min-height: 390px;
    }

    .mch-featured-article__content {
        padding: 20px 18px;
    }

    .mch-featured-article h3 {
        font-size: 25px;
    }

    .mch-featured-article p {
        font-size: 13px;
    }

    .mch-now__secondary {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .mch-small-article > a {
        display: grid;
        grid-template-columns:
            42%
            58%;
        min-height: 132px;
    }

    .mch-small-article__media {
        height: 100%;
        min-height: 132px;
    }

    .mch-small-article__body {
        padding: 11px 12px;
    }

    .mch-small-article h3 {
        font-size: 15px;
    }

    .mch-legislation {
        grid-template-columns:
            auto
            minmax(0, 1fr);
        gap: 11px;
        padding: 15px;
    }

    .mch-legislation__icon {
        width: 47px;
        height: 47px;
    }

    .mch-legislation__icon svg {
        width: 43px;
        height: 43px;
    }

    .mch-legislation__button {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 3px;
    }

}


/* ==========================================================
   MYCAMPER STEP 7E
   FULL-WIDTH ARTICLES + TRUE 16:9 IMAGES
   ========================================================== */


/*
 * Wider content area.
 *
 * Almost full template width on large screens,
 * while preserving comfortable side gutters.
 */

.mch-now {
    width: min(1600px, calc(100% - 40px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}


/*
 * Main articles layout.
 *
 * Large featured card + four secondary cards.
 */

.mch-now__grid {
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 1.92fr);
    gap: 20px;
    align-items: stretch;
}


/* ==========================================================
   FEATURED ARTICLE
   Image is now a real 16:9 block.
   Text sits underneath instead of forcing image cropping.
   ========================================================== */

.mch-featured-article {
    height: 100%;
}

.mch-featured-article__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #102535;
}


/*
 * Remove the old absolute full-card image behaviour.
 */

.mch-featured-article img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
}


/*
 * We no longer need the full-image dark overlay,
 * because text has its own dark panel.
 */

.mch-featured-article__shade {
    display: none;
}


/*
 * Content becomes a normal lower panel.
 */

.mch-featured-article__content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;

    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 22px 24px 20px;

    background:
        linear-gradient(
            135deg,
            #102535 0%,
            #17384c 100%
        );
}


.mch-featured-article__badge {
    align-self: flex-start;
    margin-bottom: 9px;
}


.mch-featured-article h3 {
    max-width: none;
    font-size: 27px;
    line-height: 1.16;
}


.mch-featured-article p {
    max-width: none;
    margin-top: 9px;
    line-height: 1.45;
}


.mch-featured-article__meta {
    margin-top: auto;
    padding-top: 13px;
}


/* ==========================================================
   FOUR SECONDARY ARTICLES
   Each image gets its natural 16:9 ratio.
   ========================================================== */

.mch-now__secondary {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    grid-template-rows:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.mch-small-article {
    height: 100%;
}


.mch-small-article > a {
    height: 100%;
}


/*
 * Replace fixed 132px crop with true 16:9 media.
 */

.mch-small-article__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
}


.mch-small-article__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.mch-small-article__body {
    padding: 13px 15px 12px;
}


.mch-small-article h3 {
    font-size: 16px;
    line-height: 1.25;
}


.mch-small-article p {
    margin-top: 6px;
    margin-bottom: 8px;

    -webkit-line-clamp: 2;
}


/* ==========================================================
   LEGISLATION
   Match the wider article section.
   ========================================================== */

.mch-legislation {
    margin-top: 20px;
}


/* ==========================================================
   LARGE DESKTOP
   ========================================================== */

@media (min-width: 1500px) {

    .mch-now {
        width: min(1600px, calc(100% - 56px));
    }

    .mch-now__grid {
        gap: 22px;
    }

    .mch-now__secondary {
        gap: 20px;
    }

    .mch-featured-article h3 {
        font-size: 29px;
    }

    .mch-small-article__body {
        padding:
            14px
            16px
            13px;
    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1100px) {

    .mch-now {
        width: calc(100% - 32px);
    }

    .mch-now__grid {
        grid-template-columns: 1fr;
    }

    .mch-featured-article__link {
        height: auto;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 640px) {

    .mch-now {
        width: calc(100% - 24px);
    }

    .mch-featured-article__link {
        min-height: 0;
    }

    .mch-featured-article img {
        aspect-ratio: 16 / 9;
    }

    .mch-featured-article__content {
        padding: 18px 17px 17px;
    }

    .mch-featured-article h3 {
        font-size: 23px;
    }

    .mch-now__secondary {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    /*
     * Override the previous mobile horizontal-card rule.
     * We deliberately keep the image 16:9 here too.
     */

    .mch-small-article > a {
        display: flex;
        grid-template-columns: none;
        min-height: 0;
        flex-direction: column;
    }

    .mch-small-article__media {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

}


/* ==========================================================
   MYCAMPER STEP 7E-r1
   FEATURED CARD NATURAL HEIGHT
   ========================================================== */

.mch-now__grid {
    align-items: start;
}

.mch-featured-article {
    height: auto;
    align-self: start;
}

.mch-featured-article__link {
    height: auto;
    min-height: 0;
}

.mch-featured-article__content {
    flex: 0 0 auto;
    min-height: 0;
}

.mch-featured-article__meta {
    margin-top: 13px;
    padding-top: 0;
}


/*
 * Secondary 2x2 area keeps its own natural height.
 */

.mch-now__secondary {
    align-self: start;
}


/*
 * Large screens:
 * slightly tighter featured copy so the left card
 * remains visually balanced with the right grid.
 */

@media (min-width: 1101px) {

    .mch-featured-article__content {
        padding:
            19px
            22px
            18px;
    }

    .mch-featured-article h3 {
        font-size: 26px;
    }

    .mch-featured-article p {
        margin-top: 8px;
    }

}


/* ==========================================================
   MYCAMPER STEP 7E-r2
   BALANCED FEATURED / SECONDARY GRID
   ========================================================== */

/*
 * The previous ~36/64 split made the right 2x2 grid
 * substantially taller than the featured card.
 *
 * A near 50/50 split naturally:
 * - enlarges the featured 16:9 image,
 * - reduces the secondary image/card heights,
 * - closes the empty space below the featured card,
 * - preserves all original image ratios.
 */

@media (min-width: 1101px) {

    .mch-now__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        align-items: start;
    }


    /*
     * With less width available on each secondary card,
     * keep their copy compact.
     */

    .mch-small-article__body {
        padding:
            12px
            14px
            11px;
    }

    .mch-small-article h3 {
        font-size: 15px;
        line-height: 1.22;
    }

    .mch-small-article p {
        font-size: 11.5px;
        line-height: 1.32;
    }


    /*
     * Featured gets more horizontal room.
     */

    .mch-featured-article__content {
        padding:
            19px
            22px
            18px;
    }

    .mch-featured-article h3 {
        font-size: 27px;
        line-height: 1.15;
    }

}


/*
 * Very wide monitors:
 * do not allow the right cards to become excessively tall.
 */

@media (min-width: 1550px) {

    .mch-now__grid {
        grid-template-columns:
            minmax(0, 1.03fr)
            minmax(0, .97fr);
    }

}


/* ==========================================================
   MYCAMPER STEP 7E-r3
   EQUALIZE FEATURED + 4 SECONDARY ARTICLES HEIGHT
   ========================================================== */

@media (min-width: 1101px) {

    /*
     * Make the 2-column "Τώρα στο MyCamper" area stretch
     * so the left featured article follows the full height
     * of the right 2x2 secondary grid.
     */
    .mch-now__grid {
        align-items: stretch;
    }

    .mch-now__secondary {
        height: 100%;
        align-self: stretch;
    }

    /*
     * Featured article stretches vertically.
     */
    .mch-featured-article,
    .mch-featured-article__link {
        height: 100%;
    }

    .mch-featured-article__link {
        display: flex;
        flex-direction: column;
    }

    .mch-featured-article__content {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-bottom: 18px;
    }

    /*
     * Secondary cards fill their own grid cells more evenly.
     */
    .mch-small-article,
    .mch-small-article__link {
        height: 100%;
    }

    .mch-small-article__link {
        display: flex;
        flex-direction: column;
    }

    .mch-small-article__body {
        flex: 1 1 auto;
        padding: 12px 14px 11px;
    }

    /*
     * Tiny compaction on the right column so both sides
     * meet more closely at the bottom.
     */
    .mch-small-article h3 {
        line-height: 1.20;
    }

    .mch-small-article p {
        line-height: 1.30;
    }
}


/* ==========================================================
   MYCAMPER STEP 8A
   ROADTRIPS & TRAVEL EXPERIENCES
   ========================================================== */

.mch-roadtrips {
    width: min(1600px, calc(100% - 40px));
    margin:
        0 auto
        62px;
}


.mch-roadtrips__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 17px;
}


.mch-roadtrips__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #f27616;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
}


.mch-roadtrips__heading h2 {
    margin: 0;
    color: #142534;
    font-size: 29px;
    font-weight: 850;
    line-height: 1.1;
}


.mch-roadtrips__all {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid #d8e0e6;
    border-radius: 7px;
    background: #fff;
    color: #203645;
    font-size: 13px;
    font-weight: 800;
}


.mch-roadtrips__all:hover {
    border-color: #ff7900;
    color: #e96500;
}


.mch-roadtrips__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 19px;
}


.mch-roadtrip-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e0e6eb;
    border-radius: 12px;
    background: #fff;
    box-shadow:
        0 7px 23px rgba(20,43,60,.07);
}


.mch-roadtrip-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: #162937;
}


.mch-roadtrip-card__link:hover {
    color: #162937;
}


.mch-roadtrip-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8edf1;
}


.mch-roadtrip-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s ease;
}


.mch-roadtrip-card:hover
.mch-roadtrip-card__media img {
    transform: scale(1.025);
}


.mch-roadtrip-card__badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 5px;
    background: rgba(255,121,0,.96);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .05em;
}


.mch-roadtrip-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding:
        16px
        17px
        14px;
}


.mch-roadtrip-card h3 {
    margin: 0;
    color: #172b39;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.22;
}


.mch-roadtrip-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 14px;
    color: #6f7d88;
    font-size: 13px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.mch-roadtrip-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 3px;
    color: #87919a;
    font-size: 11px;
}


.mch-roadtrip-card__footer span {
    color: #d95f00;
    font-weight: 800;
}


@media (max-width: 1100px) {

    .mch-roadtrips {
        width: calc(100% - 32px);
    }

    .mch-roadtrips__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mch-roadtrip-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }

}


@media (max-width: 640px) {

    .mch-roadtrips {
        width: calc(100% - 24px);
        margin-bottom: 45px;
    }

    .mch-roadtrips__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .mch-roadtrips__heading h2 {
        font-size: 24px;
    }

    .mch-roadtrips__all {
        min-height: 37px;
    }

    .mch-roadtrips__grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .mch-roadtrip-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .mch-roadtrip-card h3 {
        font-size: 18px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8A-r1
   ROADTRIPS FEATURED 2 + 1 + 1 + 1
   ========================================================== */


/*
 * Desktop = five equal layout units.
 *
 * Featured card = 2 units.
 * Three secondary cards = 1 unit each.
 */

@media (min-width: 1201px) {

    .mch-roadtrips__grid {
        display: grid;

        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap: 18px;
        align-items: stretch;
    }


    .mch-roadtrip-card {
        min-width: 0;
        height: 100%;
    }


    /*
     * First Roadtrip is the visual FEATURED card.
     */

    .mch-roadtrip-card:first-child {
        grid-column: span 2;
    }


    .mch-roadtrip-card__link {
        height: 100%;
    }


    /*
     * Featured card gets a stronger visual hierarchy.
     */

    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__media {
        aspect-ratio: 16 / 9;
    }


    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__body {
        padding:
            18px
            19px
            16px;
    }


    .mch-roadtrip-card:first-child h3 {
        font-size: 22px;
        line-height: 1.18;
    }


    .mch-roadtrip-card:first-child p {
        font-size: 13px;
        line-height: 1.42;
        -webkit-line-clamp: 3;
    }


    /*
     * The three one-position cards are intentionally
     * more compact.
     */

    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__body {
        padding:
            13px
            13px
            12px;
    }


    .mch-roadtrip-card:not(:first-child) h3 {
        font-size: 15px;
        line-height: 1.22;
    }


    .mch-roadtrip-card:not(:first-child) p {
        margin-top: 6px;
        margin-bottom: 9px;
        font-size: 11.5px;
        line-height: 1.33;
        -webkit-line-clamp: 2;
    }


    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__footer {
        font-size: 10px;
    }

}


/*
 * Tablet:
 * featured card uses full first row,
 * remaining three flow below.
 */

@media (min-width: 641px) and (max-width: 1200px) {

    .mch-roadtrips__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .mch-roadtrip-card:first-child {
        grid-column: 1 / -1;
    }


    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__media {
        aspect-ratio: 16 / 7;
    }


    /*
     * Undo the previous 3-card special case.
     */

    .mch-roadtrip-card:last-child {
        grid-column: auto;
        width: auto;
        justify-self: stretch;
    }

}


/*
 * Mobile remains a simple vertical stack.
 */

@media (max-width: 640px) {

    .mch-roadtrips__grid {
        grid-template-columns: 1fr;
    }


    .mch-roadtrip-card:first-child {
        grid-column: auto;
    }


    .mch-roadtrip-card:last-child {
        grid-column: auto;
        width: auto;
    }

}


/* ==========================================================
   MYCAMPER STEP 8A-r2
   ROADTRIPS — ONE VISUAL ROW / 2 + 1 + 1 + 1
   ========================================================== */

@media (min-width: 1201px) {

    /*
     * Common visual height for ALL four cards.
     */
    .mch-roadtrips__grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        grid-auto-rows: 360px;
        gap: 18px;
        align-items: stretch;
    }


    .mch-roadtrip-card {
        height: 360px;
        min-height: 0;
    }


    .mch-roadtrip-card__link {
        height: 100%;
        min-height: 0;
    }


    /* ======================================================
       FEATURED — FIRST CARD / TWO POSITIONS
       ====================================================== */

    .mch-roadtrip-card:first-child {
        position: relative;
        grid-column: span 2;
        overflow: hidden;
        background: #102838;
    }


    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__link {
        position: relative;
        display: block;
        height: 100%;
    }


    /*
     * The image fills the entire featured card.
     */
    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }


    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__media::after {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(
                to bottom,
                rgba(5,20,30,.03) 28%,
                rgba(7,28,41,.28) 55%,
                rgba(8,31,46,.96) 100%
            );

        pointer-events: none;
    }


    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


    /*
     * Badge stays near the top-left.
     */
    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__badge {
        top: 14px;
        bottom: auto;
        left: 14px;
        z-index: 2;
    }


    /*
     * Featured text overlays the photo at the bottom.
     */
    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__body {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;

        display: block;

        padding:
            70px
            22px
            18px;

        background: transparent;
        color: #fff;
    }


    .mch-roadtrip-card:first-child h3 {
        max-width: 92%;
        margin: 0;
        color: #fff;
        font-size: 24px;
        line-height: 1.14;
        text-shadow:
            0 1px 3px
            rgba(0,0,0,.30);
    }


    .mch-roadtrip-card:first-child p {
        display: -webkit-box;
        max-width: 88%;
        margin:
            8px 0
            12px;

        overflow: hidden;

        color:
            rgba(255,255,255,.88);

        font-size: 12px;
        line-height: 1.38;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }


    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__footer {
        display: flex;
        margin-top: 0;
        color:
            rgba(255,255,255,.74);
    }


    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__footer span {
        color: #fff;
        font-weight: 800;
    }


    /* ======================================================
       THREE SMALL CARDS
       ====================================================== */

    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__link {
        display: flex;
        flex-direction: column;
    }


    /*
     * Fixed media height so all small cards align perfectly.
     */
    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__media {
        height: 155px;
        min-height: 155px;
        aspect-ratio: auto;
        flex: 0 0 155px;
    }


    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__body {
        display: flex;
        min-height: 0;
        flex: 1;
        flex-direction: column;

        padding:
            13px
            13px
            11px;
    }


    .mch-roadtrip-card:not(:first-child) h3 {
        display: -webkit-box;
        overflow: hidden;
        margin: 0;

        font-size: 15px;
        line-height: 1.22;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }


    .mch-roadtrip-card:not(:first-child) p {
        display: -webkit-box;
        overflow: hidden;

        margin:
            7px 0
            8px;

        font-size: 11.5px;
        line-height: 1.32;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }


    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__footer {
        margin-top: auto;
        padding-top: 5px;
        font-size: 10px;
    }

}


/*
 * On tablet keep the previous responsive behaviour.
 */
@media (min-width: 641px) and (max-width: 1200px) {

    .mch-roadtrip-card {
        height: auto;
    }

}


/*
 * Mobile remains stacked.
 */
@media (max-width: 640px) {

    .mch-roadtrip-card {
        height: auto;
    }

}


/* ==========================================================
   MYCAMPER STEP 8A-r3
   ROADTRIPS COMPACT HEIGHT
   360px -> 310px
   ========================================================== */

@media (min-width: 1201px) {

    .mch-roadtrips__grid {
        grid-auto-rows: 310px;
    }

    .mch-roadtrip-card {
        height: 310px;
    }


    /*
     * Slightly reduce secondary image height as well,
     * preserving enough space for title/text/footer.
     */
    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__media {
        height: 145px;
        min-height: 145px;
        flex-basis: 145px;
    }


    /*
     * Tighten secondary copy slightly.
     */
    .mch-roadtrip-card:not(:first-child)
    .mch-roadtrip-card__body {
        padding:
            11px
            12px
            10px;
    }

    .mch-roadtrip-card:not(:first-child) p {
        margin:
            5px 0
            6px;
        -webkit-line-clamp: 2;
    }


    /*
     * Featured overlay remains comfortable at 310px.
     */
    .mch-roadtrip-card:first-child
    .mch-roadtrip-card__body {
        padding:
            58px
            20px
            15px;
    }

    .mch-roadtrip-card:first-child h3 {
        font-size: 22px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8C-D DEMO BANNER
   COMMUNITY — HORIZONTAL JOIN CARD
   ========================================================== */

.mch-community-join {
    width:
        min(
            1600px,
            calc(100% - 40px)
        );

    min-height: 148px;

    margin:
        0 auto
        28px;

    display: grid;

    grid-template-columns:
        minmax(300px, 1.05fr)
        minmax(460px, 1.55fr)
        minmax(260px, .72fr);

    overflow: hidden;

    border:
        1px solid
        #9dbbd4;

    border-radius: 11px;

    background: #fff;

    box-shadow:
        0 5px 18px
        rgba(24,51,70,.05);
}


/* LEFT PHOTO */

.mch-community-join__image {
    position: relative;

    min-height: 148px;

    overflow: hidden;

    background: #173346;
}


.mch-community-join__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(9,29,43,.08),
            rgba(9,29,43,0)
        );

    pointer-events: none;
}


.mch-community-join__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
     * Crop toward the camper/road area.
     */
    object-position: 68% center;
}


/* CENTER COPY */

.mch-community-join__content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding:
        19px
        30px;
}


.mch-community-join__content h2 {
    margin:
        0 0
        8px;

    color: #1c2f3d;

    font-size: 20px;
    font-weight: 900;

    line-height: 1.12;
}


.mch-community-join__content ul {
    display: grid;

    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.mch-community-join__content li {
    position: relative;

    padding-left: 21px;

    color: #596a75;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.27;
}


.mch-community-join__content li::before {
    content: "✓";

    position: absolute;

    top: -1px;
    left: 0;

    display: flex;

    width: 15px;
    height: 15px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #63ad37;

    color: #fff;

    font-size: 9px;
    font-weight: 900;

    line-height: 1;
}


/* RIGHT CTA */

.mch-community-join__cta {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding:
        18px
        25px;

    text-align: center;
}


.mch-community-join__register {
    display: inline-flex;

    width: min(100%, 235px);
    min-height: 48px;

    align-items: center;
    justify-content: center;

    padding:
        0 25px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #ff8b18,
            #ff6f00
        );

    color: #fff;

    font-size: 16px;
    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 7px 16px
        rgba(255,111,0,.18);
}


.mch-community-join__register:hover {
    background:
        linear-gradient(
            135deg,
            #ff7900,
            #ec6500
        );

    color: #fff;

    transform: translateY(-1px);
}


.mch-community-join__login {
    margin-top: 10px;

    color: #6a7882;

    font-size: 11px;
}


.mch-community-join__login a {
    color: #1666a8;

    font-weight: 800;

    text-decoration: none;
}


.mch-community-join__login a:hover {
    text-decoration: underline;
}


/* TABLET */

@media (max-width: 1100px) {

    .mch-community-join {
        width:
            calc(100% - 32px);

        grid-template-columns:
            minmax(240px, .9fr)
            minmax(0, 1.4fr);
    }


    .mch-community-join__cta {
        grid-column: 1 / -1;

        flex-direction: row;

        gap: 18px;

        padding:
            14px
            24px;

        border-top:
            1px solid
            #e1e8ed;
    }


    .mch-community-join__login {
        margin-top: 0;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .mch-community-join {
        width:
            calc(100% - 24px);

        grid-template-columns: 1fr;

        margin-bottom: 24px;
    }


    .mch-community-join__image {
        min-height: 180px;
    }


    .mch-community-join__content {
        padding:
            20px
            20px
            16px;
    }


    .mch-community-join__content h2 {
        font-size: 20px;
    }


    .mch-community-join__content li {
        font-size: 12px;
    }


    .mch-community-join__cta {
        grid-column: auto;

        flex-direction: column;

        gap: 0;

        padding:
            7px
            20px
            20px;

        border-top: 0;
    }


    .mch-community-join__register {
        width: 100%;
    }


    .mch-community-join__login {
        margin-top: 9px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8C-E
   COMMUNITY PANORAMIC IMAGE + BETTER DESKTOP BALANCE
   ========================================================== */

@media (min-width: 1101px) {

    /*
     * Approx:
     * image   = 41%
     * content = 38%
     * CTA     = 21%
     */
    .mch-community-join {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(0, 1.25fr)
            minmax(245px, .70fr);

        min-height: 148px;
    }


    .mch-community-join__image {
        min-height: 148px;
    }


    .mch-community-join__image img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        /*
         * New image is already 4:1,
         * so only a very mild crop is needed.
         */
        object-position: 45% center;
    }


    .mch-community-join__content {
        padding:
            17px
            25px;
    }


    .mch-community-join__cta {
        padding:
            16px
            20px;
    }


    .mch-community-join__register {
        width: min(100%, 220px);
    }

}


/* ==========================================================
   MYCAMPER STEP 8D-B
   MANUALLY SELECTED VIDEO CARDS
   ========================================================== */

.mch-videos {
    width:
        min(
            1600px,
            calc(100% - 40px)
        );

    margin:
        0 auto
        34px;
}


.mch-videos__heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
}


.mch-videos__heading h2 {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    color: #1c2f3d;

    font-size: 20px;
    font-weight: 900;

    line-height: 1;
}


.mch-videos__heading-play {
    display: inline-flex;

    width: 23px;
    height: 23px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff7900;

    color: #fff;

    font-size: 10px;

    line-height: 1;
}


.mch-videos__grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 16px;
}


.mch-video-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        #e0e6ea;

    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 5px 16px
        rgba(25,49,66,.06);
}


.mch-video-card__link {
    display: block;

    height: 100%;

    color: inherit;

    text-decoration: none;
}


.mch-video-card__media {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #132a3a;
}


.mch-video-card__media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .28s ease;
}


.mch-video-card:hover
.mch-video-card__media img {
    transform: scale(1.025);
}


.mch-video-card__play {
    position: absolute;

    top: 50%;
    left: 50%;

    display: block;

    width: 48px;
    height: 48px;

    transform:
        translate(
            -50%,
            -50%
        );

    filter:
        drop-shadow(
            0 3px 8px
            rgba(0,0,0,.28)
        );
}


.mch-video-card__play svg {
    display: block;

    width: 100%;
    height: 100%;
}


.mch-video-card__play circle {
    fill:
        rgba(16,30,40,.80);

    stroke:
        rgba(255,255,255,.90);

    stroke-width: 2;
}


.mch-video-card__play path {
    fill: #fff;

    stroke: none;
}


.mch-video-card__body {
    padding:
        12px
        14px
        13px;
}


.mch-video-card__body h3 {
    display: -webkit-box;

    overflow: hidden;

    margin:
        0 0
        7px;

    color: #1c2f3d;

    font-size: 14px;
    font-weight: 850;

    line-height: 1.25;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.mch-video-card__body > span {
    color: #e66a00;

    font-size: 11px;
    font-weight: 800;
}


@media (max-width: 900px) {

    .mch-videos {
        width:
            calc(100% - 32px);
    }


    .mch-videos__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .mch-video-card:last-child {
        grid-column: 1 / -1;

        width:
            calc(50% - 8px);

        justify-self: center;
    }

}


@media (max-width: 600px) {

    .mch-videos {
        width:
            calc(100% - 24px);
    }


    .mch-videos__grid {
        grid-template-columns: 1fr;
    }


    .mch-video-card:last-child {
        grid-column: auto;

        width: auto;
    }

}


/* ==========================================================
   MYCAMPER STEP 8D-C
   VIDEOS + PARTNERS — DEMO 65 / 35
   ========================================================== */

.mch-media-row {
    width:
        min(
            1600px,
            calc(100% - 40px)
        );

    display: grid;

    grid-template-columns:
        minmax(0, 1.8fr)
        minmax(320px, .85fr);

    gap: 22px;

    align-items: start;

    margin:
        0 auto
        40px;
}


/*
 * Videos already have their own section styling.
 * Inside the combined row we remove the old
 * full-page width/margin.
 */

.mch-media-row
.mch-videos {
    width: 100%;

    margin: 0;
}


.mch-media-row
.mch-videos__grid {
    gap: 12px;
}


.mch-media-row
.mch-video-card__body h3 {
    font-size: 13px;
}


/* ==========================================================
   PARTNERS
   ========================================================== */

.mch-partners {
    width: 100%;

    margin: 0;
}


.mch-partners__heading {
    min-height: 23px;

    display: flex;

    align-items: center;

    margin-bottom: 12px;
}


.mch-partners__heading h2 {
    margin: 0;

    color: #1c2f3d;

    font-size: 18px;
    font-weight: 900;

    line-height: 1;
}


.mch-partners__grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 10px;
}


.mch-partner-card {
    display: flex;

    min-width: 0;
    min-height: 110px;

    align-items: center;
    justify-content: center;

    padding:
        15px
        14px;

    overflow: hidden;

    border:
        1px solid
        #e1e6ea;

    border-radius: 9px;

    background: #fff;

    box-shadow:
        0 4px 13px
        rgba(24,49,65,.045);

    text-decoration: none;
}


.mch-partner-card img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 65px;

    object-fit: contain;
}


a.mch-partner-card {
    transition:
        border-color .18s ease,
        transform .18s ease;
}


a.mch-partner-card:hover {
    border-color: #ff9b45;

    transform:
        translateY(-1px);
}


.mch-partners__footer {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    margin-top: 11px;

    color: #e66a00;

    font-size: 11px;
    font-weight: 800;
}


/* TABLET */

@media (max-width: 1100px) {

    .mch-media-row {
        width:
            calc(100% - 32px);

        grid-template-columns: 1fr;
    }


    .mch-partners__grid {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .mch-media-row {
        width:
            calc(100% - 24px);

        gap: 26px;
    }


    .mch-media-row
    .mch-videos__grid {
        grid-template-columns: 1fr;
    }


    .mch-media-row
    .mch-video-card:last-child {
        width: auto;
        grid-column: auto;
    }


    .mch-partners__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .mch-partner-card {
        min-height: 90px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8E-B
   SOCIAL + ACYMAILING NEWSLETTER
   ========================================================== */

.mch-connect {
    width:
        min(
            1600px,
            calc(100% - 40px)
        );

    margin:
        0 auto
        40px;
}


/* ==========================================================
   SOCIAL BAR
   ========================================================== */

.mch-social {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-height: 72px;

    padding:
        12px
        22px;

    border:
        1px solid
        #e0e6ea;

    border-radius:
        11px 11px 0 0;

    background: #fff;
}


.mch-social__title {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #62717b;

    font-size: 12px;
}


.mch-social__title strong {
    color: #1b303e;

    font-size: 17px;
    font-weight: 900;
}


.mch-social__pulse {
    width: 9px;
    height: 9px;

    flex:
        0 0 9px;

    border-radius: 50%;

    background: #ff7900;

    box-shadow:
        0 0 0 5px
        rgba(255,121,0,.11);
}


.mch-social__links {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;
}


.mch-social-link {
    display: inline-flex;

    min-height: 38px;

    align-items: center;

    gap: 7px;

    padding:
        0 12px;

    border:
        1px solid
        #e0e5e9;

    border-radius: 8px;

    background: #f9fafb;

    color: #324956;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .15s ease,
        border-color .15s ease,
        background .15s ease;
}


.mch-social-link:hover {
    transform:
        translateY(-1px);

    border-color: #aebdc7;

    background: #fff;

    color: #172f3e;
}


.mch-social-link__icon {
    display: inline-flex;

    width: 23px;
    height: 23px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 12px;
    font-weight: 900;
}


.mch-social-link--facebook
.mch-social-link__icon {
    background: #1877f2;
}


.mch-social-link--instagram
.mch-social-link__icon {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #e1306c,
            #f59e0b
        );
}


.mch-social-link--youtube
.mch-social-link__icon {
    background: #ff0000;
}


.mch-social-link--tiktok
.mch-social-link__icon {
    background: #141414;
}


/* ==========================================================
   NEWSLETTER
   ========================================================== */

.mch-newsletter {
    display: grid;

    grid-template-columns:
        minmax(320px, .72fr)
        minmax(0, 1.65fr);

    align-items: center;

    gap: 28px;

    min-height: 145px;

    padding:
        25px
        30px;

    overflow: hidden;

    border-radius:
        0 0 11px 11px;

    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(255,139,25,.38),
            transparent 31%
        ),
        linear-gradient(
            120deg,
            #113247 0%,
            #17485f 100%
        );
}


.mch-newsletter__intro {
    display: flex;

    align-items: center;

    gap: 15px;

    color: #fff;
}


.mch-newsletter__mail {
    display: flex;

    width: 54px;
    height: 54px;

    flex:
        0 0 54px;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(255,255,255,.10);

    color: #ff8b22;

    font-size: 27px;
}


.mch-newsletter h2 {
    margin:
        0 0
        4px;

    color: #fff;

    font-size: 23px;
    font-weight: 900;

    line-height: 1.1;
}


.mch-newsletter__intro p {
    max-width: 390px;

    margin: 0;

    color:
        rgba(255,255,255,.70);

    font-size: 11.5px;

    line-height: 1.38;
}


.mch-newsletter__forms {
    min-width: 0;
}


.mch-newsletter__form--mobile {
    display: none;
}


/*
 * AcyMailing remains responsible for submission.
 * We only adapt its visual appearance.
 */

.mch-newsletter__form form {
    margin: 0 !important;
}


.mch-newsletter__form input[type="text"],
.mch-newsletter__form input[type="email"] {
    min-height: 43px !important;

    border:
        1px solid
        rgba(255,255,255,.28) !important;

    border-radius: 7px !important;

    background:
        rgba(255,255,255,.96) !important;

    color: #263a47 !important;

    font-size: 12px !important;
}


.mch-newsletter__form input[type="text"]::placeholder,
.mch-newsletter__form input[type="email"]::placeholder {
    color: #85929a !important;

    opacity: 1;
}


.mch-newsletter__form input[name="Submit"] {
    min-height: 43px !important;

    padding:
        0 20px !important;

    border: 0 !important;

    border-radius: 7px !important;

    background:
        linear-gradient(
            135deg,
            #ff8a18,
            #ff6f00
        ) !important;

    color: #fff !important;

    font-size: 12px !important;
    font-weight: 900 !important;

    cursor: pointer;
}


/*
 * Newsletter banner only needs the registration action.
 * Existing AcyMailing backend remains unchanged.
 */

.mch-newsletter__form
input[name="Submit"][value="Διαγραφή"] {
    display: none !important;
}


/* TABLET */

@media (max-width: 1050px) {

    .mch-connect {
        width:
            calc(100% - 32px);
    }


    .mch-social {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .mch-social__links {
        width: 100%;

        justify-content: flex-start;
    }


    .mch-newsletter {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .mch-connect {
        width:
            calc(100% - 24px);
    }


    .mch-social {
        padding:
            16px;

        border-radius:
            10px 10px 0 0;
    }


    .mch-social__title {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;
    }


    .mch-social__pulse {
        display: none;
    }


    .mch-social__links {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 7px;
    }


    .mch-social-link {
        justify-content: center;
    }


    .mch-newsletter {
        padding:
            22px
            18px;

        border-radius:
            0 0 10px 10px;
    }


    .mch-newsletter__mail {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }


    .mch-newsletter h2 {
        font-size: 21px;
    }


    .mch-newsletter__form--desktop {
        display: none;
    }


    .mch-newsletter__form--mobile {
        display: block;
    }

}


/* ==========================================================
   MYCAMPER STEP 8F-B
   NEW HOMEPAGE FOOTER
   DEV MENU ITEM 942 ONLY
   ========================================================== */


/*
 * Hide the existing Helix footer ONLY on /new-home.
 * Production homepage remains untouched.
 */

body.itemid-942 #sp-footer {
    display: none !important;
}


/* ----------------------------------------------------------
   NEW FOOTER
   ---------------------------------------------------------- */

.mch-footer {
    width: 100%;

    margin-top: 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #101d26 0%,
            #162d3b 52%,
            #0d1b24 100%
        );

    color:
        rgba(255,255,255,.76);
}


.mch-footer__main {
    width:
        min(
            1540px,
            calc(100% - 48px)
        );

    display: grid;

    grid-template-columns:
        minmax(280px, 1.25fr)
        minmax(150px, .55fr)
        minmax(150px, .55fr)
        minmax(280px, .95fr);

    gap:
        clamp(
            28px,
            4vw,
            65px
        );

    margin: 0 auto;

    padding:
        48px 0
        38px;
}


.mch-footer__brand {
    min-width: 0;
}


.mch-footer__logo {
    display: inline-block;

    width: 175px;

    margin-bottom: 14px;
}


.mch-footer__logo img {
    display: block;

    width: 100%;
    height: auto;
}


.mch-footer__brand p {
    max-width: 410px;

    margin:
        0 0
        20px;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.62;
}


.mch-footer__social {
    display: flex;

    gap: 8px;
}


.mch-footer__social a {
    display: inline-flex;

    width: 34px;
    height: 34px;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 8px;

    background:
        rgba(255,255,255,.065);

    color: #fff;

    font-size: 13px;
    font-weight: 900;

    text-decoration: none;

    transition:
        transform .16s ease,
        background .16s ease,
        border-color .16s ease;
}


.mch-footer__social a:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(255,137,32,.8);

    background:
        rgba(255,121,0,.16);
}


.mch-footer__column h3,
.mch-footer__discover strong {
    color: #fff;

    font-weight: 900;
}


.mch-footer__column h3 {
    margin:
        4px 0
        17px;

    font-size: 14px;
}


.mch-footer__column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.mch-footer__column li {
    margin:
        0 0
        10px;
}


.mch-footer__column a {
    color:
        rgba(255,255,255,.67);

    font-size: 12px;

    text-decoration: none;

    transition:
        color .15s ease,
        padding-left .15s ease;
}


.mch-footer__column a:hover {
    padding-left: 3px;

    color: #ff922c;
}


.mch-footer__discover {
    padding:
        21px
        22px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 13px;

    background:
        rgba(255,255,255,.045);
}


.mch-footer__discover-label {
    display: block;

    margin-bottom: 5px;

    color: #ff8a1d;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.mch-footer__discover strong {
    display: block;

    margin-bottom: 8px;

    font-size: 18px;

    line-height: 1.22;
}


.mch-footer__discover p {
    margin:
        0 0
        17px;

    color:
        rgba(255,255,255,.61);

    font-size: 11px;

    line-height: 1.5;
}


.mch-footer__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.mch-footer__button {
    display: inline-flex;

    min-height: 36px;

    align-items: center;
    justify-content: center;

    padding:
        0 13px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 7px;

    color: #fff;

    font-size: 10.5px;
    font-weight: 850;

    text-decoration: none;
}


.mch-footer__button:hover {
    color: #fff;

    border-color:
        rgba(255,255,255,.38);
}


.mch-footer__button--primary {
    border-color: #ff7900;

    background:
        linear-gradient(
            135deg,
            #ff8a1b,
            #ff7100
        );
}


.mch-footer__bottom {
    width:
        min(
            1540px,
            calc(100% - 48px)
        );

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin: 0 auto;

    padding:
        18px 0
        21px;

    border-top:
        1px solid
        rgba(255,255,255,.09);

    color:
        rgba(255,255,255,.49);

    font-size: 10.5px;
}


.mch-footer__bottom strong {
    color:
        rgba(255,255,255,.72);

    font-weight: 750;
}


/* TABLET */

@media (max-width: 1050px) {

    .mch-footer__main {
        width:
            calc(100% - 40px);

        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(0, .8fr)
            minmax(0, .8fr);
    }


    .mch-footer__discover {
        grid-column: 1 / -1;
    }


    .mch-footer__bottom {
        width:
            calc(100% - 40px);
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .mch-footer__main {
        width:
            calc(100% - 32px);

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            30px 20px;

        padding:
            36px 0
            30px;
    }


    .mch-footer__brand,
    .mch-footer__discover {
        grid-column: 1 / -1;
    }


    .mch-footer__logo {
        width: 150px;
    }


    .mch-footer__bottom {
        width:
            calc(100% - 32px);

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

        padding:
            16px 0
            19px;
    }

}


/* SMALL MOBILE */

@media (max-width: 430px) {

    .mch-footer__main {
        grid-template-columns: 1fr;
    }


    .mch-footer__brand,
    .mch-footer__discover {
        grid-column: auto;
    }

}


/* ==========================================================
   MYCAMPER STEP 8F-B-r1
   HOSTPLUS FOOTER CREDIT + CLICKABLE LOGO
   ========================================================== */

.mch-footer__hostplus {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 7px;
}


.mch-footer__hostplus-name {
    color:
        rgba(255,255,255,.82);

    font-weight: 800;

    text-decoration: none;
}


.mch-footer__hostplus-name:hover {
    color: #ff922c;
}


.mch-footer__hostplus-logo {
    display: inline-flex;

    width: 72px;

    align-items: center;

    margin-left: 4px;

    text-decoration: none;
}


.mch-footer__hostplus-logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


@media (max-width: 680px) {

    .mch-footer__hostplus {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

}


/* ==========================================================
   MYCAMPER STEP 8G-B
   TA TRAGOUDIA MAS
   ========================================================== */

.mch-songs {
    width:
        min(
            1600px,
            calc(100% - 40px)
        );

    margin:
        0 auto
        34px;
}


.mch-songs__card {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 400px);

    min-height: 230px;

    overflow: hidden;

    border:
        1px solid
        #dfe6ea;

    border-radius: 11px;

    background:
        linear-gradient(
            110deg,
            #f8fafb 0%,
            #ffffff 65%
        );

    box-shadow:
        0 5px 18px
        rgba(20,45,60,.055);

    color: inherit;

    text-decoration: none;
}


.mch-songs__content {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    padding:
        30px
        clamp(
            25px,
            4vw,
            58px
        );
}


.mch-songs__eyebrow {
    margin-bottom: 7px;

    color: #ff7900;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.mch-songs__content h2 {
    margin:
        0 0
        8px;

    color: #18303f;

    font-size:
        clamp(
            24px,
            2.2vw,
            34px
        );

    font-weight: 900;

    line-height: 1.05;
}


.mch-songs__content p {
    max-width: 560px;

    margin:
        0 0
        17px;

    color: #64747e;

    font-size: 12px;

    line-height: 1.55;
}


.mch-songs__button {
    display: inline-flex;

    min-height: 38px;

    align-items: center;

    gap: 8px;

    padding:
        0 15px;

    border-radius: 7px;

    background: #ff7900;

    color: #fff;

    font-size: 11px;
    font-weight: 900;
}


.mch-songs__media {
    position: relative;

    overflow: hidden;

    background: #172c39;
}


.mch-songs__media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .28s ease;
}


.mch-songs__card:hover
.mch-songs__media img {
    transform: scale(1.025);
}


@media (max-width: 850px) {

    .mch-songs {
        width:
            calc(100% - 32px);
    }


    .mch-songs__card {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, 340px);
    }

}


@media (max-width: 650px) {

    .mch-songs {
        width:
            calc(100% - 24px);
    }


    .mch-songs__card {
        grid-template-columns: 1fr;
    }


    .mch-songs__media {
        order: -1;

        aspect-ratio: 400 / 267;
    }


    .mch-songs__content {
        padding:
            22px
            19px
            24px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8G-B-r1
   TA TRAGOUDIA MAS — WIDE 44 / 56 LAYOUT
   ========================================================== */

@media (min-width: 851px) {

    .mch-songs__card {
        grid-template-columns:
            minmax(0, 44fr)
            minmax(0, 56fr);

        height: 255px;
        min-height: 255px;
    }


    .mch-songs__content {
        min-width: 0;

        padding:
            28px
            clamp(
                34px,
                4vw,
                58px
            );
    }


    .mch-songs__media {
        width: 100%;
        height: 255px;

        min-width: 0;
    }


    .mch-songs__media img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }

}


/* ==========================================================
   MYCAMPER STEP 8H-B
   FINAL MOBILE POLISH
   COMMUNITY + SONGS + VIDEOS
   DESKTOP UNCHANGED
   ========================================================== */

@media (max-width: 680px) {


    /* ======================================================
       1. COMMUNITY — COMPACT MOBILE
       ====================================================== */

    .mch-community-join {
        width:
            calc(100% - 24px);

        min-height: 0;

        margin-bottom: 22px;

        grid-template-columns: 1fr;
    }


    .mch-community-join__image {
        width: 100%;

        min-height: 0;
        height: auto;

        aspect-ratio: 2.35 / 1;
    }


    .mch-community-join__image img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position:
            45% center;
    }


    .mch-community-join__content {
        padding:
            16px
            17px
            12px;
    }


    .mch-community-join__content h2 {
        margin-bottom: 7px;

        font-size: 18px;

        line-height: 1.16;
    }


    .mch-community-join__content ul {
        gap: 3px;
    }


    .mch-community-join__content li {
        padding-left: 19px;

        font-size: 11.5px;

        line-height: 1.35;
    }


    .mch-community-join__content li::before {
        top: -1px;

        width: 15px;
        height: 15px;

        font-size: 9px;
    }


    .mch-community-join__cta {
        grid-column: auto;

        flex-direction: column;

        gap: 0;

        padding:
            8px
            17px
            15px;
    }


    .mch-community-join__register {
        width: 100%;
        max-width: none;

        min-height: 44px;

        padding:
            0
            15px;

        font-size: 14px;
    }


    .mch-community-join__login {
        margin-top: 7px;

        font-size: 10.5px;
    }



    /* ======================================================
       2. TA TRAGOUDIA MAS
       USE REAL 1200x363 RATIO — NO MOBILE CROP
       ====================================================== */

    .mch-songs {
        width:
            calc(100% - 24px);

        margin-bottom: 24px;
    }


    .mch-songs__card {
        display: grid;

        grid-template-columns: 1fr;

        height: auto;
        min-height: 0;

        overflow: hidden;
    }


    .mch-songs__media {
        order: -1;

        width: 100%;

        height: auto;
        min-height: 0;

        aspect-ratio:
            1200 / 363;

        overflow: hidden;
    }


    .mch-songs__media img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position:
            center center;
    }


    .mch-songs__content {
        min-height: 0;

        padding:
            17px
            18px
            19px;
    }


    .mch-songs__eyebrow {
        margin-bottom: 4px;

        font-size: 8.5px;

        letter-spacing: .10em;
    }


    .mch-songs__content h2 {
        margin-bottom: 5px;

        font-size: 22px;

        line-height: 1.08;
    }


    .mch-songs__content p {
        margin-bottom: 12px;

        font-size: 11.5px;

        line-height: 1.42;
    }


    .mch-songs__button {
        min-height: 35px;

        padding:
            0
            13px;

        font-size: 10.5px;
    }



    /* ======================================================
       3. VIDEOS
       MOBILE = 3 COMPACT HORIZONTAL CARDS
       ====================================================== */

    .mch-videos {
        width: 100%;

        margin-bottom: 24px;
    }


    .mch-videos__heading {
        margin-bottom: 10px;
    }


    .mch-videos__heading h2 {
        font-size: 19px;
    }


    .mch-videos__heading-play {
        width: 21px;
        height: 21px;

        font-size: 9px;
    }


    .mch-videos__grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 9px;
    }


    .mch-video-card,
    .mch-video-card:last-child {
        width: 100%;

        min-height: 0;

        grid-column: auto;

        justify-self: stretch;
    }


    .mch-video-card__link {
        display: grid;

        grid-template-columns:
            minmax(125px, 42%)
            minmax(0, 58%);

        min-height: 108px;

        height: 100%;
    }


    .mch-video-card__media {
        min-height: 108px;

        height: 100%;

        aspect-ratio: auto;
    }


    .mch-video-card__media img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    .mch-video-card__play {
        width: 34px;
        height: 34px;
    }


    .mch-video-card__body {
        display: flex;

        min-width: 0;

        flex-direction: column;
        justify-content: center;

        padding:
            10px
            11px;
    }


    .mch-video-card__body h3 {
        display: -webkit-box;

        margin:
            0 0
            7px;

        overflow: hidden;

        font-size: 11.5px;

        line-height: 1.28;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }


    .mch-video-card__body > span {
        font-size: 9.5px;
    }

}


/*
 * Narrow phones.
 */

@media (max-width: 400px) {

    .mch-video-card__link {
        grid-template-columns:
            minmax(115px, 40%)
            minmax(0, 60%);

        min-height: 102px;
    }


    .mch-video-card__media {
        min-height: 102px;
    }


    .mch-community-join__content h2 {
        font-size: 17px;
    }


    .mch-songs__content h2 {
        font-size: 21px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8H-C
   PHONE LANDSCAPE + IPAD VIDEO/PARTNER RESPONSIVE FIX

   <= 900px    : compact horizontal video cards
   901-1200px  : full-width videos + partners below
   > 1200px    : existing desktop 65/35 unchanged
   ========================================================== */


/* ==========================================================
   A. PHONE LANDSCAPE + IPAD PORTRAIT
   ========================================================== */

@media (min-width: 681px) and (max-width: 900px) {

    /*
     * Videos / Partners must not share the row.
     */

    .mch-media-row {
        width:
            calc(100% - 32px);

        grid-template-columns: 1fr;

        gap: 24px;
    }


    /*
     * One compact video per row.
     */

    .mch-media-row
    .mch-videos__grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .mch-media-row
    .mch-video-card,
    .mch-media-row
    .mch-video-card:last-child {
        width: 100%;

        grid-column: auto;

        justify-self: stretch;
    }


    .mch-media-row
    .mch-video-card__link {
        display: grid;

        grid-template-columns:
            minmax(210px, 38%)
            minmax(0, 62%);

        min-height: 125px;
    }


    .mch-media-row
    .mch-video-card__media {
        height: 125px;

        min-height: 125px;

        aspect-ratio: auto;
    }


    .mch-media-row
    .mch-video-card__media img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    .mch-media-row
    .mch-video-card__body {
        display: flex;

        flex-direction: column;
        justify-content: center;

        padding:
            13px
            15px;
    }


    .mch-media-row
    .mch-video-card__body h3 {
        margin-bottom: 8px;

        font-size: 13px;

        line-height: 1.3;

        -webkit-line-clamp: 3;
    }


    .mch-media-row
    .mch-video-card__body > span {
        font-size: 10.5px;
    }


    .mch-media-row
    .mch-video-card__play {
        width: 38px;
        height: 38px;
    }


    /*
     * Partners below videos.
     * Four clean columns where space permits.
     */

    .mch-partners__grid {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );

        gap: 9px;
    }


    .mch-partner-card {
        min-height: 85px;

        padding:
            10px;
    }


    .mch-partner-card img {
        max-height: 55px;
    }

}



/* ==========================================================
   B. IPAD / TABLET LANDSCAPE
   ========================================================== */

@media (min-width: 901px) and (max-width: 1200px) {

    /*
     * Do NOT squeeze Videos into 65%.
     *
     * Videos take full row.
     * Partners become a second full-width row.
     */

    .mch-media-row {
        width:
            calc(100% - 40px);

        grid-template-columns: 1fr;

        gap: 23px;
    }


    /*
     * Three useful video cards across full width.
     */

    .mch-media-row
    .mch-videos__grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 13px;
    }


    .mch-media-row
    .mch-video-card,
    .mch-media-row
    .mch-video-card:last-child {
        width: 100%;

        grid-column: auto;

        justify-self: stretch;
    }


    .mch-media-row
    .mch-video-card__media {
        aspect-ratio: 16 / 9;
    }


    .mch-media-row
    .mch-video-card__body {
        padding:
            11px
            12px
            12px;
    }


    .mch-media-row
    .mch-video-card__body h3 {
        font-size: 12px;

        line-height: 1.28;

        -webkit-line-clamp: 2;
    }


    /*
     * Partners underneath in a single row.
     */

    .mch-partners__grid {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );

        gap: 10px;
    }


    .mch-partner-card {
        min-height: 90px;

        padding:
            11px 13px;
    }


    .mch-partner-card img {
        max-height: 58px;
    }


    .mch-partners__footer {
        margin-top: 9px;
    }

}



/* ==========================================================
   C. LANDSCAPE PHONE HEIGHT POLISH
   Width may be tablet-like but height is phone-like.
   ========================================================== */

@media
    (min-width: 681px)
    and (max-width: 900px)
    and (max-height: 500px) {

    .mch-media-row
    .mch-video-card__link {
        grid-template-columns:
            minmax(180px, 40%)
            minmax(0, 60%);

        min-height: 105px;
    }


    .mch-media-row
    .mch-video-card__media {
        height: 105px;

        min-height: 105px;
    }


    .mch-media-row
    .mch-video-card__body {
        padding:
            9px
            12px;
    }


    .mch-media-row
    .mch-video-card__body h3 {
        font-size: 11.5px;

        -webkit-line-clamp: 2;
    }


    .mch-media-row
    .mch-video-card__play {
        width: 32px;
        height: 32px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8H-D
   SONGS — IPAD PORTRAIT + PHONE LANDSCAPE

   Panoramic 1200x363 image shown COMPLETE.
   ========================================================== */

@media (min-width: 681px) and (max-width: 900px) {

    .mch-songs {
        width:
            calc(100% - 32px);

        margin-bottom: 26px;
    }


    .mch-songs__card {
        display: grid;

        grid-template-columns: 1fr;

        height: auto;
        min-height: 0;
    }


    /*
     * Full panoramic image.
     * Exact source ratio = 1200 / 363.
     */

    .mch-songs__media {
        order: -1;

        width: 100%;

        height: auto;
        min-height: 0;

        aspect-ratio:
            1200 / 363;
    }


    .mch-songs__media img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position:
            center center;
    }


    /*
     * Compact text underneath.
     */

    .mch-songs__content {
        min-height: 0;

        padding:
            18px
            24px
            20px;
    }


    .mch-songs__eyebrow {
        margin-bottom: 4px;

        font-size: 9px;
    }


    .mch-songs__content h2 {
        margin-bottom: 5px;

        font-size: 23px;

        line-height: 1.08;
    }


    .mch-songs__content p {
        margin-bottom: 12px;

        font-size: 11.5px;

        line-height: 1.4;
    }


    .mch-songs__button {
        min-height: 36px;

        padding:
            0 14px;

        font-size: 10.5px;
    }

}


/* ==========================================================
   MYCAMPER STEP 8H-D-r1
   SONGS — TABLET LANDSCAPE FULL PANORAMA
   Prevent crop of "Τα τραγούδια μας!"
   ========================================================== */

@media (min-width: 901px) and (max-width: 1200px) {

    .mch-songs__card {
        height: auto !important;
        min-height: 0 !important;

        align-items: stretch;
    }


    .mch-songs__media {
        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 1200 / 363;
    }


    .mch-songs__media img {
        width: 100% !important;
        height: 100% !important;

        object-fit: contain !important;
        object-position: center center !important;
    }

}


/* ==========================================================
   MYCAMPER_ACCESSIBILITY_CONTRAST_11D_C

   WCAG contrast correction.

   Keep the existing orange / green brand backgrounds.
   Use dark navy foreground so small text and icons exceed
   the 4.5:1 normal-text contrast requirement.
   ========================================================== */

.mch-featured-article__badge,
.mch-videos__heading-play,
.mch-songs__button {
    color: #172736 !important;
}


.mch-community-join__content li::before {
    color: #172736 !important;
}


/*
 * AcyMailing submit button:
 * existing orange gradient stays unchanged.
 */
.mch-newsletter__form input[name="Submit"] {
    color: #172736 !important;
}



/* ==========================================================
   MYCAMPER_ACCESSIBILITY_11D_D
   Lighthouse Accessibility remediation

   1. Contrast on light content surfaces
   2. Contrast on dark content surfaces
   3. Text-link distinction
   4. Touch-target sizing / spacing

   No structural HTML or JavaScript changes.
   ========================================================== */


/* ----------------------------------------------------------
   1. LIGHT SURFACES — MUTED TEXT WAS TOO LIGHT
   ---------------------------------------------------------- */

.mch-map-card ul,
.mch-small-article p,
.mch-small-article time,
.mch-legislation__copy p,
.mch-roadtrip-card:not(:first-child) p,
.mch-roadtrip-card:not(:first-child) .mch-roadtrip-card__footer,
.mch-video-card__body > span,
.mch-partners__footer {
    color: #465866 !important;
}


/*
 * Map CTA / orange UI elements.
 * Dark navy preserves the orange branding while providing
 * substantially stronger contrast.
 */
.mch-map-card__button,
.mch-featured-article__badge,
.mch-roadtrip-card__badge,
.mch-videos__heading-play,
.mch-songs__button,
.mch-newsletter__form input[name="Submit"],
.mch-community-join__content li::before {
    color: #172736 !important;
}


/* ----------------------------------------------------------
   2. DARK SURFACES — MUTED WHITE WAS TOO TRANSPARENT
   ---------------------------------------------------------- */

.mch-featured-article__meta,
.mch-roadtrip-card:first-child p,
.mch-roadtrip-card:first-child .mch-roadtrip-card__footer,
.mch-songs__content p,
.mch-newsletter__intro p,
.mch-footer__brand p,
.mch-footer__discover p,
.mch-footer__bottom {
    color: #e7edf1 !important;
}


.mch-footer__column a,
.mch-footer__bottom a {
    color: #ffffff !important;
}


/* ----------------------------------------------------------
   3. LINKS INSIDE TEXT MUST NOT RELY ON COLOR ALONE

   Lighthouse currently identifies the HostPlus credit link.
   Keep the same footer color but make it visually identifiable
   as a link without depending only on colour perception.
   ---------------------------------------------------------- */

.mch-footer a[href*="hostplus.gr"] {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px !important;
}


.mch-footer a[href*="hostplus.gr"]:hover {
    text-decoration-thickness: 2px !important;
}


/* ----------------------------------------------------------
   4. TOUCH TARGETS

   Existing measurements included:
   footer social ~34px
   footer button ~36px
   social links ~38px
   songs button ~35-38px
   map button ~39px

   Raise interactive controls to a consistent minimum target.
   ---------------------------------------------------------- */

.mch-map-card__button,
.mch-social-link,
.mch-songs__button,
.mch-footer__button {
    min-height: 44px !important;
}


.mch-footer__social a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
}


/*
 * Text navigation in the footer contains several very small
 * adjacent targets. Give every link sufficient vertical target
 * area without changing the visible text size.
 */
.mch-footer__column a {
    display: inline-flex !important;
    min-height: 44px !important;
    align-items: center !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}


/*
 * Bottom credit / legal links also need a usable click target.
 */
.mch-footer__bottom a {
    display: inline-flex !important;
    min-height: 32px !important;
    align-items: center !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}


/* ----------------------------------------------------------
   KEYBOARD FOCUS
   ---------------------------------------------------------- */

.mch-map-card__button:focus-visible,
.mch-social-link:focus-visible,
.mch-songs__button:focus-visible,
.mch-footer__button:focus-visible,
.mch-footer__social a:focus-visible,
.mch-footer__column a:focus-visible,
.mch-footer__bottom a:focus-visible {
    outline: 3px solid #ff8a18 !important;
    outline-offset: 3px !important;
}



/* ==========================================================
   MYCAMPER_MAP_CARD_WHITE_TEXT_RESTORE
   Preserve original visual design of Camper Map / Travel Map.
   ========================================================== */

.mch-map-card ul,
.mch-map-card li {
    color: #ffffff !important;
}



/* ==========================================================
   MYCAMPER_HOMEPAGE_VISUAL_REPAIR

   Restore intended visual design after accessibility testing.
   Applies only to the new homepage.
   ========================================================== */


/* Songs section is on a light background — restore dark copy. */
.mycamper-new-home-page .mch-songs__content p {
    color: #536675 !important;
}


/*
 * The homepage module already contains its complete rich footer.
 * Hide the legacy Helix footer ONLY on the new homepage.
 */
.mycamper-new-home-page #sp-footer {
    display: none !important;
}



/* ==========================================================
   MYCAMPER_SHARED_INNER_FOOTER_12D
   STEP 12D-r1

   Inner pages reuse the exact rich footer from the homepage.

   Module 193 renders the shared footer.php inside Helix
   position footer2.

   Itemids 101 and 942 are excluded at module-assignment level.
   ========================================================== */


/*
 * Remove legacy Helix footer geometry.
 */
body:not(.mycamper-new-home-page) #sp-footer {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
}


body:not(.mycamper-new-home-page)
#sp-footer > .container {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


body:not(.mycamper-new-home-page)
#sp-footer > .container > .container-inner {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


body:not(.mycamper-new-home-page)
#sp-footer .container-inner > .row {
    width: 100% !important;

    margin-right: 0 !important;
    margin-left: 0 !important;
}


/*
 * Hide legacy Helix copyright/HostPlus column.
 *
 * The rich footer already contains copyright + HostPlus.
 */
body:not(.mycamper-new-home-page)
#sp-footer #sp-footer1 {
    display: none !important;
}


/*
 * footer2 becomes the single full-width footer column.
 */
body:not(.mycamper-new-home-page)
#sp-footer #sp-footer2 {
    flex:
        0 0
        100% !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


body:not(.mycamper-new-home-page)
#sp-footer #sp-footer2 > .sp-column,
body:not(.mycamper-new-home-page)
#sp-footer #sp-footer2 .sp-module,
body:not(.mycamper-new-home-page)
#sp-footer #sp-footer2 .sp-module-content,
body:not(.mycamper-new-home-page)
#sp-footer #sp-footer2 .mod-custom {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


/*
 * Neutralise Helix generic module-list rules.
 */
body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__column ul {
    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;
}


body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__column li {
    margin:
        0 0
        10px !important;

    padding: 0 !important;

    border: 0 !important;
}


/*
 * Helix has high-specificity #sp-footer link colours.
 * Preserve the rich-footer colours.
 */
body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__social a,
body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__button,
body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__column a,
body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__hostplus-name {
    color: #ffffff !important;
}


body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__column a:hover,
body:not(.mycamper-new-home-page)
#sp-footer .mch-footer__hostplus-name:hover {
    color: #ff922c !important;
}

