/* Styles spécifiques pour la page Les Groupes */

/* Container principal points fixes */
.points-fixes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
}

/* Grille d'images */
.points-fixes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pf-large {
    grid-row: 1 / 3;
}

.pf-small {
    aspect-ratio: 1;
}

.pf-image-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pf-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Texte section points fixes */
.points-fixes-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pf-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.pf-highlight {
    font-size: 1.3rem;
    margin-top: 20px;
}

/* Partenaires points fixes */
.pf-partners-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-light);
}

.pf-partners-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.pf-partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.pf-partners-logos img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Encadré bleu CTA */
.pf-cta-box {
    background-color: var(--blue-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.pf-cta-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.pf-cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--white);
}

/* Image de la carte des secteurs */
.secteurs-image-container {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.secteurs-image-container img {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.secteurs-image {
    border-radius: 0;
    box-shadow: none;
}

/* Responsive Tablet */
@media (max-width: 968px) {
    .points-fixes-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .points-fixes-grid {
        gap: 10px;
    }

    .pf-intro-text {
        font-size: 1rem;
    }

    .pf-highlight {
        font-size: 1.2rem;
    }

    .pf-cta-title {
        font-size: 1.6rem;
    }

    .pf-cta-text {
        font-size: 1rem;
    }

    .pf-cta-box {
        padding: 30px;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .points-fixes-container {
        gap: 25px;
        margin: 30px auto;
    }

    .pf-intro-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .pf-highlight {
        font-size: 1.1rem;
        margin-top: 15px;
    }

    .pf-partners-container {
        margin-top: 20px;
        padding-top: 15px;
    }

    .pf-partners-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .pf-partners-logos {
        gap: 12px;
    }

    .pf-partners-logos img {
        height: 30px;
    }

    .pf-cta-box {
        padding: 25px 20px;
    }

    .pf-cta-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .pf-cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Responsive Petits mobiles */
@media (max-width: 480px) {
    .points-fixes-grid {
        gap: 8px;
    }

    .pf-intro-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .pf-highlight {
        font-size: 1rem;
        margin-top: 12px;
    }

    .pf-partners-logos img {
        height: 28px;
    }

    .pf-partners-logos {
        gap: 10px;
    }

    .pf-cta-box {
        padding: 20px 15px;
    }

    .pf-cta-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .pf-cta-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}