/* ===== Scuola Digitale Avanzata - eGratis.org ===== */

main {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
  background: #f8f9ff;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #3a0ca3, #4361ee, #4cc9f0);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 4px solid #3a0ca3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ARTICLE */
article.content {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
article.content h2 {
  color: #3a0ca3;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
article.content p {
  color: #444;
  margin-bottom: 25px;
}

/* DIGITAL LIST */
.digital-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.digital-list section {
  border: 1px solid #e0e0e0;
  background: #fcfcff;
  border-left: 5px solid #4361ee;
  border-radius: 10px;
  padding: 22px 25px;
  transition: all 0.3s ease;
  position: relative;
}
.digital-list section:hover {
  border-color: #4cc9f0;
  box-shadow: 0 4px 14px rgba(67, 97, 238, 0.2);
  transform: translateY(-3px);
}

/* HEADINGS */
.digital-list h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #3a0ca3;
  font-weight: 600;
}
.digital-list h4::before {
  content: "💡 ";
}
.digital-list p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* LINKS */
.digital-list a {
  display: inline-block;
  text-decoration: none;
  color: #4361ee;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.digital-list a:hover {
  color: #3a0ca3;
  border-bottom: 1px solid #3a0ca3;
}

/* CTA */
.next-section {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px dashed #ccc;
  text-align: center;
}
.next-section a {
  color: #4361ee;
  font-weight: 600;
  text-decoration: none;
}
.next-section a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  article.content {
    padding: 25px 20px;
  }
  .digital-list section {
    padding: 18px;
  }
}
/* ===== Subnav Scuola (barra secondaria) ===== */
.subnav-scuola {
  background: #f1f9ff;
  border-bottom: 1px solid #d6eaf8;
  text-align: center;
  padding: 12px 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.subnav-scuola a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.subnav-scuola a:hover {
  background: #0077b6;
  color: #fff;
}
.subnav-scuola a.active {
  background: #0077b6;
  color: #fff;
  cursor: default;
  box-shadow: 0 0 6px rgba(0, 119, 182, 0.4);
}
