.small-image {
    max-width: 75%; /* Adjust size relative to its container */
    height: auto;   /* Maintain aspect ratio */
    display: block; /* Optional: Centers the image if combined with margin */
    margin: 0 auto; /* Optional: Centers the image horizontally */
}

.site-title img {
  display: block;
  max-height: 60px;
}

@media (min-width: 1024px) {
  .site-title img {
    max-height: 120px;
  }
}

.site-header .wrapper {
  display: flex;
  align-items: flex-end; /* Vertically center items */
  justify-content: space-between; /* Optional: spreads logo and nav */
  flex-wrap: wrap; /* Optional: wrap items on small screens */
}

.hero-image-container {
  width: 100%;
  aspect-ratio: 8 / 1;
  overflow: hidden;
  position: relative;
  z-index: -1;
  padding: 0;
  box-sizing: border-box;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  position: static; /* or just remove */
}

@media (min-width: 1024px) {
  .hero-image-container {
    padding-left: 4rem;
    padding-right: 4rem;
    box-sizing: border-box;
  }
}