.brand-card {
    text-decoration: none;
    display: block;
}

.brand-image {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Masque sombre */
.brand-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* transparence */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;

}

/* Texte */
.brand-overlay h3 {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Effet hover */
.brand-card:hover .brand-overlay {
    background: rgba(0, 0, 0, 0.65);
}