.lfr-layout-structure-item-container {padding: 0;} .lfr-layout-structure-item-row {overflow: hidden;} .portlet-borderless .portlet-content {padding: 0;}.lfr-layout-structure-item-13fe4f07-c60b-077d-5f11-7fc3d5ba6216 {
    display: flex;
    justify-content: center;
.dtmz-homepage-cards {
    display: grid;
    grid-gap: 50px;
    padding: 24px 0;
}

.dtmz-homepage-cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "big-card1 big-card2"
;
}

@media screen and (min-width: 600px) {
    .dtmz-homepage-cards {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-template-areas:
        "big-card1 big-card2"
    ;
    }
}
.dtmz-homepage-cards .dtmz-card:nth-child(1)  { grid-area: big-card1; }
.dtmz-homepage-cards .dtmz-card:nth-child(2)  { grid-area: big-card2; }
}
}