.wp-block-laboiteare-cta-image{
    word-break-inside: 100%;
max-width: 300px !important;
}


.cta-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.cta-image-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.cta-image-link:hover {
    transform: translateY(-2px);
}

.cta-image-image-wrapper {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0 40px 0 40px;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:  0 40px 0 40px;
}

.cta-image-title {
    margin: 10px 0 5px 0;
    text-align: center;
    font-size: var(--wp--preset--font-size--large);
    font-family: 'Playfair Display', Sans-Serif;
}

/* Style responsive */
@media (max-width: 768px) {
    .cta-image-image-wrapper {
        width: 300px;
        height: 300px;
    }
}