.articolo-singolo {
  background-color: #CCE2FF;
  font-family: sans-serif;
  height: 100%;
}

.articolo-header {
  max-width: 100%;
  border-bottom: 1px solid #AABADC;
}

.articolo-header::before,
.featured-slider-section::before,
.articoli-griglia-section::before {
    content: "";
    position: absolute;
    border-radius: 700px;
    background: #fff;
    filter: blur(250px);
    z-index: 4;
    width: 374px;
    height: 374px;
    right: 0;
    top: 0;
}

.articolo-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.articolo-hero-testo {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  height: 100%;
}

.testo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.articolo-meta,
.articolo-data,
.articolo-categorie .categoria,
.info-meta .date {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--Dark-Navy-Blue, #090524);
}

span.separator{
      margin: 0 5px;
}
.articolo-categorie .categoria {
  display: inline-block;
}

.articolo-titolo {
  background: radial-gradient(circle,rgba(13, 141, 231, 1) 0%, rgba(9, 5, 36, 1) 87.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  font-size: 40px;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}

.articolo-titolo a{
color: inherit; 
text-decoration: none;
}

.articolo-hero-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  z-index: 99;
}

.articolo-hero-img img {
    max-width: 100%;
    height: auto;
    background-size: contain;
    width: 100%;
}

/* Contenuto */
.articolo-contenuto {
  margin-top: 80px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--Dark-Navy-Blue, #090524);
      background: #E5F1FFCC;
}
.articolo-contenuto::before {
    content: "";
    position: absolute;
    border-radius: 700px;
    background: #fff;
    filter: blur(250px);
    z-index: 4;
    width: 700px;
    height: 700px;
    left: -200px;
    top: 550px;
}
.articolo-contenuto p {
  font-family: "Funnel Display";
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.articolo-contenuto p strong {
  font-family: "Funnel Display";
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

a.freccia-indietro {
    padding: 20px 0 0 20px;
    position: absolute;
    display: block;
}

@media (max-width: 991px) {

  a.freccia-indietro {
    position: relative;
  }
  .articolo-hero {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .articolo-hero-testo {
    padding: 40px 20px;
    flex: 1 1 100%;
    display: block;
  }

  .testo-wrapper {
    max-width: 100%;
    margin: 0;
  }

  .articolo-meta {
    text-align: left;
  }

  .articolo-titolo {
    font-size: 32px;
    line-height: 1.2;
  }

  .articolo-hero-img {
    flex: 1 1 100%;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  .articolo-hero-img img {
    width: 100%;
    height: auto;
  }

  .articolo-contenuto {
    margin: 40px 20px 60px;
    padding: 40px 16px;
  }
}