/* Block: cnm-hero-page
 * Extracted from theme CSS by wp-arch-agent.
 * Classes: exclusive-hero-inner, exclusive-title-pattern, exclusive-hero
 */

.exclusive-hero {
  min-height: 663px;
  padding: 0;
  background: var(--brand);
  color: var(--bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.exclusive-hero-inner {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0;
  max-width: 120rem;
  margin-inline: auto;
  padding-inline: var(--gutter) 0;
}

.exclusive-hero h1 {
  flex: 0 0 min(60vw, 970px);
  color: var(--bg);
  font-family: var(--sans);
  font-size: clamp(3rem, 5.15vw, 5.625rem);
  font-weight: 600;
  line-height: 1.1667;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
}

.exclusive-title-pattern {
  flex: 1 1 auto;
  align-self: stretch;
  background: url('../img/fencegrid.svg') right center / cover no-repeat;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .exclusive-hero {
    min-height: 460px;
  }
  
  .exclusive-hero h1 {
    flex-basis: min(70vw, 970px);
  }
}

@media (max-width: 991px) {
  .exclusive-hero {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .exclusive-hero {
    min-height: 250px;
  }
  
  .exclusive-hero-inner {
    align-items: center;
    padding-top: 0;
  }
  
  .exclusive-hero h1 {
    flex: 1 1 auto;
    margin-top: 0;
  }
  
  .exclusive-title-pattern {
    display: none;
  }
}

