.pls-page-title {
  padding: 95px 0;
  text-align: center;
  background-color: rgb(158, 158, 158);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.pls-page-title .entry-header h1 {
  margin-bottom: 25px;
  color: #fff;
}
.pls-page-title nav ol.breadcrumb li.breadcrumb-item {
  color: #ffffff;
}
.pls-page-title nav ol.breadcrumb li.breadcrumb-item a {
  text-decoration: none;
  color: #00040d;
}

section.blog {
  padding: 50px 0;
}

section.blog .grid-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

section.blog .grid-blog .entry-post {
  position: relative;
  margin: 15px;
}

section.blog .grid-blog .entry-post .entry-thumbnail-wrapper {
  margin-bottom: 1.5rem;
}

section.blog .grid-blog .post-thumbnail {
  overflow: hidden;
  position: relative;
}

section.blog .grid-blog .post-thumbnail a img {
  transition: transform 0.5s cubic-bezier(0, 0, 0.44, 1.18);
  width: 100%;
  max-height: 250px;
  border-radius: 5px;
  object-fit: cover;
}

section.blog .grid-blog .entry-post:hover .post-thumbnail a img {
  transform: scale(1.1);
}

section.blog .grid-blog .post-thumbnail a:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  transition: background-color 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

section.blog .grid-blog .entry-post:hover .post-thumbnail a:after {
  background-color: rgba(0, 0, 0, 0.3);
}

section.blog .grid-blog .entry-post .entry-content-wrapper h2.entry-title a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
}

article.blog-post img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .pls-page-title {
    padding: 65px 0;
    text-align: center;
    background-color: #9e9e9e;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
  }
  section.blog .grid-blog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .pls-page-title {
    padding: 45px 0;
    text-align: center;
    background-color: #9e9e9e;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
  }
  section.blog .grid-blog {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
