<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.oaka-listing-familles.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
  
.marque-item-wrapper {
    position: relative;
    flex: 0 0 calc((100% - 20px) / 3);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.marque-item-wrapper a img {
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.marque-item-wrapper a h2,
.marque-item-wrapper a h3 {
    text-align: center;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
    padding-bottom: 0px;
    color: #FFF;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
    z-index: 2;
}

.marque-item-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* transparent par dÃ©faut */
    transition: background 0.3s ease;
    pointer-events: none; /* permet de cliquer Ã&nbsp; travers */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.marque-item-wrapper:hover .overlay {
    background: rgba(0, 0, 0, 0.6); /* filtre noir au hover */
}

.marque-item-wrapper span {
    width: 100%;
    position: absolute;
    bottom: 15px;
    opacity: 1;
    color: #FFF;
    z-index: 1;
    text-align: center;
    transition: opacity 0.3s ease;
}

/* .marque-item-wrapper .overlay span {
    transition: opacity 0.3s ease;
    opacity: 0;
    color: #FFF;
    margin-bottom: 15px;
}
.marque-item-wrapper:hover .overlay span {
    opacity: 1;
    
} */

/* Partie RWD */

@media screen and (max-width:980px) {
    .marque-item-wrapper {
        flex: 0 0 calc((100% - 10px) / 2);
    }
    .marque-item-wrapper a h2,
    .marque-item-wrapper a h3 {
        font-size: 22px;
    }
    
}
@media screen and (max-width:596px) {
    .marque-item-wrapper {
        flex: 0 0 100%;
    }
}</pre></body></html>