/* Public site CSS (split: core + page modules) */
/* page module: home */

.home-hero.page-hero > .shell {
    padding: 0;
}

.home-hero h1,
.home-hero p {
    white-space: pre-line;
}

.home-hero.page-hero {
    --page-hero-height: auto;
    min-height: clamp(560px, calc(100dvh - var(--site-header-height)), 920px);
    align-items: flex-start;
    padding-block: clamp(48px, 8vh, 96px);
    background:
        var(--page-hero-image-desktop, none) center/cover no-repeat,
        var(--page-hero-fallback, #4a5568);
}

.home-hero.page-hero.page-hero--has-media {
    background: var(--page-hero-fallback);
}

.home-hero.page-hero::before {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.42) 34%,
        rgba(0, 0, 0, 0.16) 62%,
        transparent 100%
    );
}

.benefits {
    padding: 80px 0 120px;
    background:
        linear-gradient(90deg, rgb(33, 37, 41), rgba(248, 194, 26, 0.62)),
        var(--benefits-bg, none) center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
}

.benefits-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 clamp(20px, 4vw, 56px);
    box-sizing: border-box;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.benefits-copy {
    max-width: 720px;
    margin: 0 auto;
}

.benefits-first-image,
.benefits-last-image {
    margin: 0;
    text-align: center;
}

.benefits .img-home,
.benefits .img-home-last {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
}

.benefits .img-home {
    border-radius: 120px 20px 120px 20px;
}

.benefits .img-home-last {
    border-radius: 20px 120px 20px 120px;
}

.benefits .benefit_title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 800;
    letter-spacing: .06em;
    text-align: center;
    text-transform: uppercase;
}

.benefits .list-container ul {
    margin: 0;
    padding: 0 0 0 1em;
    list-style-position: inside;
    text-indent: -1em;
}

.benefits .list-container li {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}

.benefits .list-container li:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .benefits-first-image,
    .benefits-last-image {
        padding-bottom: 10px;
    }
    .benefits-copy {
        max-width: none;
    }
    .benefits .img-home,
    .benefits .img-home-last {
        width: min(100%, 520px);
    }
}

.home-journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

a.home-journey-card {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

a.home-journey-card:hover {
    border-color: rgba(18, 99, 63, .28);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(21, 58, 41, .1);
}

@media (max-width: 980px) {
    .home-journey-grid {
        grid-template-columns: 1fr;
    }
}
