/* Styles pour le nouveau format du programme */
.program-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin: 40px 0;
}

.program-header {
    text-align: center;
    margin-bottom: 30px;
}

.program-header h2 {
    color: #0a4b7c;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.program-title {
    text-align: center;
    margin-bottom: 40px;
}

.program-title h3 {
    color: #0a4b7c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.program-title .subtitle {
    color: #e63946;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.program-date, .program-location {
    text-align: center;
    margin-bottom: 10px;
    color: #0a4b7c;
    font-weight: 500;
}

.program-location {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.program-location img {
    max-height: 80px;
    width: auto;
}

.program-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.program-time {
    flex: 0 0 150px;
    font-weight: 700;
    color: #0a4b7c;
    font-size: 1.1rem;
    padding-right: 20px;
    border-right: 2px solid #e63946;
    display: flex;
    align-items: center;
}

.program-description {
    flex: 1;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.program-description .icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #e63946;
}

.program-description .text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.program-special {
    background-color: #f8f4e3;
}

.program-special .icon {
    color: #6a994e;
}

/* Styles responsives */
@media (max-width: 768px) {
    .program-item {
        flex-direction: column;
    }
    
    .program-time {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 2px solid #e63946;
        padding-right: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .program-description {
        padding-left: 0;
        padding-top: 10px;
    }
}

@media (max-width: 576px) {
    .program-header h2 {
        font-size: 2rem;
    }
    
    .program-title h3 {
        font-size: 1.5rem;
    }
    
    .program-title .subtitle {
        font-size: 1rem;
    }
    
    .program-time {
        font-size: 1rem;
    }
    
    .program-description .text {
        font-size: 1rem;
    }
}
