/*
|------------------------------------------------------------
| Featured lookbooks
|------------------------------------------------------------
|
*/
.featured-lookbooks {
  width: 100%;
}

.featured-lookbooks__header {
  align-items: center;
  justify-content: space-between;
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .featured-lookbooks__header {
    justify-content: flex-start;
  }
}

.featured-lookbooks__title {
  font-family: "nimbus-roman", serif;
  font-weight: 400;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .featured-lookbooks__title {
    letter-spacing: 2.2px;
  }
}

.featured-lookbooks__link {
  position: relative;
  margin-left: 20px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.7px;
}
@media only screen and (min-width: 768px) {
  .featured-lookbooks__link {
    font-size: 13px;
    letter-spacing: 0.54px;
  }
}
.featured-lookbooks__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.featured-lookbooks__slider {
  overflow: visible;
}
@media only screen and (min-width: 1200px) {
  .featured-lookbooks__slider {
    overflow: hidden;
  }
}

.featured-lookbooks__slide {
  height: auto;
}

.featured-lookbooks__card {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.featured-lookbooks__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 30px;
  text-align: center;
}

.featured-lookbooks__title-block {
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .featured-lookbooks__title-block {
    letter-spacing: 3.2px;
  }
}

.featured-lookbooks__link-block {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 24px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.52px;
  line-height: 14px;
  text-transform: uppercase;
  background-color: #fff;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .featured-lookbooks__link-block {
    padding: 18px 34px 20px;
  }
}
.featured-lookbooks__link-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.featured-lookbooks__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.featured-lookbooks__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s;
}
.featured-lookbooks__card:hover .featured-lookbooks__image img {
  transform: scale(1.05);
}
.featured-lookbooks__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  transition: opacity 0.2s;
}
.featured-lookbooks__card:hover .featured-lookbooks__image::after {
  opacity: 0.4;
}
