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

.article-card__image {
  margin-bottom: 20px;
  height: 200px;
  width: 100%;
  object-fit:cover;
  background-color: #404040;
}

.article-card__header {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}

.article-card__description {
  margin-bottom: 20px;
}

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

.article-card__date {
  font-size: 14px;
  font-weight: 500;
  opacity: 40%;
}

.article-card__button {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 500;

  svg {
    width: 5px;
    height: 10px;
  }
}


@media (max-width: 990px) {
  .article-card__header {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .article-card .paragraph {
    font-size: 14px;
  }
  .article-card__date {
    font-size: 12px;
  }
  .our-articles__header {
    padding-bottom: 28px;
  }
}