/**
 * Hero Block Styles
 */

.block-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.block-hero.hero-slim {
  min-height: auto;
}

.block-hero.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-image {
  position: relative;
}

.hero-image img {
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .block-hero {
    min-height: 400px;
  }
  
  .block-hero.hero-slim {
    min-height: auto;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
}

