.article-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.article {
  width: 100%;
  display: flex;
  border: 2px solid rgb(228, 228, 228);
  align-items: center;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  justify-content: center;
  margin-bottom: 20px;
}

.img-sampul {
  height: fit-content;
  width: 250px;
  object-fit: contain;
  border-radius: 10px;
}

.text-area {
  width: 90%;
  margin-top: 10px;
  padding: 20px;
}

.title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px !important;
}

.article-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px !important;
}

.recent {
  width: 80%;
  height: 200px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgb(228, 228, 228);
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  justify-content: center;
}

.img-recent {
  width: 90%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.recent-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-style: italic;
}

.title-header {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .article-wrapper {
    padding: 0px !important;
  }

  .article {
    flex-direction: column;
    padding: 0px !important;
  }

  .text-area {
    width: 100%;
  }
}
