@media (min-width: 1025px) {
  #admin-section {
    margin-bottom: 20px;
  }

  .news-list {
    height: max-content;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    overflow: hidden;
  }

  .news-item {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  #admin-section {
    margin-bottom: 20px;
  }

  .news-list {
    height: max-content;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
  }

  .news-item {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}
