/* Center everything in the left column */
.profile-column {
    text-align: center;
    padding-top: 2rem;
    padding-right: 2rem;
}

.description-column {
    text-align: justify;
    padding-left: 2rem;
}

/* Circular profile picture with border */
.profile-pic {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #aaa;
    margin-bottom: 0rem;
    object-position: center 20%;
}

.profile-pic-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 1rem auto;

  border-radius: 50%;
  border: 3px solid #444;
  overflow: hidden;            /* 🔑 this enforces the mask */
}

.profile-pic-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* vertical shift */
}

/* Name styling */
.profile-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Position title */
.profile-title {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
}

/* Organization */
.profile-org {
    font-size: 1rem;
    color: #666;
}

.justify {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}
