﻿.article-clean {
  color: #56585b;
  background-color: #fff;
  font-family: 'Inter', serif;
  font-size: 16px;
}

.article-clean .intro {
  font-size: 16px;
  margin: 0 auto 30px;
}

.article-clean .intro h1 {
  font-size: 32px;
  margin-bottom: 15px;
  padding-top: 20px;
  line-height: 1.5;
  color: inherit;
  margin-top: 20px;
}

.article-clean .intro p {
  color: #929292;
  font-size: 12px;
}

.article-clean .intro p .by {
  font-style: italic;
}

.article-clean .intro p .date {
  text-transform: uppercase;
  padding: 4px 0 4px 10px;
  margin-left: 10px;
  border-left: 1px solid #ddd;
}

.article-clean .intro p a {
  color: #333;
  text-transform: uppercase;
  padding-left: 3px;
}

.article-clean .intro img {
  margin-top: 20px;
}

.article-clean .text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (min-width:768px) {
  .article-clean .text p {
    font-size: 17px;
  }
}

.article-clean .text h2 {
  margin-top: 28px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

@media (min-width:768px) {
  .article-clean .text h2 {
    font-size: 25px;
  }
}

.article-clean .text figure {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.article-clean .text figure img {
  margin-bottom: 12px;
  max-width: 100%;
}

.box-grigio {
  background-color: #f4f4f5; /* Grigio chiaro moderno */
  border: 1px solid #e4e4e7;  /* Bordo sottile leggermente più scuro */
  border-radius: 8px;         /* Arrotondamento lieve degli angoli */
  padding: 15px 15px;         /* Spazio interno per distanziare il testo dal bordo */
  color: #27272a;             /* Colore del testo grigio scuro per alta leggibilità */
  margin-bottom:20px;
  margin-top: 20px;
}

header {
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

footer {
  box-shadow: 0 -4px 6px -3px rgba(0, 0, 0, 0.1);
  margin-top: 15px; 
  padding-top: 15px;
  padding-bottom:0px; 
}

  .btn-group-container {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    flex-wrap: wrap; 
    width: 100%;
    margin: 20px 0;
  }


  .btn-custom,
  .btn-custom:hover,
  .btn-custom:focus,
  .btn-custom:visited {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .btn-custom {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 200px;
    padding: 12px 0;
    background-color: #ff6600;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.1s ease;
  }

  .btn-custom .btn-icon {
    margin-right: 8px;
    fill: currentColor;
  }

  .btn-custom:hover {
    background-color: #d55500;
  }

  .btn-custom:active {
    transform: scale(0.98);
  }


