/* Creates an rgba background based on a HEX colour */
/*============================================================================
Breakpoint Variables
==============================================================================*/
/*============================================================================
  Breakpoint Mixins
==============================================================================*/
.featured-posts {
  position: relative;
}
.featured-posts__slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.featured-posts__slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(13, 31, 45, 0.7) 0%, rgba(13, 31, 45, 0.7) 33%, rgba(13, 31, 45, 0.5) 66%, rgba(13, 31, 45, 0.3) 100%);
}
.featured-posts__slide--post {
  position: relative;
  max-width: var(--wp--style--global--content-size);
  margin: auto;
}
.featured-posts__slide--post > div {
  padding-top: 100px;
  padding-bottom: 100px;
  color: white !important;
}
@media (max-width: 1320px) {
  .featured-posts__slide--post > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .featured-posts__slide--post > div {
    max-width: 50%;
  }
}
.featured-posts__slide--post > div h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 100;
  margin: 0;
  text-decoration: unset;
}
.featured-posts__slide--post > div h2 a:hover {
  text-decoration: none;
}
.featured-posts__slide--post > div a {
  color: white;
  display: inline-block;
}
.featured-posts__slide--post > div a:hover {
  color: white;
}
.featured-posts .slick-dots {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
}
.featured-posts .slick-dots li {
  list-style: none;
  background: white;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  transition: width 0.3s ease-in-out;
  cursor: pointer;
}
.featured-posts .slick-dots li button {
  display: inline-block;
  visibility: hidden;
}
.featured-posts .slick-dots li:hover {
  background: white;
  width: 18px;
}
.featured-posts .slick-dots li.slick-active {
  background: white;
  width: 38px;
}
.featured-posts .slick-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  background: unset;
  border: unset;
  outline: unset;
}
.featured-posts .slick-arrow.slick-prev {
  z-index: 10;
  right: 80px;
}
.featured-posts .slick-arrow.slick-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.featured-posts .slick-arrow:hover {
  cursor: pointer;
}
