.swiper {
    padding: 40px 0;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
  }
  
  .update-card {
    max-width: 350px;
    width: 100%;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
  
    font-weight: 700;
  }
  
  .updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .update-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .update-image {
    position: relative;
  }
  
 .update-image img {
    width: 100%;
    height: 100%;
    display: flex;
    max-height: 240px;
    object-fit: cover;
    background-color: #ffffff;
}
  
  .update-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #33c1e3;
    color: #fff;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 4px;
  }
  
  .update-meta {
    font-size: 0.9rem;
    color: #666;
    margin: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .update-title {
    font-size: 1.2rem;
    margin: 0 15px;
    font-weight: 600;
    color: #000;
  }
  
  .read-more-btn {
    margin: 15px;
    padding: 10px 15px;
    background: #e3f7ff;
    color: #333;
    text-align: center;
    display: inline-block;
    border: 1px solid #c2edfc;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .read-more-btn:hover {
    background: #d2f1ff;
  }