* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, input, textarea, button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

.articles {
  padding: 5rem 0;
}
.articles h2 {
  color: #07174A;
  font-size: 3rem;
  font-weight: 700;
}

.article-card {
  width: clamp(20rem, 25vw, 23rem);
}
.article-card img {
  height: clamp(20rem, 25vw, 24rem);
  border-radius: 3px 3px 0 0;
  transition: all 0.2s ease;
}
.article-card .content {
  font-size: 1.25rem;
  color: #000000;
  background: #D9D9D9;
  border-radius: 0 0 3px 3px;
}
.article-card .content strong {
  font-size: 0.875rem;
}
.article-card .content h4 {
  font-size: 1.25rem;
  font-weight: 800;
}
.article-card .content .abstract {
  font-size: 0.75rem;
  height: 5.5rem;
  overflow: hidden;
  text-align: justify;
}
.article-card .content a {
  color: #000000;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 500;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  padding: 0.25rem 0.5rem;
  transition: all 0.2s ease;
}
.article-card .content a:hover {
  color: #ffffff;
  background: #434343;
}
