/* Estilos para a Programação do Evento */
.wp-festival-schedule {
    font-family: inherit;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.wp-festival-schedule .festival-day {
    margin-bottom: 40px;
}

/* Container para o cabeçalho do dia */
.wp-festival-schedule .day-header-container {
    border-bottom: 2px solid #222;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

/* Data principal (em negrito) - AJUSTADA PARA FICAR COLADA */
.wp-festival-schedule .day-date {
    font-size: 1.9em;
    font-weight: bold;
    text-transform: uppercase;
    color: #004DEB;
    margin: 0 0 -2px 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* Dia da semana (menor) - AJUSTADO PARA FICAR COLADO */
.wp-festival-schedule .day-weekday {
    font-size: 0.9em; 
    font-weight: 400;
    text-transform: uppercase;
    color: #555;
    margin-top: 0 !important;
    padding-top: 0 !important;
    line-height: 1.2;
}

.wp-festival-schedule .event-block {
    margin-bottom: 30px;
    padding-left: 10px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.wp-festival-schedule .event-block:hover {
    border-left: 3px solid #666;
}

/* Alteração: Local e horário com fundo colorido e letra clara */
.wp-festival-schedule .event-time-loc {
    color: #fff; /* Cor da fonte clara/branca */
    background-color: #97896B; /* Cor do fundo (azul escuro) */
    display: inline-block; /* Faz o fundo abraçar apenas o tamanho do texto */
    padding: 4px 10px; /* Espaço interno para não grudar no texto */
    border-radius: 4px; /* Bordas levemente arredondadas */
    margin-bottom: 8px;
    font-size: 0.7em;
}

/* Categoria menor que o título */
.wp-festival-schedule .event-category {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-size: 0.85em;
    color: #666;
}

/* Título */
.wp-festival-schedule .event-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.wp-festival-schedule .film-list {
    list-style-type: disc;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.wp-festival-schedule .film-list li {
    margin-bottom: 6px;
}

.wp-festival-schedule .event-note {
    font-style: italic;
    color: #555;
    margin-top: 6px;
    font-size: 0.95em;
}

