.explore-more {
  width: 100%;
  background-color: var(--al-white);
  padding: 80px 0px 80px 0px;
}

/* ── HEADER ── */
.explore-more__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.explore-more__header h1 {
  color: var(--al-black);
  margin: 0;
}

.explore-more__line {
  width: 100%;
  height: 1px;
  background-color: var(--al-black);
  margin-bottom: 48px;
}

/* ── FEATURED BLOCK ── */
.explore-more__featured {
  margin-bottom: 48px;
}

.explore-more__featured .featured-title {
  margin-bottom: 16px;
}

.text-main {
  font-family: var(--font-regular);
  font-size: var(--font-size-main);
  line-height: var(--line-height-main);
  color: var(--al-black);
  margin-bottom: 32px;
  max-width: 100%;
}

/* ── GRID CARDS HOVER ── */
.explore-more .content-card:hover .content-card__title,
.explore-more .content-card:hover .content-card__link,
.explore-more__featured:hover .featured-title,
.explore-more__featured:hover .content-card__link {
  color: var(--al-lime);
}

.featured-link {
  position: relative;
  display: inline-block;
}

.featured-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  background: currentColor;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 100%;
}

.explore-more__featured:hover .featured-link::after,
.featured-link:hover::after {
  width: 0;
  left: 50%;
}

@media (max-width: 767px) {
  .explore-more {
    padding: 64px 0px 64px 0px;
  }

  .explore-more__header {
    margin-bottom: 24px;
  }

  .explore-more__line {
    margin-bottom: 33px;
  }

  .explore-more__featured {
    margin-bottom: 48px;
  }

  .explore-more__featured .featured-title {
    margin-bottom: 16px;
  }

  .text-main {
    font-size: var(--font-size-main);
    line-height: var(--line-height-main);
  }
}
