/* Estilos para el banner del programa */
.programa-banner {
    display: flex; /* Mostrar el banner */
    background-color: transparent;
    padding: 15px;
    margin: 0;
    align-items: center;
    justify-content: space-between;
}

.programa-banner-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .programa-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .programa-banner-title {
        margin-bottom: 15px;
    }
} 