.hero-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Image (mobile first) */
.hero-block-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('/_flysystem/fedora/2026-03/Faculty_Dr-Rudy-Ryser_photo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content */
.hero-block-content {
  padding: 1.5rem 1em;
  color: #000;
  background-color:#e9ecee;
}

.home-featured-collection-pretitle {
  color: #000;
}

.hero-block-title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.hero-block-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Tablet */
@media screen and (min-width: 768px) {
  .hero-block-content {
    padding: 2rem;
  }

  .hero-block-title {
    font-size: 2.25rem;
  }
}

/* Desktop (restore original hero behavior) */
@media screen and (min-width: 1024px) {
  .hero-block {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-image: url('/_flysystem/fedora/2026-03/Faculty_Dr-Rudy-Ryser_photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15em;
    box-sizing: border-box;
  }

  /* Hide inline image on desktop */
  .hero-block-image {
    display: none;
  }

  .hero-block-content {
    max-width: calc(50% - 5em);
    padding: 1rem;
    text-align: left;
    background-color:transparent;
  }

  .hero-block-title {
    font-size: 2.5rem;
  }

  .hero-block-subtitle {
    font-size: 1.25rem;
  }
}