.featured-post {
  margin-bottom: 60px;
}

.featured-post__wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.featured-post__image {
  flex: 0 0 38%;
}

.featured-post__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.featured-post__content {
  flex: 1;
}

.featured-post__title {
  font-size: 22px;
  margin-bottom: 12px;
}

.featured-post__title a {
  color: #000;
  text-decoration: none;
}

.featured-post__title a:hover {
  color: #19cca3;
}

.featured-post__summary {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-post__button {
  display: inline-block;
}

/* Latest Blogs label */

.blog-section-eyebrow {
  margin-bottom: 10px;
}

.section-eyebrow {
  font-family: aktiv-grotesk-extended, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: left;
  font-size: 22px;
  color: #19cca3;
  display: inline-block;
  position: relative; 
}

.section-eyebrow:before,
.section-eyebrow:after {
  content: "";
  position: absolute;
  border-top: 2px solid #19cca3;
  top: 50%; 
  width: 999em;
}

.section-eyebrow:before {
  right: 100%;
  margin-right: 15px;
}

.section-eyebrow:after {
  left: 100%;
  margin-left: 15px;
}

/* Mobile */

@media (max-width: 768px) {
  .featured-post__wrapper {
    flex-direction: column;
  }

  .featured-post__image {
    flex: 1;
  }
