#event-row {
    position: relative;
    background-image: url('https://cdn-ca.aglty.io/b0872160/future-students/home/full-row-angle-events.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}

/* Clipping mask with opacity */
#event-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 245, 245, 0.9); /* #f5f5f5 with 90% opacity */
    clip-path: polygon(0 0, 55% 0, 50% 100%, 0% 100%);
    z-index: 1;
    pointer-events: none; /* So it doesn’t block clicks */
}

#event-row > * {
    position: relative;
    z-index: 2;
}

/* Mobile and Tablet (992px and down) */
@media (max-width: 992px) {
    #event-row::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

#campus-row {
    position: relative;
    background-image: url('https://cdn-ca.aglty.io/b0872160/future-students/home/full-row-angle-campusus.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}

/* Clipping mask with opacity */
#campus-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 245, 245, 0.9); /* #f5f5f5 with 90% opacity */
    clip-path: polygon(0 0, 55% 0, 50% 100%, 0% 100%);
    z-index: 1;
    pointer-events: none; /* So it doesn’t block clicks */
}

#campus-row > * {
    position: relative;
    z-index: 2;
}

/* Mobile and Tablet (992px and down) */
@media (max-width: 992px) {
    #campus-row::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}