.grant-info-section {
    display: flex;
    width: 100%;
}

.grant-info-section__left {
    flex: 1 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 5rem 0;
    border-right: 1px solid white;
}

.grant-info-section__right {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 5rem 0 0 8rem;
}

span.grant-subtitle {
    font-size: 2.8rem;
    font-weight: 900 !important;
    display: block;
}


/* Responsive design */
@media (max-width: 768px) {
    .grant-info-section {
        flex-direction: column;
    }

    .grant-info-section.main-wrapper {
        padding: 0;
    }
    
    .grant-info-section__left,
    .grant-info-section__right {
        width: auto;
        border-right: none;
        border-bottom: 1px solid white;
        align-items: flex-start;
        padding: 3.2rem 1.6rem;
        flex: 1 1 100%;
    }
    
    .grant-info-section__right:last-child {
        border-bottom: none;
    }

    .grant-info-section__left h2,
    .grant-info-section__right h2 {
        font-size: 2.4rem;
    }

    .grant-subtitle {
        font-size: 2.4rem;
        margin-top: 1rem;
        font-weight: 900;
    }
}
