.hotlines-smo-card {
  --title-color: #3F5A89;
  --company-color: #646363;
  --phone-color: #2D3748;
  --divider-color: #E2E8F0;
  --bg-color: #F8FAFC;
  
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 1px;
  padding: 1.5rem;
  max-width: 400px;
  margin-bottom: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.hotlines-smo-card__title {
  color: var(--title-color);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.25rem;
  line-height: 1.35;
}

.hotlines-smo-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hotlines-smo-card__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--divider-color);
}

.hotlines-smo-card__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hotlines-smo-card__company {
  color: var(--company-color);
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.4;
}

.hotlines-smo-card__phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hotlines-smo-card__phone {
  color: var(--phone-color);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.hotlines-smo-card__phone:hover {
  color: var(--title-color);
}

.hotlines-smo-card__phone:focus-visible {
  outline: 2px solid var(--title-color);
  outline-offset: 3px;
  border-radius: 4px;
}