.health-author {
  width: min(1120px, calc(100% - 32px));
  margin: 42px auto 48px;
  padding: 22px;
  border: 1px solid rgba(14, 124, 134, 0.24);
  border-left: 5px solid #0e7c86;
  border-radius: 18px;
  background: #f7fbfb;
  box-shadow: 0 14px 34px rgba(16, 61, 64, 0.08);
  color: #173c3a;
}

.health-author__inner {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.health-author__photo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid #fff;
  box-shadow: 0 5px 18px rgba(16, 61, 64, 0.18);
}

.health-author__label {
  margin: 0 0 4px;
  color: #0e7c86;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.health-author__name {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.health-author__bio {
  margin: 7px 0 10px;
  max-width: 820px;
  line-height: 1.55;
}

.health-author__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: 0;
  color: #587170;
  font-size: 0.9rem;
}

.health-author__profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #087783;
  font-weight: 800;
  text-decoration: none;
}

.health-author__profile:hover,
.health-author__profile:focus-visible {
  color: #075e67;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .health-author {
    width: min(100% - 20px, 1120px);
    margin-block: 30px 38px;
    padding: 18px;
  }

  .health-author__inner {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
  }

  .health-author__photo {
    width: 64px;
    height: 64px;
  }

  .health-author__bio,
  .health-author__meta,
  .health-author__profile {
    grid-column: 1 / -1;
  }
}
