.o-featuredResources {
  margin-bottom: 30px;
}

{# Prevent stacking if JavaScript not enabled #}
.m-featuredResources:not(.slick-initialized) .m-featuredResource__slide:not(:first-child) {
  display: none;
}

.m-featuredResource__slide {
  padding: 0 7px;
}

.m-featuredResource {
  border: 2px solid var(--darkpurple);
  border-radius: 12px;
}

.m-featuredResource__thumb {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.m-featuredResource__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.m-featuredResource__thumb iframe {
  border-radius: 12px 12px 0 0;
}

.m-featuredResource__thumb .hs-video-widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-featuredResource__description {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.m-featuredResource__description div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.m-featuredResource__description h6 {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
}

.m-featuredResource__description h5 {
  margin-bottom: 0;
}

.m-featuredResource__description a:hover h5 {
  color: var(--magenta);
}

.o-featuredResources .slick-dots {
  margin: 25px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.o-featuredResources .slick-dots li {
  padding: 0;
  margin: 0 4px 8px;
  width: 11px;
  height: 11px;
  border-radius: 50px;
  background-color: var(--softmagenta);
  border: 2px solid var(--magenta);
  cursor: pointer;
}

.o-featuredResources .slick-dots li.slick-active {
  background-color: var(--magenta);
}

.o-featuredResources .slick-dots li::before {
  content: none; 
}

.o-featuredResources .slick-dots li button {
  display: none; 
}

@media (min-width: 768px) {  
  .m-featuredResource__description a.button {
    margin-top: 0;
    margin-left: 15px;
  }
}