.mm-tiles-container {
    border: solid 1px #c4c4c4;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    font-family: "Open Sans", Sans-serif !important;
}

h2.mm-tiles-headline {
    font-size: 22px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    background: #F4F4F4;
    padding: 8px 12px;
    color: var(--e-global-color-secondary);
}

.mm-tiles-image-wrapper {
    position: relative;
    display: flex;
}

.mm-tiles-image-wrapper img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
    object-position: center;
}

.mm-tiles-link {
    position: absolute;
    display: flex;
    bottom: 16px;
    right: 16px;
}

.mm-tiles-link i {
    padding-left: 16px;
}

.mm-tiles-link a {
    background: var(--e-global-color-primary);
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 4px 26px;
    border-radius: 0.5rem;
}

.mm-tiles-link a:hover {
    color: white;
} 

.mm-tiles-image-wrapper {
    overflow: hidden;
}

.mm-tiles-image-wrapper img {
    transition: all 0.5s ease-in-out;
}

.mm-tiles-image-wrapper:hover {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.mm-tiles-image-wrapper:hover img {
    transform: scale(1.4);
}