.home-hero {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-section);
}

.home-hero-content-container {
  border-bottom: 1px solid var(--color-accent);
}

.home-hero-content {
  display: flex;
  flex-direction: column;
}

.home-hero-image-sm {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: white;
  width: 150px;
  margin: 0 auto;
}

.home-hero-image-sm img {
  width: 100%;
  object-fit: cover;
  padding-top: 10%; /* To align the face better in the circle */
}

.home-hero-image-big {
  height: 100%;
}

.home-hero-image-big img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

.home-hero-situations {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--spacing-sectionj);
  border-bottom: 1px solid var(--color-accent);
}

.home-hero-situations > p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .home-hero-content-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: var(--spacing-section);
  }
}
