#other-contact-cards {
  --other-contact-bg: #fff;
  --other-contact-border: #e5d6d1;
  --other-contact-banner: var(--white);
  --other-contact-avatar: var(--orange-dark);
  --other-contact-text-main: #111827;
  --other-contact-text-muted: #6b7280;
  --other-contact-link: #933000;
  --other-contact-link-border: var(--grey-light);
}

.other-contact-card {
  background: var(--other-contact-bg);
  border: 1px solid var(--other-contact-border);
  box-shadow: 0 14px 34px rgba(179, 92, 54, 0.14);
}

.other-contact-card-banner {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem 1rem 2rem;
  background-color: var(--other-contact-banner);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.other-contact-card-banner-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  max-width: 18ch;
}

.other-contact-card-avatar-wrap {
  position: absolute;
  left: 1rem;
  bottom: 0;
  transform: translateY(50%);
  z-index: 2;
}

.other-contact-card-avatar {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 3px solid #fff;
  background: var(--other-contact-avatar);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.other-contact-card-body {
  padding-top: 2rem;
}

.other-contact-card-stats {
  display: flex;
  gap: 1rem;
}

.other-contact-card-stats-label {
  display: block;
  color: var(--other-contact-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.other-contact-card-stats-value {
  display: block;
  color: var(--other-contact-text-main);
  font-size: 1rem;
  font-weight: 700;
}

.other-contact-card-contacts {
  color: #374151;
  font-size: 0.92rem;
}

.other-contact-card-link {
  color: var(--other-contact-link);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--other-contact-link-border);
  transition: border-color 0.2s ease;
  word-break: break-word;
}

.other-contact-card-link:hover {
  color: var(--other-contact-link);
  border-bottom-color: var(--orange-dark);
}

.other-contact-card-link:focus-visible {
  outline: 2px solid rgba(255, 115, 25, 0.28);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 575.98px) {
  .other-contact-card-banner {
    min-height: 96px;
    padding: 0.875rem 0.875rem 1.75rem;
  }

  .other-contact-card-banner-title {
    max-width: 50%;
    font-size: 0.95rem;
  }
}
