/* Overall page centering */
.profile-container {
  width: min(92vw, 920px);
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
}


/* Floating profile card */
.profile-detail-container {
  width: min(92vw, 920px);   /* match all other containers */
  margin: 0 auto;            /* center it exactly like the others */
  background: var(--primary-color);
  padding: 2.5rem 3rem;
  border: solid 4px var(--accent-color);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* Headshot container */
.headshot-container {
  width: 175px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image itself */
.headshot-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name */
.profile-detail-container h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Subtitle */
.profile-detail-container p {
  font-size: 1rem;
  color: #555;
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .profile-detail-container {
    padding: 1.75rem 1.5rem;
  }

  .headshot-container {
    width: 135px;
  }

  .profile-detail-container h2 {
    font-size: 1.35rem;
  }

  .profile-detail-container p {
    font-size: 0.95rem;
  }
}
