/* Block: IRL Hero — block-specific styling
 * Placed in blocks/irl-hero/style.css so ACF enqueues it with the block.
 * Uses Bootstrap utility classes where possible; these rules cover layout/typography
 * that cannot be achieved via bootstrap alone (positioning, overlays, responsive
 * hero sizing, large decorative header).
 */

.irl_hero_block {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--primary);
  height: 80vh;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
h1.irl_hero_decorative {
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 300;
}
h1.irl_hero_decorative span.decor-wrap {
  display: inline-block;
  margin-right: 20px;
}

.irl_hero_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.irl_hero_content h2.irl_hero_header_small {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.irl_hero_content p.irl_hero_lead {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6rem;
  width: 100%;
  margin-bottom: 2rem;
}

/* Responsive: stack on small screens */
@media (min-width: 768px) {
  .irl_hero_block {
    height: 1000px;
    min-height: 1000px;
  }
  h1.irl_hero_decorative {
    font-size: 8rem;
    line-height: 8rem;
    padding: 0 0 0 20px;
  }
  h1.irl_hero_decorative span.decor-wrap {
    display: block;
  }
  .irl_hero_content h2.irl_hero_header_small {
    font-size: 3.75rem;
    line-height: 4rem;
    font-weight: 300;
  }
  .irl_hero_content p.irl_hero_lead {
    font-size: 1.5rem;
    line-height: 2rem;
    width: 100%;
    max-width: 625px;
  }
}

@media (max-width: 1200px) {
}
