.mosaique_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.mosaique_row {
    display: flex;
    width: 100%;
    justify-content: center;
}

.mosaique_item_wrapper {
    margin: 10px;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    position: relative;
}

.mosaique_item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.mosaique_item:hover {
    transform: scale(1.05);
}

.mosaique_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.mosaique_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    max-width: 60%;
    max-height: 80%;
    width: auto;
    height: auto;
}

.mosaique_item:hover .mosaique_logo {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Ensure the link does not affect the layout */
.mosaique_item_link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}