* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.altahub-hero {
    position: relative;
    width: 100%;
    height: 645px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent;
}

.altahub-hero__container {
    max-width: 1294px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.altahub-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.altahub-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.altahub-hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    min-width: 320px;
    max-width: 700px;
    height: 100%;
    background: rgba(36, 38, 37, 0.22);
    filter: blur(60px);
    z-index: 2;
    pointer-events: none;
}

.altahub-hero__content {
    position: relative;
    z-index: 3;
    width: 42%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 400px;
    text-align: left;
    padding: 145px 0 0 0;
    margin: 0;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .altahub-hero__content {
        margin-left: 120px;
    }
}

@media (min-width: 1400px) {
    .altahub-hero__content {
        margin-left: 180px;
    }
}

@media (min-width: 1600px) {
    .altahub-hero__content {
        margin-left: 240px;
    }
}

@media (max-width: 991px) {
    .altahub-hero {
        height: 480px;
        align-items: flex-end;
    }
    .altahub-hero__overlay {
        width: 100%;
        right: 0;
        left: 0;
        max-width: none;
        min-width: 0;
        filter: blur(40px);
    }
    .altahub-hero__container {
        justify-content: center;
        padding: 0 10px;
    }
    .altahub-hero__content {
        margin-left: 4vw;
        width: 100% !important;
        max-width: 90vw;
    }
    .altahub-hero__title {
        font-size: 32px;
    }
    .altahub-hero__subtitle {
        font-size: 16px;
    }
    .altahub-hero__button {
        font-size: 16px;
        padding: 10px 24px;
    }
    .altahub-hero__image img {
        object-position: -131px 10% !important;
    }
}

.altahub-hero__title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    font-size: 52.24px;
    line-height: 73%;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.altahub-hero__subtitle {
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
    font-size: 21.86px;
    line-height: 95%;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 311px;
}

.altahub-hero__button {
    background: #9AD63C;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    padding: 15px 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    outline: none;
    font-family: 'League Spartan', Arial, sans-serif;
}

.altahub-hero__button:hover {
    background: #4bb22f;
    color: #fff;
}

@media (max-width: 1280px) {
    .altahub-hero__overlay {
        left: 50vw;
        width: 50vw;
    }
    .altahub-hero__content {
        margin-left: 4vw;
        max-width: 90vw;
    }
}