/* ========================================================= */
/* 🌍 PREMIUM — NOS 2 PÔLES D’ACTIVITÉ                       */
/* ========================================================= */

.ong-poles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6f7fb, #ffffff);
}

.poles-title {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    color: #222;
}

.poles-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* === Card principale === */
.pole-card {
    display: block;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    background: white;
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    text-decoration: none !important;
    color: inherit;
}

.pole-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* === Icônes === */
.pole-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.pole-icon.social {
    background: linear-gradient(135deg, #d4005c, #7b0035);
}

.pole-icon.economic {
    background: linear-gradient(135deg, #005bbb, #003c7a);
}

.pole-title {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

.pole-desc {
    color: #555;
    margin: 12px 0 18px;
    font-size: 0.95rem;
    line-height: 1.5rem;
}

.pole-action {
    font-weight: 600;
    color: #005bbb;
    transition: 0.3s;
}

.pole-card:hover .pole-action {
    color: #003c7a;
    text-decoration: underline;
}

/* === Mobile === */
@media (max-width: 768px) {
    .pole-card {
        padding: 28px 20px;
    }
    .pole-title {
        font-size: 1.3rem;
    }
    .pole-desc {
        font-size: 0.9rem;
    }
}

.section-reveal,
.pole-card {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
