.oh-expert-card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 25px 20px;
  border-radius: 10px;
  background: #ffffff;
  color: #050022;
}

.oh-expert-card__media {
  flex: 0 0 auto;
}

.oh-expert-card__media img {
  display: block;
  width: 96px;
  height: 100%;
  min-height: 126px;
  object-fit: cover;
  border-radius: 10px;
}

.oh-expert-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
}

.oh-expert-card__type,
.oh-expert-card__name,
.oh-expert-card__role {
  color: #050022;
}

.oh-expert-card__role {
  margin-bottom: 20px;
}

.oh-expert-card__ctas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.oh-expert-card__cta {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d8e1f0;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.oh-expert-card__cta:hover,
.oh-expert-card__cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(216, 225, 240, 0.85);
  box-shadow: 0 6px 14px rgba(12, 194, 195, 0.15);
  outline: none;
}

.oh-expert-card__cta svg {
  display: block;
}
