.aso-document{
    background-color: var(--color-secondary-light);
    padding: 2rem;
    box-sizing: border-box;
    border-radius: 1rem;
    display: flex;
    gap: 2rem;

    & .page__content{
        padding-top: 0;
    }

    & > div{
        flex: 1;
    }

    & img{
        border-radius: 1rem;
        width: 100%;
        height: auto;
    }
}

.aso-document.project{
    & > div{
        flex: 1;
        max-width: 50%;
    }
}

.aso-document.technical-document{
    & .field--name-field-imagen.default{
        max-width: 200px;
    }
}

.page__content__header{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    & .content__header__icon{
        font-size: 2rem;
    }
}



@media screen and (max-width: 767px) {
    .aso-document{
        flex-direction: column;
        gap: 0;
        & .content__section.content__section--last{
            flex-direction: column-reverse;
        }
        &.project{
            & > div{
                flex: 1;
                max-width: 100%;
            }
        }
    }
}
