/* Container principal */
.brocante-list-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Texte d'introduction */
.brocante-header {
    margin-bottom: 50px;
}

.brocante-header p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin: 0;
}

/* Espacement entre les blocs d'événements */
.events-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Bloc d'un événement */
.event-strip {
    display: flex;
    flex-direction: column;
}

/* Titre - Style Serif comme sur l'image */
.event-info h3 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #333333;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: 700;
}

/* Ligne Date et Département avec le tiret orange */
.date-badge {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    font-size: 1.15rem;
}

.date-badge::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 4px;
    background-color: #ff5e2b; /* Orange vif de l'image */
    margin-right: 15px;
}

/* Masquage des éléments inutiles pour ce style */
.date-badge .month,
.category.tag-puces,
.location {
    display: none;
}

/* Description */
.summary {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 750px;
}

/* Lien style "Fiche Brocabrac" */
.event-action .btn-view {
    display: inline-block;
    color: #ff5e2b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.event-action .btn-view:hover {
    text-decoration: underline;
}

/* Responsive pour mobiles */
@media (max-width: 600px) {
    .event-info h3 {
        font-size: 1.6rem;
    }

    .date-badge {
        font-size: 1rem;
    }
}