.profile-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.profile-card img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Title */
.profile-title {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 1rem;
}

/* Body text */
.profile-text {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Highlight paragraph */
.profile-text.highlight {
  font-weight: 500;
}

/* Bullet list */
.profile-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

/* ===== SIGNATURE ===== */
.profile-signature-role {
  margin-top: 0;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1rem;
}

.profile-signature-name {
  margin-bottom: 0.1rem;
  font-size: 1.5rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .profile-title {
    font-size: 1.6rem;
  }

  .profile-text {
    font-size: 1rem;
  }
}