.me-ohc {
    position: relative;
    width: 100%;
    max-width: 640px;
    color: #ffffff;
    z-index: 3;
}

.me-ohc__slides {
    position: relative;
    min-height: 560px;
}

.me-ohc__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
    pointer-events: none;
}

.me-ohc__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.me-ohc__subheadline {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 18px;
    color: rgba(255,255,255,.96);
}

.me-ohc__headline {
    margin: 0;
    font-size: clamp(54px, 6vw, 3.5rem);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.me-ohc__headline br {
    content: '';
}

.me-ohc__body {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255,255,255,.95);
    max-width: 520px;
}

.me-ohc__actions {
    margin-top: 26px;
}

.me-ohc__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 58px;
    padding: 14px 36px;
    border-radius: 999px;
    background: #f6b233;
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.me-ohc__button:hover,
.me-ohc__button:focus {
    color: #1a1a1a;
    transform: translateY(-1px);
    background: #f8bb46;
}

.me-ohc__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(6, 25, 70, .58);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: background .2s ease, transform .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.me-ohc__arrow:hover,
.me-ohc__arrow:focus {
    background: rgba(9, 39, 110, .78);
}

.me-ohc__arrow--prev {
    left: -55px;
}

.me-ohc__arrow--next {
    right: -55px;
}

.me-ohc__pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.me-ohc__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.65);
    cursor: pointer;
}

.me-ohc__dot.is-active {
    background: #f6b233;
}

.homepage-carousel .me-ohc,
.homepage-carousel .me-ohc * {
    box-sizing: border-box;
}

.homepage-carousel .me-ohc__headline,
.homepage-carousel .me-ohc__subheadline,
.homepage-carousel .me-ohc__body {
    text-shadow: 0 2px 12px rgba(0,0,0,.18);
}

@media (max-width: 991px) {
    .me-ohc {
        max-width: 560px;
    }

    .me-ohc__slides {
        min-height: 500px;
    }

    .me-ohc__headline {
        font-size: clamp(44px, 8vw, 60px);
    }
}

@media (max-width: 767px) {
    .me-ohc {
        max-width: 100%;
    }

    .me-ohc__slides {
        min-height: 0;
    }

    .me-ohc__slide {
        position: relative;
        display: none;
    }

    .me-ohc__slide.is-active {
        display: block;
    }

    .me-ohc__subheadline {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .me-ohc__headline {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.02;
    }

    .me-ohc__body {
        margin-top: 18px;
        font-size: 16px;
    }

    .me-ohc__button {
        min-height: 50px;
        padding: 12px 26px;
        font-size: 18px;
    }

    .me-ohc__arrow {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: 8px;
        transform: none;
    }

    .me-ohc__arrow--prev {
        left: 0;
        right: auto;
    }

    .me-ohc__arrow--next {
        left: 48px;
        right: auto;
    }

    .me-ohc__pagination {
        margin-top: 18px;
        padding-left: 100px;
        min-height: 38px;
    }
}
