/*
Theme Name: Divi Child
Template: Divi
*/

/* GLOBAL STYLE */
.entreprises-archive {
    font-family: "Lato", Arial, sans-serif;
    color: #222222;
    line-height: 1.6;
}

/* LIST GRID */
.entreprises-list {
    display: grid;
    gap: 1.5rem;
}

/* CARD */
.entreprise-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.entreprise-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
    border-color: #dddddd;
}

/* TITLE */
.entreprise-title {
    margin: 0 0 0.4rem;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: 0.005em;
}

/* TITRE (version de base, renforcee plus bas) */
.entreprise-title a {
    color: #d00000;
    text-decoration: none;
}

.entreprise-title a:hover {
    text-decoration: underline;
}

/* LINKS (email + telephone) - HARMONISES AVEC LE TEXTE */
.entreprise-item a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
}

.entreprise-item a:hover {
    text-decoration: underline;
}

/* TEXT */
.entreprise-item p {
    margin: 0.15rem 0;
    font-size: 0.97rem;
    color: #333333;
}

.entreprise-item strong {
    font-weight: 600;
    color: #111111;
}

/* LAYOUT: FILTERS + LIST */
.entreprises-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.entreprises-filtres-col {
    width: 280px;
    flex-shrink: 0;
}

.entreprises-list-col {
    flex: 1;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .entreprises-layout {
        flex-direction: column;
    }

    .entreprises-filtres-col {
        width: 100%;
    }

    .entreprises-list {
        gap: 1rem;
    }

    .entreprise-item {
        padding: 1rem 1.1rem;
    }

    .entreprise-title {
        font-size: 1.15rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

/* ------------------------------------------
   FORCE LE TITRE EN ROUGE #d00000
   ------------------------------------------ */
.entreprise-title a {
    color: #d00000 !important;
}