.hero-riviste {
    background: linear-gradient(135deg, #f5f5f5, #e3f6d4);
    text-align: center;
    padding: 60px 20px;
  }
  
  .hero-riviste h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-riviste p {
    font-size: 1.2rem;
    color: #444;
  }
  
  .riviste-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .rivista-card {
    background: #fff;
    width: 220px;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .rivista-card:hover {
    transform: scale(1.05);
  }
  
  .rivista-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .rivista-card h3 {
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .btn {
    background-color: #0E6655;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 6px;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #084d3d;
  }
  