section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

div.backdrop {
    position: absolute;
    top: 5em;
    right: 0;
    opacity: 0.7;
    width: 15em;
    transition: all 0.5s ease-in-out;
    animation: rotate-backdrop 50s linear infinite;
}

div.published-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    margin: 1em 0;
}

hr {
    margin: 1em 0 2em 0;
    opacity:  0.5;
}

div.social-icons {
    display: flex;
    align-items: center;
    gap: 1em;
}

i.fa-facebook-f {
    color: #3b5998;
    font-size: 1.2em;
}

i.fa-twitter {
    color: #00acee;
    font-size: 1.2em;
}

i.fa-facebook-f:hover,
i.fa-twitter:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}


@keyframes rotate-backdrop {
    0% {
        transform: translateX(50%) rotate(0deg);
    }

    100% {
        transform: translateX(50%) rotate(360deg);
    }
}

div.side-shapes {
    border-top: 1.8em solid var(--asterone-yellow);
    border-right: 1.8em solid #0d0d0d;
    opacity: 0.8;
    position: absolute;
    left: 2em;
    top: 71%;
}

div.side-shapes::after {
    content: "";
    position: absolute;
    top: 4em;
    border-right: 1em solid transparent;
    border-top: 1em solid #0d0d0d;
    border-left: 1em solid var(--asterone-yellow);
    border-bottom: 1em solid #0d0d0d;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

div.side-shapes::before {
    content: "";
    position: absolute;
    top: 1em;
    border-style: dashed;
    border-color: var(--asterone-yellow);
    width: 2em;
    height: 2em;
    border-radius: 50%;
}

#news-container {
    padding: var(--content-start);
}

#news-container h1,
#side-news-container h1 {
    font-size: 2em;
    padding: 0.6em 0;
    text-shadow: 0 0 #0d0d0d;
}

#side-news-container h1 {
    padding: 0.7em;
}

#news-container h3 {
    padding: 0 0 3em 0;
    font-size: 1.3em;
    opacity: 0.9;
    color: #000000c7;
}

#news-container div.news-title-img img {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 20px 24px;
    border-radius: 3px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

#news-container div.news-content {
    padding-top: 3em;
    line-height: 2.3em;
}

div.news-content p {
    padding-top: 1em;
}

#news-container .dotted-style {
    display: flex;
    align-items: center;
    border-style: dotted;
    border-color: var(--asterone-yellow);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    position: absolute;
    transform: translate(28em, 25px);
    opacity: 0.4;
}

#news-container .dotted-style::before {
    content: "";
    position: absolute;
    border-style: dotted;
    border-color: var(--asterone-yellow);
    left: -2.5em;
    width: 2em;
    height: 2em;
    border-radius: 50%;
}

#news-container .dotted-style::after {
    content: "";
    position: absolute;
    border-style: dotted;
    border-color: var(--asterone-yellow);
    left: 2.1em;
    width: 2em;
    height: 2em;
    border-radius: 50%;
}

#news-container .big-circle-style {
    height: 4em;
    width: 4em;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    border: 1em solid #eee;
    position: relative;
    transform: translate(55em, -18em);
}

#news-container .big-circle-style::after {
    content: "";
    position: absolute;
    border: 4em solid #eee;
    border-radius: 50%;
    width: 30em;
    height: 30em;
    transform: translate(3em, -3.5em);
}

#side-news-container {
    display: grid;
    width: 100%;
    gap: 2.2em;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#side-news-container img {
    width: 5em;
    height: 5em;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 20px 24px;
    border-radius: 50%;
    border-bottom-right-radius: 0;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.side-news-title h3 {
    font-size: 1em;
}

.side-news-container {
    display: flex;
    gap: 2em;
    padding: 1em;
    align-items: center;
}

.side-news-container:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.5s ease-in-out;
}