.hiw {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.hiw > div:first-child {
    flex: 0 1 42%;
    aspect-ratio: 1/1.2;
    border-radius: var(--bradMed);
    overflow: hidden;
    max-height: 640px;
}
.hiw > div:last-child {
    flex: 0 1 50%;
}
.hiwRev {
    flex-direction: row-reverse;
}
.hiwRev > div:last-child > div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.hiw > div:last-child > a {
    max-width: 40%;
    min-width: 312px;
}
.hiw > div:last-child > div a {
    flex: 1 0 20%;
}

.hiw_add {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .hiw {
        flex-wrap: wrap;
    }
    .hiw > div {
        flex: 1 1 100% !important;
    }
    .hiw > div:last-child {
        margin-top: 24px;
    }
    .hiw > div:last-child > div {
        flex-direction: column;
    }
    .hiw > div:last-child > a {
        max-width: 100%;
    }
}
