/**
Theme Name: Zinahamzaoui
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra child theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: zinahamzaoui
Template: astra
*/


/* grille */

.annuaire-grid{
display:flex;
flex-wrap:wrap;
gap:25px;
}


/* titre de la page */

.annuaire-container h1{
font-size:28px;
text-align:center;
margin:3% 0;
}

.annuaire-sous-titre{
display:block;
font-size:20px;
font-weight:400;
margin-top:8px;
color:#777;
text-transform:none;
}

@media (max-width:768px){
.annuaire-container h1{
font-size:22px;
}
}


/* carte */

.carte-pro{
background:#fff;
border:1px solid #e6e6e6;
border-radius:10px;
box-shadow:0 2px 6px rgba(0,0,0,0.04);
padding:30px 25px;
flex:1 1 calc(33.333% - 25px);
text-align:center;
transition:all 0.25s ease;
}


/* hover */

.carte-pro:hover{
transform:translateY(-4px);
box-shadow:0 10px 22px rgba(0,0,0,0.12);
border-color:#dcdcdc;
}


/* titre */

.nom-pro{
text-transform:uppercase;
font-size:18px;
font-weight:600;
margin-bottom:12px;
text-align:center;
}


/* infos */

.infos-pro{
margin-bottom:20px;
}


/* spécialité */

.specialite{
font-size:15px;
font-weight:500;
margin-bottom:4px;
}


/* pays */

.pays{
font-size:14px;
color:#777;
}


/* bouton */

.btn-profil{
margin-top:10px;
}


/* responsive */

@media (max-width:900px){
.carte-pro{
flex:1 1 calc(50% - 25px);
}
}

@media (max-width:500px){
.carte-pro{
flex:1 1 100%;
}
}


/* filtres */

.annuaire-filtres{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:30px;
}

.annuaire-filtres input,
.annuaire-filtres select{
padding:10px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}


/* message aucun résultat */

#aucun-resultat{
text-align:center;
margin:30px 0;
font-weight:600;
color:#555;
}