.ws-block-ImageBlockLink > a.ws-image-block--button,
.ws-block-ImageBlockLink > div.ws-image-block--button {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

div.ws-image-block--image-container {
    overflow: hidden;
    aspect-ratio: 500/307;
    width: 100%;
}

div.ws-image-block--image-container > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.ws-image-block--button:hover div.ws-image-block--image-container > img {
    transform: scale(1.1);
}

.ws-image-block--text-container  {
    display: flex;
    flex-direction: column;
    padding:10px;
    gap:10px;
}

.ws-image-block--title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    z-index: 1;
}

.ws-image-block--description {
    text-align: center;
}