<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.evento-schedule-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 0px;
}

.schedule-item {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.schedule-item:first-child{ border:none}
.schedule-meta {
    display: flex;
    flex-direction: column;
    font-size: 0.95em;
    color: #333;
}

.schedule-time {
    font-weight: bold;
	font-size: 1.2em;
}

.schedule-speaker {
    font-style: italic;
    color: #555;
}

.schedule-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-title {
    font-weight: 700;
    margin: 0;
}

.schedule-description {
    margin: 0;
    font-size: 0.95em;
    color: #222;
    line-height: 1.4em;
}
.schedule-description &gt; p{
	margin-bottom:10px;
}
.schedule-description &gt; ul{
	list-style-type: circle;
margin-left: 17px;
}

/* Responsive enhancements */
@media (min-width: 600px) {
    .schedule-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .schedule-meta {
        width: 25%;
    }

    .schedule-content {
        width: 70%;
    }
}
</pre></body></html>