.home-slider-shell {
    position: relative;
    padding-bottom: 34px;
    background: #f5f8f7;
}
.home-slider {
    position: relative;
    width: min(1600px, 100%);
    aspect-ratio: 1920 / 700;
    min-height: 350px;
    max-height: 620px;
    margin: 0 auto;
    overflow: hidden;
    background: #dce8e4;
}
.home-slider-track,
.home-slide,
.home-slide-link,
.home-slide picture {
    position: absolute;
    inset: 0;
    display: block;
}
.home-slide {
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .85s ease, visibility .85s ease;
}
.home-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.home-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.home-slide-caption {
    position: absolute;
    right: clamp(20px, 7vw, 110px);
    bottom: 70px;
    z-index: 2;
    width: min(520px, calc(100% - 40px));
    padding: 17px 20px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 16px;
    color: #fff;
    background: rgba(8, 42, 39, .76);
    box-shadow: 0 14px 36px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
}
.home-slide-caption strong,
.home-slide-caption span,
.home-slide-caption em { display: block; }
.home-slide-caption strong { font-size: clamp(20px, 2.3vw, 34px); }
.home-slide-caption span { margin-top: 5px; }
.home-slide-caption em { margin-top: 9px; color: #f1cf86; font-style: normal; font-weight: 800; }
.home-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    color: #fff;
    background: rgba(4, 40, 37, .58);
    font: 700 34px/1 Tahoma, sans-serif;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
}
.home-slider-arrow:hover,
.home-slider-arrow:focus-visible { background: #0F766E; transform: translateY(-50%) scale(1.06); }
.home-slider-next { left: 24px; }
.home-slider-prev { right: 24px; }
.home-slider-dots {
    position: absolute;
    right: 50%;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 9px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(4, 40, 37, .48);
    transform: translateX(50%);
}
.home-slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}
.home-slider-dot.is-active { width: 30px; border-radius: 999px; background: #C89B3C; }
.home-slider-summary {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 30px));
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: -42px auto 0;
    padding: 22px 28px;
    border: 1px solid rgba(15,118,110,.16);
    border-top: 4px solid #C89B3C;
    border-radius: 20px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 18px 45px rgba(25,62,57,.15);
}
.home-slider-summary span { color: #687671; font-size: 14px; }
.home-slider-summary h1 { margin: 2px 0 0; color: #0F766E; font-size: clamp(27px, 3vw, 42px); line-height: 1.35; }
.home-slider-summary p { margin: 2px 0 0; color: #7a5a18; font-weight: 800; }
.home-slider-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 767px) {
    .home-slider-shell { padding-bottom: 20px; }
    .home-slider {
        width: 100%;
        min-height: 0;
        max-height: none;
        aspect-ratio: 8 / 9;
    }
    .home-slide-caption {
        right: 15px;
        bottom: 62px;
        width: calc(100% - 30px);
        padding: 13px 15px;
    }
    .home-slide-caption strong { font-size: 21px; }
    .home-slider-arrow { width: 42px; height: 42px; font-size: 29px; }
    .home-slider-next { left: 12px; }
    .home-slider-prev { right: 12px; }
    .home-slider-dots { bottom: 16px; }
    .home-slider-summary {
        width: calc(100% - 24px);
        min-height: 0;
        align-items: stretch;
        flex-direction: column;
        margin: 12px auto 0;
        padding: 18px;
        border-radius: 16px;
    }
    .home-slider-summary h1 { font-size: 28px; }
    .home-slider-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .home-slider-actions .button { width: 100%; padding-inline: 8px; }
}
@media (prefers-reduced-motion: reduce) {
    .home-slide,
    .home-slider-dot,
    .home-slider-arrow { transition: none; }
}
