.articles-container {
  position: relative;
  width: 100%;
  height: 350px;
  background-image: var(--page-bg);
  margin-bottom: 60px;
  z-index: -2;
}

.articles-container .articles-main-title::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  background-color: #edededb2;
  height: 73px;
  left: -600px;
  z-index: -1;
  bottom: -15px;
  width: 760px;
  border-radius: 0 10px 10px 0;
}
.articles-container .articles-main-title {
  position: relative;
  padding-top: 20%;
  font-weight: 500;
  font-size: 2.25rem;
  margin-bottom: 60px;
  color: #141414;
}
.articles-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.articles-card {
  height: 548px;
  width: 416px;
  max-width: 100%;
  background-color: rgba(229, 227, 234, 1);
  border-radius: 16px;
}
.articles-img {
  height: 392px;
  width: 100%;
  max-width: 100%;
}
.articles-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.articles-container-description {
  padding: 20px 20px 0 20px;
}
.articles-container-btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articles-link {
  position: absolute;
  text-decoration: none;
  inset: 0;
}
.articles-post-title {
  font-size: 1.25rem;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 15px;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.articles-link img {
  height: 20px;
  width: 10px;
}
.articles-post-description {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 36px;
  color: rgba(50, 50, 50, 1);
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 80px;
}

.pagination a {
  display: inline-block;
  width: 42px;
  height: 42px;
  font-size: 1.125rem;
  text-align: center;
  line-height: 42px;
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  border-radius: 4px;
  border: 1px solid #e5e3ea;
  transition: all 0.3s;
}
.current {
  display: inline-block;
  width: 42px;
  height: 42px;
  font-size: 1.125rem;
  text-align: center;
  line-height: 42px;
  font-weight: 500;
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  background-color: #26144f;
  border-radius: 4px;
}
.dots {
  display: flex;
  align-items: flex-end;
}

.pagination a:hover {
  background-color: #26144f;
  font-weight: 500;
  color: #fff;
}

.pagination .current-page {
  background-color: #000;
  color: #fff;
}
.pagination .prev {
  display: none;
}
.pagination .next {
  display: none;
}
@media (max-width: 1400px) {
  .articles-card {
    width: 48%;
  }
}

@media (max-width: 992px) {
  .articles-container .articles-main-title {
    padding-top: 25%;
  }
}
@media (max-width: 768px) {
  .articles-container {
    height: auto;
    background-image: none;
    margin-bottom: 36px;
  }
  .articles-container .articles-main-title::before {
    content: '';
    display: none;
  }
  .articles-container .articles-main-title {
    padding-top: 9px;
    margin-bottom: 36px;
  }
  .articles-card {
    width: 100%;
  }
  .articles-post-title {
    font-size: 1.6rem;
  }
  .articles-post-description {
    font-size: 1.3rem;
  }
}
