.gr-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    
}

.gr-text p {
    color: #666;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    font-family: 'BMHANNAAir';
}

.gr-signature {
    float: right;
    width: 100%;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    font-family: 'BMHANNAAir';
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    margin-top: 6rem;
}

.gr-sign {
    width: 212px;
    opacity: .5;
}


/*==================================================*/
@media (max-width: 768px) {
    .gr-text p br {
        display: none;
    }

    .gr-text p em br {
        display: block;
    }
}


@media (max-width: 550px) {
    .gr-text p {
        font-size: 14px;
    }

    .gr-signature {
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        margin-top: 2rem;
    }

    .gr-sign {
        width: 160px;
    }
}