/*
Theme Name: Kadence Custom
Template: kadence
Version: 1.0
*/

.liste-adherents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.adherent {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
}



/* ===============================
   FICHE ADHERENT – SINGLE
   =============================== */

.fiche-adherent {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Logo */
.fiche-logo {
    text-align: center;
    margin-bottom: 30px;
}

.fiche-logo img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

/* Nom */
.fiche-adherent h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}

/* Entreprise */
.fiche-adherent h2 {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}

/* Infos texte */
.fiche-adherent p {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

/* Boutons */
.fiche-liens {
    margin-top: 35px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fiche-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 12px;
    background: #f4f6f8;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fiche-btn:hover {
    background: #e9eef3;
    transform: translateY(-2px);
}




/* Responsive */
@media (max-width: 768px) {
    .fiche-adherent {
        padding: 25px;
        margin: 30px 15px;
    }

    .fiche-adherent h1 {
        font-size: 1.8rem;
    }

    .fiche-liens {
        flex-direction: column;
    }
}




