/* hero.css — asymmetric style, image left 60%, text right 40%, mobile stack */

.ka-hero {
    padding-top: var(--header-h);
    min-height: 70vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.ka-hero__grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Image — left side (60% on desktop) */
.ka-hero__image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.ka-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text — right side (40% on desktop) */
.ka-hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--s-40) var(--s-16);
    background-color: var(--c-bg);
}

.ka-hero__eyebrow {
    font-family: var(--f-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-accent-hover);
    margin-bottom: var(--s-12);
}

.ka-hero__title {
    font-family: var(--f-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--s-16);
    line-height: 1.15;
}

.ka-hero__desc {
    font-size: 1.0625rem;
    color: var(--c-text-dim);
    margin-bottom: var(--s-24);
    max-width: 480px;
    line-height: 1.7;
}

.ka-hero__actions {
    display: flex;
    gap: var(--s-16);
    flex-wrap: wrap;
    margin-bottom: var(--s-24);
}

.ka-hero a:not(.ka-btn) {
    color: var(--c-text);
}

.ka-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-8);
}
