.archive-news-wrapper .card {
  padding: 20px;
}
.news-item {
  display: flex;
  flex-flow: row;
  gap: 20px;
  align-items: stretch;
}

.news-post-meta {
  width: 100%;
  display: flex;
  flex-flow: row;
  padding-bottom: 10px;
}
.news-post-date {
  background-color: #335eb8;
  font-size: 12px;
  line-height: 12px;
  border-radius: 50px;
  padding: 7px 12px;
  color: #fff;
}
.news-card-body {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
}
.news-post-title {
  padding-bottom: 20px;
  color: var(--main-color);
}
.news-card-text {
  flex-grow: 1;
  color: var(--main-color);
}
.news-card-img {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
}
.news-card-img img {
  flex-grow: 1;
  object-fit: cover;
  border-radius: 10px;
}
.news-card-btns {
  padding-top: 10px;
}
.news-card-btns p {
  font-size: 14px;
  padding: 10px 30px;
}


/* SINGLE BLOG POST */


.single-news-content h1 {
  font-size: 48px;
}

.single-news-content h2 {
  padding: 20px 0;
}
.single-news-content p,
.single-news-content ul > li {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
}
.single-news-content p {
  padding: 8px 0;
}
.single-news-content ol {
  padding-left: 24px;
}
.single-news-content ol ul {
  padding-left: 8px;
}
.single-news-content ol > li {
  font-size: 22px;
  font-weight: 500;
  padding: 8px 0;
}

.single-news-content ul > li {
  padding: 4px 0;
}





/* RESPONSIVE */
@media screen and (min-width: 1300px) {
}
@media screen and (max-width: 1300px) {
}
@media screen and (max-width: 1023px) {
  .news-item h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .archive-news-wrapper .card {
    padding: 15px;
  }
  .news-card-img img {
    width: 250px;
  }
}
@media screen and (max-width: 600px) {
  .news-card-img img {
    width: 100%;
  }
  .news-item {
    flex-flow: column;
    justify-content: center;
  }
}
