@charset "utf-8";
/* === NEWS - stile personalizzato === */
.section-80.section-lg-120.bg-gray-dark {
  background-color: #32438A !important; /* sfondo blu scuro */
  padding: 60px 0;
}

/* Titolo section */
.section-80 h2 {
  color: #fff; 
  margin-bottom: 2rem; /* spazio extra sotto il titolo */
}

.section-80 .divider-primary {
  border-color: #fff !important;
  margin: 1.5rem auto 2rem auto; /* più respiro sopra e sotto la linea */
}

/* Card */
.section-80 .post-blog-grid {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.section-80 .post-blog-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Titolo card */
.section-80 .post-blog-grid-title {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #32438A; /* coerente con lo sfondo */
}

/* Corpo card */
.section-80 .post-blog-grid-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* Data */
.section-80 .caption {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}

/* Footer pulsanti */
.section-80 .post-blog-grid-footer {
  margin-top: auto;
  text-align: center;
}

.section-80 .post-blog-grid-footer .post-blog-meta ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Pulsantini generici */
.section-80 .post-blog-grid-footer .post-blog-tag a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s ease;
}

/* Pulsantino Allegato */
.section-80 .post-blog-grid-footer .post-blog-tag:first-child a {
  background: #e7f1ff;
  color: #32438A;
  border: 1px solid #32438A;
}
.section-80 .post-blog-grid-footer .post-blog-tag:first-child a:hover {
  background: #32438A;
  color: #fff;
}

/* Pulsantino Sito Web */
.section-80 .post-blog-grid-footer .post-blog-tag:last-child a {
  background: #f1f1f1;
  color: #333;
  border: 1px solid #555;
}
.section-80 .post-blog-grid-footer .post-blog-tag:last-child a:hover {
  background: #555;
  color: #fff;
}

/* Pulsante finale "Tutte le news" */
.section-80 .button-wrap a.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;                     /* spazio tra icona e testo */
  background: #fff;
  color: #32438A !important;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 30px;          /* pill button */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.section-80 .button-wrap a.button:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Icona */
.section-80 .button-wrap a.button .icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* Smartphone: mostra solo l'ultima news */
@media (max-width: 576px) {
  .section-80 .owl-carousel .post-blog-grid {
    display: none; /* nasconde tutte */
  }
  .section-80 .owl-carousel .post-blog-grid:last-child {
    display: flex; /* mostra solo l'ultima */
  }
}

