/* Section 1 : Dernières actualités */
.section1-home {
    margin: 48px auto 0 auto;
    padding: 25px 0;
    background: #a5a5a5;
    border-radius: 18px;
    max-width: 1100px;
    box-shadow: 0 2px 16px rgba(120, 60, 200, 0.08);
    display: flex;
    flex-direction: column;
}
.section1-title {
    margin: 0 0 24px 32px;
    font-size: 1.35em;
    color: #474747;
    font-weight: bold;
    text-align: left;
}

.section1-home .btn-more {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: 32px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.section2-home {
    margin: 48px auto 0 auto;
    padding: 25px 0;
    background: #ffb4b4;
    border-radius: 18px;
    max-width: 1100px;
    box-shadow: 0 2px 16px rgba(120, 60, 200, 0.08);
}
.section2-title {
    margin: 0 0 24px 32px;
    font-size: 1.35em;
    color: #921c1c;
    font-weight: bold;
    text-align: left;
    margin-top: 1px;
}

.section2-home .btn-more {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: 32px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.event-block {
    background: #fff;
    color: #6e6e6e;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(120, 60, 200, 0.10);
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 400px;
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    margin: 0 8px;
    position: relative;
}

#event_legende_bouton {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 8px;
    right: 8px;
    background-image: url('../medias/actions_legende.png');
    border-radius: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    z-index: 2;
    border: none;
    cursor: pointer;
}
.event-legende {
    position: absolute;
    top: 38px;
    right: 0;
    left: auto;
    min-width: 220px;
    max-width: 320px;
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    padding: 16px 18px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    font-size: 1em;
    display: block;
}

.event-crac {
    color: #c42c2c;
}
.event-part {
    color: #00a128;
}
.event-citoyenne {
    color: #1d00a1;
}
.event-autre {
    color: #3d3d3d;
}

#event_legende_bouton:hover + .event-legende,
#event_legende_bouton:focus + .event-legende {
    opacity: 1;
    pointer-events: auto;
}

.event-list {
    margin: 12px auto 12px auto;
}


/* Section 3 : Rectangle violet et sliders */
.section3-home {
    margin: 48px auto 0 auto;
    padding: 25px 0;
    background: #f3e8ff;
    border-radius: 18px;
    max-width: 1100px;
    box-shadow: 0 2px 16px rgba(120, 60, 200, 0.08);
}
.section3-title {
    margin: 0 0 24px 32px;
    font-size: 1.35em;
    color: #7c3aed;
    font-weight: bold;
    text-align: left;
    margin-top: 1px;
}
.section3-rectangles-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.section3-rectangle {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(120, 60, 200, 0.10);
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 400px;
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    margin: 0 8px;
}
.section3-rectangle-title {
    font-size: 1.25em;
    font-weight: bold;
    color: #7c3aed;
    margin-bottom: 18px;
    text-align: left;
}

.em-boutique {
    margin-bottom: 5px;
}

.section3-rectangle .btn-more {
    width: fit-content;
    align-self: flex-end;
    margin-top: auto;
}