/* ---------------------------------------------------------
    sect_news
--------------------------------------------------------- */
.sect_news .wrap {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 60px;
}

/* ---------------------------------------------------------
    Pagenation
--------------------------------------------------------- */
.pagenation .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagenation .page-numbers li {
  margin: 4px;
}

.pagenation .page-numbers li .page-numbers {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 15px;
  color: #f48f9f;
  text-decoration: none;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .2s;
}

.pagenation .page-numbers li .page-numbers:hover {
  background: #f48f9f;
  color: #fff;
}

.pagenation .page-numbers li .page-numbers.current {
  background: #f48f9f;
  color: #fff;
}

.pagenation .page-numbers li .page-numbers.next {
  display: none;
}

@media (max-width: 767px) {
  .sect_news {
    margin-top: 60px;
  }
  .sect_news .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pagenation .page-numbers li .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ---------------------------------------------------------
    news-list
--------------------------------------------------------- */
.news-list__article {
  display: block;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 30px;
  position: relative;
}

.article-item__link {
  text-decoration: none;
  color: inherit;
}

.article-item__link:hover {
  color: #f48f9f;
}

.article-item__post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-item__post-meta .post-categories {
  list-style-type: none;
  display: flex;
  gap: 5px;
}

.article-item__post-meta .post-categories li {
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid #f48f9f;
  background: #fff;
}

.article-item__post-meta .post-categories li:nth-child(even) {
  background: #f48f9f;
}

.article-item__post-meta .post-categories li:nth-child(even) span {
  color: #fff;
}

.article-item__post-meta .post-categories li span {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #f48f9f;
  text-decoration: none;
  text-align: center;
}

.article-item__post-date {
  font-size: 14px;
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #f48f9f;
}

.article-item__post-title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}

/* ---------------------------------------------------------
    side-bar
--------------------------------------------------------- */
.side-bar__item {
  margin-bottom: 40px;
}

.side-bar__item h3 {
  font-size: 17.5px;
  color: #f48f9f;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f48f9f;
}

.side-bar__item ul li {
  list-style: circle;
  margin-left: 20px;
  margin-bottom: 6px;
  color: #f48f9f;
  font-weight: 300;
}

.side-bar__item ul li a {
  color: #696969;
  text-decoration: none;
  line-height: 1.75;
  transition: all .2s;
}

.side-bar__item ul li a:hover {
  color: #f48f9f;
}
