.popular-articles a, .popular-articles p, .popular-articles h2 {
  margin-bottom: 0;
  padding: 0;
}

.popular-articles {
  margin: 50px 0;
}

.popular-articles a {
  text-decoration: none;
}

.popular-articles__nav-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  user-select: none;
}

.popular-articles__nav-btns-panel {
  display: flex;
  justify-content: space-between;
  width: 92px;
}

.popular-articles__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  border: #9499AC 1px solid;
  border-radius: 5px;
  box-sizing: border-box;
}

.popular-articles__nav-btn:hover {
  border-color: #0562D0;
}

.popular-articles__nav-btn:hover > svg * {
  stroke: #0562D0;
}

.popular-articles__title {
  color: #333;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Raleway, serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card__image {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  margin-bottom: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.article-card__title {
  margin-top: 12px;

  color: #333;
  font-family: Rubik, serif ;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.article-card__description {
  margin-top: 17px;

  color: #333;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Raleway, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #666;
  font-family: Rubik, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-variant-numeric: lining-nums proportional-nums;
}

.article-meta__views-count {
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-meta__views-count-icon {
  margin-right: 4px;
  margin-bottom: 4px;
}

@media screen and (max-width: 575px) {
  .popular-articles__title {
    font-size: 24px;
    line-height: 30px;
  }

  .popular-articles__nav-btns-panel {
    width: 64px;
  }

  .popular-articles__nav-btn {
    height: 28px;
    width: 28px;
  }

  .edvisor-blog-post__author-description {
    font-size: 14px;
  }
}
