.article {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.article h2 {
    padding: 30px 0 15px 0;
}

h1 {
    margin: 0 0 1px 0;
}

h2 {
    padding: 0px;
    margin-bottom: 0px;
}

h3 {
    padding: 10px;
    line-height: 150%;
}
.ottocento{
   max-width: 800px;
  margin: 0 auto;
}
aside {
    /*  max-width: 80%; */
    margin: 0 auto;
    font-style: italic;
    padding: 30px;
    background: var(--colors_background);
    color: var(--colors_brand);
    border-radius: 10px;
    margin-bottom: 50px;
    margin-top: 40px;
}

aside a {
    color: var(--black);
    margin-left: 10px;
    padding: 5px 8px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--borderShadow);
}

.centerFing {
    text-align: center;
    margin-bottom: 20px !important;
    padding-top: 10px;
    color: var(--colors_brand);
}

/* per grafico */
.infographic {
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.bar-chart {
    margin-bottom: 30px;
}

.bar-chart__label {
    font-size: 14px;
    margin-bottom: 5px;
}

.bar-chart__bar {
    background-color: var(--colors_menuTop);
    height: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.bar-chart__percentage {
    font-size: 12px;
    color: var(--colors_brand);
}

.pie-chart {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.pie-chart__segment {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    background-color: #36a2eb;
}

.pie-chart__percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

/* sezione carosello altri blog */
.blogImg {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0;
}

.blogImg img {
    max-width: 90% !important;
}
.imgRoundUp {
    box-shadow: var(--borderShadow);
    border-radius: 10px 10px 0 0;
}
.lowTitle{
    background: white;
    color: var(--colors_brand);
    max-width: 90% !important;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    font-size: 120%;
    border: red;
    border-style: solid;
    border-top: 0;
}

/* iframe youtube */
.youtubeBox {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    box-shadow: var(--borderShadow);
}

.youtubeBox iframe {
    box-shadow: var(--borderShadow);
}
 /* sezione audio articolo */
 .audioBlog {
    padding: 22px 0;
    text-align: center;
    background: lightsalmon;
    border-radius: 20px;
    box-shadow: var(--borderShadow);
}
/* SEZIONE ADS ARTICLE */
.ads {
    border-radius: 15px;
    border: 0.4px solid rgb(103, 101, 101);
    background: #ffffff;
    box-shadow: -15px -15px 15px rgba(255, 255, 255, 0.2),
        15px 15px 15px rgba(29, 27, 27, 0.1),
        inset -5px -5px 5px rgba(255, 255, 255, 0.2),
        inset 5px 5px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

/* sezione rossa con i vari blog */
.boxtreall {
    max-width: 800px;
    background: red;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
    box-shadow: var(--borderShadow);
}

.boxtreall div {
    flex: 1 0 30%;
    /* explanation below */
    margin: 10px;
    flex-wrap: wrap;
    width: 80%;
    /*   align-content: flex-end; */
    /*   width: 300px !important; */
}

.lowTitle {
    font-size: 12px !important;
}
/* Cellulari e pad */
@media screen and (max-width:450px) {
    article p {
        text-align: left;
    }

    .blogImg {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .blogImg img {
        max-width: 96% !important;
    }
    .lowTitle{
        max-width: 96% !important;
        margin-bottom: 20px;
    }

    .inlineList {
        flex-direction: column;
        font-size: 0.9rem
    }

    .inlineList li {
        padding: 20px 5px;
    }
}