/*-----------------------------------------------------
 * Codice introdotto
------------------------------------------------------*/
.wp-block-image {
  margin: 0 0 20px;
}

/*-----------------------------------------------------
 * Article -> Header
------------------------------------------------------*/
article.article-a {
  width: 100% !important;
}

.article-a .article-header-out {
  position: relative;
  background: #102A43;
  text-align: center;
}

.article-a .article-header-in {
  max-width: 1000px;
  padding: 20px;
  margin: auto;
}

.article-a nav.rank-math-breadcrumb p {
  color: #ccbec0;
  margin: 0;
}

.article-a nav.rank-math-breadcrumb a {
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
}

.article-a .article-header-in h1 {
  color: #FFF;
}

.article-a .metadata {
  display: flex;
  justify-content: center;
  scroll-snap-type: x mandatory;
  overflow: scroll;
  gap: 10px;
  padding: 0 20px;
  margin: 0 -20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.article-a .metadata::-webkit-scrollbar {
  display: none;
}

.article-a .meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  background: #BCCCDC;
  border-radius: 5px;
  font-size: 14px;
  color: #102A43;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  margin: 0;
}

.article-a .meta:not(.share-link) {
  padding: 5px 10px;
}

.article-a .btn-share-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  padding: 5px 10px;
  background: transparent;
  border: 0;
  font-family: inherit;
  color: #102A43;
  cursor: pointer;
}

.article-a .meta svg {
  fill: #102A43;
  width: 14px;
  height: 14px;
}

.article-a .confirm-share-link {
  position: fixed;
  background: #FFF;
  color: #31161a;
  font-size: var(--hsbg-font-size-p);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 10;
}

.article-a .meta a {
  color: #FFF;
  text-decoration: none;
}

.article-a .article-header-in .content-top {
  padding-top: 10px;
}

.article-a .article-header-in .content-top>p {
  font-size: 14px;
  color: #FFF;
  margin: 0 0 10px;
}

.article-a .article-header-in .content-top>p a {
  color: #FFF;
}

.article-a .article-header-in .thumbnail-img {
  margin-top: 20px;
}

.article-a .article-header-in .thumbnail-img img {
  position: relative;
  max-width: 680px;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin: 0 auto -20px;
  border-radius: 5px;
  z-index: 1;
}

.article-a .article-header-in .thumbnail-img:before {
  content: '';
  background: #F0F4F8;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33%;
}

/*-----------------------------------------------------
 * Article -> Content
------------------------------------------------------*/
.article-a .article-content-in {
  position: relative;
  max-width: 720px;
  padding: 20px;
  margin: auto;
}

/*-----------------------------------------------------
 * Article -> Section Comments
------------------------------------------------------*/
.article-a .article-section-in {
  max-width: 720px;
  padding: 0 20px 20px;
  margin: auto;
}

/*-----------------------------------------------------
 * MOBILE
------------------------------------------------------*/
@media(max-width:767px) {

  /*-----------------------------------------------------
   * Article -> Header
  ------------------------------------------------------*/
  .article-a .article-header-out {
    text-align: left;
  }

  .article-a .metadata {
    justify-content: left;
  }
}