.cs-64286174-container {
    font-family: var(--e-global-typography-primary-font-family, sans-serif);
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cs-64286174-header {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px; /* Incrementado de 24px a 32px */
    font-weight: 700;
    color: #333;
}

.cs-64286174-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cs-64286174-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    background: #fafafa;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eaeaea;
}

.cs-64286174-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.cs-64286174-item--highlight {
    background-color: #f4f9fc;
    border-left: 4px solid #047AAB;
}

.cs-64286174-time {
    flex: 0 0 160px;
    font-weight: 700;
    font-size: 15px;
    color: #047AAB;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cs-64286174-clock-icon {
    font-size: 14px;
    opacity: 0.8;
}

.cs-64286174-content {
    flex: 1;
    padding-left: 20px;
}

.cs-64286174-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
}

.cs-64286174-speaker {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Tablet & Mobile adaptation */
@media (max-width: 768px) {
    .cs-64286174-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .cs-64286174-time {
        flex: none;
    }
    
    .cs-64286174-content {
        padding-left: 0;
        border-top: 1px dashed #eaeaea;
        padding-top: 10px;
        width: 100%;
    }
}
