.blog-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.blog-articles .card-wrapper {
  width: 100%;
}

.article-card::after {
  visibility: hidden;
  content: 'Read more...';
  position: absolute;
  bottom: 48px;
  font-size: 12px;
  color: #0365A2;
  padding: 15px 0;
  width: 100%;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(1px);
}

.article-card:hover::after {
  visibility: visible;
}