/*=======================
  interview
=======================*/

.interview {
  position: relative;
  padding-bottom: 80px;
}

.interview::before {
  content: "";
  background: #F8F8F8;
  height: 75%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: -2;
}

.interview__list {
  padding: 0 20px;
  position: relative;
}

.interview__picture {
  position: relative;
}

.interview__picture img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.interview__picture::before {
  content: "";
  background: #fff;
  height: 46.5%;
  position: absolute;
  left: -20px;
  display: block;
  width: 100%;
  padding: 0 20px;
  z-index: -1;
  bottom: -135px;
}

.interview__item:not(:last-child) {
  margin-bottom: 80px;
}

.interview__picture {
  margin-bottom: 11px;
}

.interview__item-title {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.interview__item-name {
  font-size: 14px;
  color: #B3B3B3;
  margin-bottom: 24px;
}

.interview-article__btn {
  display: block;
  margin: 0 auto;
  background-color: #fff;
  width: 92%;
}

.navigation {
  margin: 0 auto;
  padding: 80px 0 120px;
}


/* pagination */

.pagination {
  display: flex;
  justify-content: center;
}

.nav-links .page-numbers {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  padding: 4px;
}

.pagination .screen-reader-text {
  display: none;
}

/* .pagination :not(:last-child) {
  margin-right: 10px;
} */

.nav-links .page-numbers {
  color: #000;
  text-decoration: none;
  border: solid 2px #000;
}

.nav-links .page-numbers:not(:last-child) {
  margin-right: 5px;
}


.pagination li {
  display: table-cell;
  vertical-align: middle;
}

.pagination li a:hover,
.nav-links .page-numbers.current {
  color: #fff;
  background: #000;
}


/*=======================
  responsive
=======================*/
@media screen and (min-width: 1024px) {

  .interview__inner {
    max-width: 1250px;
  }

  .interview__list {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
  }

  .interview__list::after {
    content: "";
    display: block;
    width: 25.5%;
  }

  .interview__item {
    width: 25.5%;
  }

  .interview__item::before {
    height: 185px;
    left: -40px;
    top: 376px;
    width: 380px;
  }

  .interview__item-title {
    font-size: 24px;
    line-height: 1.67;
  }

  .interview__item-name {
    font-size: 16px;
    line-height: 2.00;
    margin-bottom: 28px;
  }

  .wrapper {
    padding: 120px 0 0;
  }

  .interview::before {
    height: 53%;
  }

  .interview__picture {
    width: 100%;
    object-fit: cover;
  }

  .interview__picture {
    margin-bottom: 15px;
  }

  .interview__item-title {
    margin-bottom: 30px;
  }

  .interview__picture::before {
    height: 45%;
    top: 94%;
    left: -40px;
    padding: 0 40px;
  }

  .nav-links .page-numbers {
    padding: 0px;
  }
}