.hero {
    background: linear-gradient(90deg, var(--color-hero-gradient) 0%, rgba(0, 45, 98, 0) 300%), url("../images/svg/Corporate-architecture.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 234px;
    max-height: 234px;
    text-align: center;
    padding-block: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__title {
    font-size: 36px;
    line-height: 120%;
    font-weight: 800;
    color: var(--color-white);
}

.hero__sub-heading {
    font-size: 24px;
    line-height: 120%;
    font-weight: 200;
    color: var(--color-light-text);
    margin-top: 8px;
}

.hero__description {
    margin: 16px auto 0;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    color: var(--color-light-text);
    max-width: 666px;
    width: 100%;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero {
        background: linear-gradient(90deg, var(--color-hero-gradient) 0%, rgba(0, 45, 98, 0) 300%), url("../images/svg/Corporate-architecture-tablet.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-inline: 24px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__description {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        background: linear-gradient(90deg, var(--color-hero-gradient) 0%, rgba(0, 45, 98, 0) 300%), url("../images/svg/Corporate-architecture-mobile.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-inline: 16px;
        min-height: 180px;
        max-height: none;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__sub-heading {
        font-size: 16px;
    }
        
    .hero__description {
        font-size: 15px;
        margin-top: 12px;
    }
}
