#contenuto-articolo {
  position: relative;
}

#contenuto-articolo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #334e68;
  width: 100%;
  height: 200px;
}

article {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  z-index: 2;
}

aside {
  z-index: 2;
}

/* CSS META DATI SOTTO TITOLO */
.meta-dati {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.meta-dati svg {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

.meta-dati p,
.meta-dati a {
  font-size: 14px;
  color: #486581;
  font-weight: 300;
  margin: 0;
  text-decoration: none;
}

.meta-dati .autore,
.meta-dati .data-pubblicazione {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

@media (max-width: 959px) {
  #contenuto-articolo .contenitore {
    padding: 0;
  }

  article {
    border-radius: 0;
    border: 0;
    padding: 10px;
  }

  aside {
    padding: 0 10px;
  }
}