.conferences {
    margin-top: 20px;
}

.conference-item {
    padding: 15px;
    border-left: 4px solid #ff6f61; /* rouge corail pour différencier */
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 4px;
}

.conference-titre {
    font-weight: 600;
    margin-bottom: 5px;
}

.conference-date {
    color: #6c757d;
    margin-bottom: 5px;
}

.conference-image {
    margin: 10px 0;
}

.conference-image img {
    width: 100%;
    max-width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.conference-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Texte à gauche */
.conference-text {
    flex: 1;
}

/* Image à droite */
.conference-image {
    width: 310px;
    flex-shrink: 0;
}

.conference-image img {
    width: 100%;
    /*height: 180px;*/
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* 📱 Tablette et mobile */
@media (max-width: 992px) {
    .conference-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .conference-image {
        width: 100%;
    }

    .conference-image img {
        width: 100%;
        height: auto;
    }
}
