/* ===== Classic Homepage — Hero Banner ===== */

.cls-hero-banner {
    position: relative;
    background-color: #FAF8F4;
    overflow: hidden;
}

/* פריסה קבועה: תמונה משמאל, טקסט מימין (לא נחתך) */
.cls-hero-banner__layout {
    display: grid;
    grid-template-columns: 1fr min(480px, 42vw);
    min-height: clamp(520px, 72vh, 680px);
    direction: ltr;
}

.cls-hero-banner--focal-end .cls-hero-banner__layout {
    direction: rtl;
}

.cls-hero-banner--image-only .cls-hero-banner__layout {
    grid-template-columns: 1fr;
}

.cls-hero-banner__media {
    position: relative;
    min-height: inherit;
    overflow: hidden;
    background-color: #FAF8F4;
}

.cls-hero-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center center;
}

.cls-hero-banner__aside {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    background: #FAF8F4;
}

.cls-hero-banner__content {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 2.25rem 2rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 20px 50px rgba(42, 42, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cls-hero-banner__eyebrow {
    margin: 0 0 1rem;
    font-family: "Heebo", "Assistant", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7D9074;
}

.cls-hero-banner__eyebrow::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 0.75rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #A8B8A0, #D7B4B4);
}

.cls-hero-banner__title {
    margin: 0 0 1.1rem;
    font-family: "Frank Ruhl Libre", "Heebo", serif;
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: #2A2A2A;
}

.cls-hero-banner__desc {
    margin: 0 0 1.5rem;
    font-family: "Assistant", "Heebo", sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(42, 42, 42, 0.78);
    max-width: 36ch;
}

.cls-hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.cls-hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 48px;
    padding: 0 1.25rem;
    border-radius: 10px;
    font-family: "Heebo", "Assistant", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(42, 42, 42, 0.08);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cls-hero-banner__btn--primary {
    background: #A8B8A0;
    color: #FFFFFF;
}

.cls-hero-banner__btn--primary:hover {
    background: #7D9074;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(125, 144, 116, 0.35);
}

.cls-hero-banner__btn--secondary {
    background: #D7B4B4;
    color: #2A2A2A;
}

.cls-hero-banner__btn--secondary:hover {
    background: #E8D7D7;
    color: #2A2A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(215, 180, 180, 0.4);
}

@media (max-width: 991.98px) {
    .cls-hero-banner__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(200px, 38vh);
        min-height: 0;
    }

    .cls-hero-banner__aside {
        order: 1;
        padding: 1rem 0.75rem 0.5rem;
    }

    .cls-hero-banner__media {
        order: 2;
        min-height: clamp(200px, 38vh, 320px);
    }

    .cls-hero-banner__content {
        max-width: 420px;
        margin: 0 auto;
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .cls-hero-banner__eyebrow {
        margin-bottom: 0.75rem;
        font-size: 0.68rem;
    }

    .cls-hero-banner__title {
        margin-bottom: 0.75rem;
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
        line-height: 1.22;
    }

    .cls-hero-banner__desc {
        margin-bottom: 1.1rem;
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .cls-hero-banner__btn {
        min-width: 120px;
        height: 42px;
        font-size: 0.82rem;
    }

    .cls-hero-banner--image-only .cls-hero-banner__layout {
        grid-template-rows: 1fr;
    }

    .cls-hero-banner--image-only .cls-hero-banner__media {
        min-height: clamp(280px, 42vh, 380px);
    }
}

.cls-hero-banner--image-only {
    cursor: default;
}

.cls-hero-banner__full-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    cursor: pointer;
}

.cls-hero-banner__full-link:focus-visible {
    outline: 3px solid #A8B8A0;
    outline-offset: -3px;
}
