#inner-page-wrapper > .container {
  width: 100%;
  padding: 0;
}

.ip-blogs {
  position: relative;
  font-size: 0;
}
.ip-blogs .gsite-bg {
  position: absolute;
  width: 100%;
  height: 75.6%;
  top: -18px;
  left: 0;
  z-index: -1;
}
.ip-blogs .gsite-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, white 100%);
}

.ip-blogs-container {
  position: relative;
  padding: 75px var(--padding) 70px;
}

.ip-blogs-list {
  margin: 0 -15px;
}

.ip-blogs-item {
  width: 33.33%;
  padding: 15px;
}
.ip-blogs-item a {
  display: block;
  position: relative;
  height: 100%;
}

.ip-blogs-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.ip-blogs-image::before, .ip-blogs-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.ip-blogs-image::before {
  background: url(../../images/blogs/overlay.png) no-repeat center center/cover;
  z-index: 5;
}
.ip-blogs-image::after {
  background: rgba(0, 0, 0, 0.23);
}
.ip-blogs-image * {
  height: 100%;
}

.ip-blogs-text {
  position: relative;
  padding: 30px 30px 150px;
  height: 100%;
  z-index: 2;
}

.ip-blogs-title {
  font-family: var(--font-family-title);
  font-size: 2.5vw;
  font-weight: 700;
  color: rgba(var(--primary), 1);
  line-height: 1;
  text-transform: uppercase;
  padding-right: max(1.875vw, 10px);
  min-height: 10vw;
}

.ip-blogs-content {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-right: max(2.5vw, 10px);
  min-height: 130px;
  margin-top: 70px;
}

.ip-blogs-button {
  /* transform: translate(30px, 30px); */
  margin-top: -25px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.ip-blogs-button .gsite-button {
  display: block;
  margin: 0 0 0 auto;
  border: 2px solid rgba(var(--primary), 1);
  pointer-events: none;
}
.ip-blogs-button .gsite-button div {
  height: 108px;
}

.ip-blogs-item a:hover .ip-blogs-button .gsite-button {
  border: 2px solid rgba(var(--secondary-alt), 1);
  background: rgba(var(--secondary-alt), 0.25);
}

.gsite-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 65px;
}
.gsite-pagination button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  padding: 0;
  font-size: 15px;
  color: rgba(var(--primary), 1);
  width: 40px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--secondary), 1);
  transition: all var(--transition);
}
.gsite-pagination button[aria-label=Prev] {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.gsite-pagination button[aria-label=Next] {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.gsite-pagination button:hover {
  background: rgba(var(--secondary), 1);
  color: #ffffff;
}
.gsite-pagination div {
  width: 122px;
  height: 46px;
  border: 1px solid rgba(var(--secondary), 1);
  border-left: 0;
  border-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: rgba(var(--primary), 1);
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
  .ip-blogs-title {
    padding-right: 0;
  }

  .ip-blogs-content {
    padding-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .ip-blogs-container {
    padding-top: 0;
  }

  .ip-blogs-holder {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .ip-blogs-item {
    width: 100%;
  }

  .ip-blogs-title {
    font-size: 30px;
    min-height: auto;
  }
}