.articles-container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  height: 539px;
}
.articles-container > * {
  width: 50%;
  height: 100%;
  flex: 1;
  display: flex;
}

.articles-container a {
  width: 100%;
}

.articles-container > div:last-child {
  flex-direction: column;
}

@media (max-width: 1024px) {
  .articles-container {
    flex-direction: column;
    height: fit-content;
    gap: 16px;
  }
  .articles-container > * {
    width: 100%;
  }
}
