body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-img {
  width: 260px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 14px;
  object-fit: cover;
  display: block;
}

.sidebar-name {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 12px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links a,
.content a {
  color: #1a1a1a;
  text-decoration: underline;
}

.content {
  min-width: 0;
}

h1 {
  font-size: 2.2rem;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 36px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.paper {
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .container {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 30px auto;
  }

  .profile-img {
    width: 140px;
  }
}
