/* --- Programmi Gratis – Stile categoria --- */

.hero {
  background: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #222;
}

.hero-text p {
  font-size: 1.15rem;
  color: #444;
  max-width: 720px;
  margin: 0 auto;
}

.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

/* Lista programmi */
.programmi-list section {
  margin-bottom: 30px;
  padding: 18px 20px;
  background: #fafafa;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  transition: 0.2s ease;
}

.programmi-list section:hover {
  background: #ffffff;
  border-color: #d5d5d5;
  transform: translateY(-2px);
}

.programmi-list h4 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #1a1a1a;
}

.programmi-list p {
  margin: 0 0 10px;
  color: #555;
}

.programmi-list a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
}

.programmi-list a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .programmi-list section {
    padding: 15px;
  }

  .content {
    padding: 0 15px;
  }
}
