.section__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section__header .section__header-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 2.8rem;
}
.section__header .section__heading {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.section__header .section__thumbnail-wrap {
  position: relative;
  overflow: hidden;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
}
.section__header .section__thumbnail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section__header .section__title {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-h2);
  line-height: 1.2;
}
