.clive-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.clive-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.clive-card {
  background: #111;
  border-radius: 14px;
  padding: 30px;
  width: 350px;
  box-shadow: 0 0 20px rgba(0,0,0,0.35);
  border: 1px solid #1F1F1F;
  transition: 0.2s;
}

.clive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.55);
}

.clive-card h2 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}

.clive-meeting-title {
  color: #00A859;
}

.clive-press-title {
  color: #2B8CFF;
}

.clive-select {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  background: #1C1C1C;
  color: white;
  border-radius: 8px;
  border: 1px solid #333;
  appearance: none;
  outline: none;
  transition: 0.2s;
}

.clive-select:hover {
  background: #222;
  border-color: #00A859;
}

@media (max-width:800px) {
  .clive-grid {
    flex-direction: column;
    align-items: center;
  }
}

