.mini-hero-block {
  position: relative;
  width: 100%;
  max-height: 250px;
  overflow: hidden;
}

.mini-hero-image {
  position: relative;
  width: 100%;
  height: 250px;
}

.mini-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.mini-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 100%;
  padding: 0 20px;
  z-index: 1;
}

.mini-hero-headline {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mini-hero-description {
  font-size: 1.25rem;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .mini-hero-headline {
    font-size: 2rem;
  }

  .mini-hero-description {
    font-size: 1.1rem;
  }
}
