/* ========================================
   OBJECTIVES CSS - Section objectifs
   ======================================== */

/* Layout principal (grid 1.3fr 1fr) */
.objectives-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Lead text */
.objectives-lead {
    margin-bottom: 2rem;
}

/* Grille des 5 objectifs (2 colonnes) */
.objectives-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

/* Item objectif */
.objective-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

/* Item qui prend toute la largeur */
.objective-item--full {
    grid-column: 1 / -1;
}

/* Bullet point (cercle accent) */
.objective-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Titre d'un objectif */
.objective-title {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Description d'un objectif */
.objective-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    margin: 0;
}

/* Carte Vendée - Container */
.vendee-map-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carte Vendée - SVG */
.vendee-map-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Carte Vendée - Path */
.vendee-map-path {
    fill: rgba(255, 255, 255, 0.15);
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2.5;
}

/* Responsive - Mobile */
@media (max-width: 968px) {
    .objectives-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .objectives-list-grid {
        grid-template-columns: 1fr;
    }

    .vendee-map-container {
        margin-top: 3rem;
    }
}
