/* --- HEADSHOT (CIRCULAR AVATAR) --- */
.headshot {
  height: 6rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border-style: solid;
  border-width: 0.2rem;
  border-color: var(--secondary-color);
  background-color: var(--primary-color);
  shape-outside: circle(50%);
  flex-shrink: 0;
  flex-grow: 2;
  margin-right: 1rem;
  object-fit: cover;
  object-position: center;
}
/* Example usage (headshot + label):
  <div class="headshot-and-label-container">
    <img class="headshot" src="assets/images/people/james-ingalls-headshot.webp" alt="James Ingalls" />
    <div class="headshot-label">
      <h2>James Ingalls</h2>
      <h3>Founder & CEO, Head Director</h3>
    </div>
  </div>
*/
/* --- HEADSHOT + LABEL CONTAINER (LAYOUT) --- */
.headshot-and-label-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
}
/* --- HEADSHOT LABEL (TEXT NEXT TO AVATAR) --- */
.headshot-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* --- HEADSHOT LABEL HEADING STYLES --- */
.headshot-label h2 {
  color: var(--secondary-color);
}
/* --- INLINE HEADSHOT (EMBEDDED, ALTERNATE SPACING) --- */
.inline-headshot {
  shape-outside: circle(50%);
  margin-right: 0px;
  padding: 0px;
  margin: 1rem;
  margin-bottom: 0rem;
}
/* --- INLINE IMAGE (FULL-WIDTH CARD-LIKE IMAGES) --- */
.inline-img {
  background-color: #000000;
  width: 90%;
  border-radius: 6px;
  border-width: 0.2rem;
  border-color: var(--secondary-color);
  border-style: solid;
  object-fit: cover;
  object-position: center;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
