.post-item-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-blog {
  position: relative;
  overflow: hidden;
  text-align: center;

}
.post-item-title {
    margin-bottom: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
    font-size: 16px;
    margin-top: 2rem;
}
.top-section {
  position: relative;
}

.blog-swiper .swiper-slide .post-item {
  display: block;
  text-align: right;
}

.post-item-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
}

.post-item-image img {
  object-fit: cover;
  display: block;
  transition: all 0.35s ease-in-out;
}

.post-item-date {
  position: absolute;
  bottom: -15px;
  right: 12px;
  background: #000;
  padding: 0 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color3);
  z-index: 4;
  height: 32px;
}

.post-item-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2188738c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color3);
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  z-index: 3;
}

.post-item:hover .post-item-image img {
  filter: blur(5px);
  transform: scale(1.1);
}

.post-item:hover .post-item-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.post-item-title a {
  font-size: 18px;
  margin-top: 15px;
  text-align: right;
  color: var(--text-title);
}

.post-item:hover .post-item-title a {
  color: var(--color2);
}

.blog-swiper {
  position: relative;
}

.blog-swiper .swiper-slide {
  height: auto;
}

.navigation-container-blog {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.section-blog .swiper-nav {
  cursor: pointer;
  color: var(--body-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: none;
}

.swiper-nav.swiper-button-prev.swiper-button-prev-blog::after,
.swiper-nav.swiper-button-next.swiper-button-next-blog::after {
	display: none;
}