/**
 * SAIDA NATURE NETWORK - Styles Communs aux CPT
 * Contient UNIQUEMENT les styles partagés entre :
 * - flore_saida
 * - faune_saida
 * - stations_saida
 * Ne modifie PAS les styles spécifiques existants
 */

/* Structure commune */
.saida-cpt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.saida-cpt-header {
    margin-bottom: 30px;
    text-align: center;
}

.saida-cpt-section-title {
    color: var(--the7-accent-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Galerie */
.saida-cpt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

/* Boutons */
.saida-cpt-btn {
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.saida-cpt-btn-like {
    background: #4CAF50;
    color: white;
}

.saida-cpt-btn-dislike {
    background: #f44336;
    color: white;
}

/* Structure de base commune */
.saida-cpt-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--the7-grid-gap);
    margin: 2em 0;
}

/* Cartes basiques (sans style visuel spécifique) */
.saida-cpt-card {
    padding: 15px;
    transition: all 0.3s ease;
}

/* Éléments textuels communs */
.saida-cpt-title {
    color: var(--the7-accent-color);
    margin-top: 0;
    font-size: 1.4em;
}

.saida-cpt-meta {
    font-size: 0.9em;
    color: #666;
}

/* Badges et indicateurs */
.saida-statut {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    margin-left: 8px;
}

.saida-statut-en-danger {
    background: #d63638;
    color: white;
}

.saida-statut-vulnerable {
    background: #ffb900;
}

/* Responsive */
@media (max-width: 768px) {
    .saida-cpt-container {
        grid-template-columns: 1fr;
    }
}