.language-bar {
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
  padding: 15px 20px 16px;
}

.language-bar .language {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}

.language-bar .language button {
  min-width: auto;
  min-height: 44px;
  padding: 6px 4px 4px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  opacity: 1;
}

.language-bar .language button[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 650;
}

.language-bar .language span {
  color: #a3a99f;
}

.hero-description {
  white-space: pre-line;
}

.hero-profile {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-portrait {
  flex: 0 0 112px;
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: #dce3da;
  box-shadow: 0 0 0 6px rgba(247, 245, 238, 0.1), 0 14px 32px rgba(0, 0, 0, 0.2);
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.15);
  transform-origin: 65% 33%;
}

.hero-bottom {
  justify-content: flex-end;
}

.evidence-heading {
  justify-content: flex-start;
}

@media (max-width: 760px) {
  .language-bar {
    padding-block: 10px;
  }

  .language-bar .language {
    font-size: 17px;
  }

  .hero-profile {
    gap: 16px;
  }

  .hero-portrait {
    flex-basis: 92px;
    width: 92px;
    border-width: 2px;
    box-shadow: 0 0 0 5px rgba(247, 245, 238, 0.1), 0 12px 28px rgba(0, 0, 0, 0.2);
  }

  .hero-profile .hero-eyebrow {
    flex-wrap: wrap;
    max-width: 210px;
  }
}
