/* Placeholder et icônes */
.placeholder-img {
    height: 245px;
    object-fit: cover;
}
  .header-single img{      object-fit: cover;
        position: absolute;
        width: 100%;
        height: 100%;}
/* Icône “camera” → croix */
.fa-camera {
    display: block !important;
    background-image: url('../images/cross.svg') !important;
    background-size: contain !important;
    width: 20px !important;
    height: 20px !important;
    transition: transform .3s ease;
}

.fa-camera:hover {
    transform: rotate(90deg);
}

/* Icône recherche top-bar (nesting) */
.search-icon {
    position: relative;
    top: -4px;

    & a {
        display: block;
        width: 30px;
        height: 30px;
    }

    & span {
        display: none;
    }
}

.search-icon::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('../images/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 4px;
    left: 0;
    position: absolute;
}

/* A propos */
.image_propos img {
    vertical-align: top !important;
    margin-top: 2px;
}