.rc-article-card-list {
  gap: 16px;
  display: flex;
  max-width: 1040px;
  margin: 32px auto 0;
}
@media screen and (max-width: 787px) {
  .rc-article-card-list {
    flex-direction: column;
    margin-top: 24px;
  }
}
.rc-article-card {
  overflow: hidden;
  flex: 1;
  padding: 8px;
  transition: all 0.3s ease;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
.rc-article-card:hover {
  transform: scale(1.05);
}
.rc-article-card-img {
  overflow: hidden;
  border-radius: 12px;
  display: block;
  width: 100%;
}
.rc-article-card-text {
  padding: 8px;
}
.rc-article-card-meta {
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rc-article-card-meta-category {
  font-size: 12px;
  font-weight: 600;
  color: #fc7400;
}
.rc-article-card-meta-date {
  font-size: 12px;
  font-weight: 600;
  color: #787878;
}
.rc-article-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  margin-top: 4px;
}
@media screen and (max-width: 787px) {
  .rc-article-card-title {
    font-size: 14px;
  }
}
