.certifications-section {
  background-color: #ffffff;
}

.section-title {
  font-weight: 600;
  color: #111827;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: all 0.25s ease;
  height: 100%;
  cursor: pointer;
}

.cert-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}



.cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cert-content {
  flex: 1;
}

.cert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

.cert-provider {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
}

.cert-link {
  color: #6b7280;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.cert-link:hover {
  color: #2563eb;
}