:root {
  --card-bg: #fff;
  --card-border: #e5e7eb;
  --primary: #2563eb;
  --secondary: #4b5563;
  --radius: 12px;
  --shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.cl-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cl-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.cl-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.cl-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.cl-rating {
  font-size: 14px;
  color: #f59e0b;
}

.cl-meta {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.cl-services {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.cl-service-bar {
  display: flex;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.cl-service {
  height: 100%;
}

.cl-desc {
  font-size: 15px;
  margin-bottom: 12px;
}

.cl-actions a {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
