
  .news-section {
    margin: auto;
    padding: 20px 30px;
  }

  .news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .news-content {
    padding: 15px;
  }

  .news-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .news-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
  }

  .news-summary {
    font-size: 0.95rem;
    color: #444;
  }

  /* Desktop mode = Grid */
  @media (min-width: 768px) {
    .news-section {
    margin: auto;
    padding: 20px 20px;
  }
    .swiper-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .swiper-slide {
      width: auto !important;
    }

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
      display: none !important;
    }
  }

  @media screen (max-width: 400px) {
    .news-section {
      padding: 10px 20px;
    }
    
  }