.d3m-service-card-header {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--glass-border);
}

.d3m-service-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.d3m-service-head-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-secondary);
  white-space: nowrap;
  overflow: hidden;
}

.d3m-service-head-id {
  color: var(--ink-tertiary);
  flex-shrink: 0;
}

.d3m-service-head-sep {
  color: var(--ink-tertiary);
  flex-shrink: 0;
}

.d3m-service-head-rate-label {
  color: var(--ink-secondary);
  flex-shrink: 0;
}

.d3m-service-head-price {
  color: var(--ink-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.d3m-service-head-name {
  min-height: 44px;
  max-height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.38;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
  word-break: break-word;
}

@media (max-width: 575.98px) {
  .d3m-service-card-header {
    min-height: 104px;
    padding: 16px;
  }

  .d3m-service-head-name {
    font-size: 14px;
    min-height: 40px;
    max-height: 40px;
  }
}