.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .article-box {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
  }

  .article-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  }

  .article-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .article-content {
    padding: 15px;
  }

  .article-content h2 {
    font-size: 1.5em;
    margin: 0 0 10px 0;
    color: #333;
  }

  .article-content p {
    color: #666;
    font-size: 1em;
    margin: 0 0 15px 0;
  }

  .article-content a {
    text-decoration: none;
    color: #007BFF;
    font-size: 1.2em;
    transition: color 0.3s;
  }

  .article-content a:hover {
    color: #0056b3;
  }

  #show-more {
    display: block;
    margin: 30px auto;
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  #show-more:hover {
    background-color: #0056b3;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .article-box img {
      height: 150px;
    }
  }

  @media (max-width: 480px) {
    .article-box img {
      height: 120px;
    }
  }