/*
 * Featured Module
 * ========================================================================
 * Styles for featured content sections, including layout, animations,
 * and responsive behavior for highlighting key content.
 */

/* ==========================================================================
   Base Featured Section Styles
   ========================================================================== */

.featured-section {
  padding: 3.75rem 0;
  position: relative;
  color: var(--bs-white);
}
@media (max-width: 61.99875rem) {
  .featured-section {
    padding: 3.125rem 0;
  }
}
.featured-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 36.375rem;
  gap: 1rem;
}
.layout-leftimage {
  flex-direction: row-reverse;
  @media (max-width: 61.99875rem) {
    flex-direction: column-reverse;
  }
}
.featured-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.featured-tag {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  p {
    margin-bottom: 0;
  }
}
.featured-title {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.438rem;
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 3.438rem;
    margin-bottom: 0;
  }
  span {
    color: var(--bs-secondary);
  }

  .font-serif {
    font-size: 3.438rem;
    line-height: 3.438rem;
    font-weight: 400;
  }
}
@media (max-width: 61.99875rem) {
  .featured-title {
    font-size: 2.5rem;
    line-height: 3.438rem;
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
      font-size: 2.5rem;
      line-height: 3.438rem;
    }
    .font-serif {
      font-size: 3.438rem;
      line-height: 3.438rem;
    }
  }
  .featured-content {
    max-width: 100%;
    .btn {
      width: 100%;
    }
  }
}

.featured-description {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 400;
}

@media (max-width: 61.99875rem) {
  .featured-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
