.eel-block-home-intro {
  background: url('../../assets/images/bg--no-bird-blue.jpg') no-repeat center center;
  background-size: cover;
  color: var(--wp--preset--color--background);
  padding: 60px 40px;
}

.eel-block-home-intro__inner {
  display: flex;
  align-items: center;
  @media (max-width: 1200px) {
	align-items: flex-start;
  }
  justify-content: space-between;
  gap: 20px;
  @media (max-width: 768px) {
	flex-direction: column-reverse;
  }
}

.eel-block-home-intro__content {
  flex: 1 1 60%;
  max-width: 60%;
}

.eel-block-home-intro__headline {
  font-size: var(--wp--preset--font-size--jumbo);
  color: var(--wp--preset--color--background);
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  span {
	color: var(--wp--preset--color--primary);
  }
}


.eel-block-home-intro__text {
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: var(--wp--preset--font-family--gotham-narrow-book);
}

.eel-block-home-intro__image {
  flex: 1 1 40%;
  text-align: center;
}

.home .eel-block-home-intro__image {
	max-width: 25%;
	@media (max-width: 768px) {
		max-width: 50%;
		margin: 0 auto 20px;
	}
  }  

.eel-block-home-intro__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .eel-block-home-intro {
    flex-direction: column;
    text-align: center;
  }

  .eel-block-home-intro__content,
  .eel-block-home-intro__image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .eel-block-home-intro__image {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .eel-block-home-intro {
    padding: 40px 20px;
  }

  .eel-block-home-intro__headline {
    font-size: var(--wp--preset--font-size--large);
  }

  .eel-block-home-intro__text {
    font-size: var(--wp--preset--font-size--small);
  }

  .eel-block-home-intro__image {
    margin-top: 20px;
  }
}