:root {
  color-scheme: light;
  font-family: Georgia, "Times New Roman", serif;
  background: #eef2f5;
  color: #172637;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
}

.profile {
  width: min(780px, calc(100% - 3rem));
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border-top: 8px solid #00549f;
  background: #fff;
  box-shadow: 0 18px 55px rgb(23 38 55 / 16%);
}

.portrait {
  width: 100%;
  height: auto;
  filter: sepia(12%);
}

.eyebrow {
  margin: 0;
  color: #64748b;
  font: 700 0.78rem/1.4 Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0.35rem 0 1.25rem;
  color: #00549f;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

p {
  font-size: 1.08rem;
  line-height: 1.65;
}

.source {
  margin-top: 1.5rem;
  color: #64748b;
  font: 0.8rem/1.4 Arial, sans-serif;
}

@media (max-width: 620px) {
  .profile {
    grid-template-columns: 1fr;
  }

  .portrait {
    width: min(220px, 100%);
  }
}
