.single-project-hero__inner {
    gap: 6rem;
}

.single-project-hero__content {
    display: flex;
    gap: 4rem;
}

.single-project-hero__info {
    gap: 2.4rem;
    flex: 0 0 auto;
    width: 24rem;
}

.single-project-hero__info-block {
    gap: 0.5rem;
}

.single-project-hero__info-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-gray);
}

.single-project-hero__info-text {
    color: var(--color-default);
    line-height: 1;
}

@media screen and (max-width: 767.9px) {
    .single-project-hero__content {
        flex-direction: column;
    }

    .single-project-hero__image {
        order: -1;
    }
}

@media screen and (max-width: 575.9px) {
    .single-project-hero__image {
        aspect-ratio: 343/212;
    }

    .single-project-hero__info {
        gap: 2.7rem;
    }
}