.article-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  position: relative;
}

.article-card__cover {
  display: block;
  height: 170px;
  position: relative;
  background-size: cover;
  border-radius: 12px 12px 0 0;
}

.article-card__date {
  color: #475467;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 30px;
  padding: 0 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
}

.article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 16px;
  background: #F2F4F7;
  border-radius: 0 0 12px 12px;
}

.article-card__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.article-card__tags a {
  display: block;
  border-radius: 100px;
  border: 1px solid #D0D5DD;
  padding: 0 8px;
  color: #475467;
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  transition: background, color 0.2s ease-out;
}

.article-card__tags a:hover {
  color: #FFF;
  background: #D0D5DD;
}

.article-card__title {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  transition: color 0.2s ease-out;
}

.article-card__title:hover {
  color: #1570EF;
}

.article-card__excerpt {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: auto;
}

.article-card__excerpt p {
  margin: 0;
}

.article-card__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.article-card__author {
  color: #667085;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.2s ease-out;
}

.article-card__author:hover {
  color: #1570EF;
}

.article-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #FFF;
  position: absolute;
  top: 106px;
  right: 16px;
}

.article-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 1247px) {
  .article-card__title {
    font-size: 16px;
    line-height: 20px;
  }
  .article-card__excerpt {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }
}
