.cs-hero {
    background-color: #26282a;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cs-hero__content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-bottom: 4rem;
    padding-top: 12rem;
}

.cs-hero__title-container {
    width: 100%;
    max-width: 604px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.cs-hero__title {
    color: #fff;
    font-family: Aeonik;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    text-wrap: balance;
}

.cs-hero__title-container h1:last-child {
    margin-bottom: 0;
}

.cs-hero__description-container {
    width: 100%;
    max-width: 571px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.cs-hero__description {
    color: #e8e8e8;
    font-family: var(--font-aeonik);
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-wrap: pretty;
}

.cs-hero__description-container p:last-child {
    margin-bottom: 0;
}

.cs-hero__image {
    width: 100%;
    height: 100%;
    max-height: 484px;
    position: relative;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs-hero__image-img {
    width: 100%;
    object-position: center;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .container {
        max-width: unset !important;
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .cs-hero__content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .cs-hero__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .cs-hero__title {
        font-size: 3rem;
    }

    .cs-hero__content-container {
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .cs-hero__title {
        font-size: 2.5rem;
    }
}
