/* HERO */
.news-hero{
    padding: 90px 0;
    background: linear-gradient(135deg, #8c2388, #a84199);
    text-align: center;
  }
  .news-hero{
    padding: 110px 0;
    background: linear-gradient(135deg, #8c2388, #a84199);
    text-align: center;
  }
  
  .content-section{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .news-hero h1{
    font-family: 'EB Garamond', serif;
    font-size: 56px;
    color: white;
  }
  
  .hero-subtitle{
    color: white;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* GRID */
  .news-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  
  /* CARD */
  .news-card{
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .news-card:hover{
    transform: translateY(-6px);
  }
  
  .news-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .news-card-content{
    padding: 18px;
  }
  
  .news-date{
    font-size: 13px;
    color: #8c2388;
    font-weight: 600;
  }
  
  .news-card h3{
    font-family: 'EB Garamond', serif;
    margin: 8px 0;
  }
  
  .news-card p{
    color: #555;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* MOBILE */
  @media(max-width:900px){
    .news-grid{
      grid-template-columns: 1fr;
    }
  }