.workshops_past {
    display: flex;
    align-items: center;
}
.workshops_past .maxgridrow {
    width: 100%;
}
.workshops_past_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    height: 100vh; 
}
.workshop_past_item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100vh;
}
.workshop_past_image {
    width: 100%;
    height: 100%;
    position: relative;
}
.workshop_past_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.workshop_past_content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    color: var(--white);
}
.workshop_past_title {
    font-size: var(--size-menu);
    font-weight: var(--font-bold);
}
.workshop_past_date {
    font-size: var(--size-menu);
}
.workshop_past_item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100vw;
}
.workshop_past_item::after {
    transition: .5s all ease-in-out;
}
.workshop_past_item:hover::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--overlay);
    opacity: 0.5;
    transition: .5s all ease-in-out;
}
@media (max-width: 992px) {
.workshops_past_grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    height: auto;
}
.workshop_past_item {
    height: 50vh;
}
.workshops_past {
    height: auto;
    min-height: 100vh;
}
.workshops_past_inner {
    width: 100vw;
}
.workshop_past_item:last-child:nth-child(odd) {
    height: 100vh;
}
}

@media (min-width: 1776px) {
.workshops_past_grid .workshop_past_item:first-child .workshop_past_content {
    left: calc((100vw - 1775px) / 2 + 0px) !important;
    right: auto !important;
}
}  