#news .container-news {
    background: #ffffff;
    border-radius: 20px;
    gap: 54px;
    padding: 40px;
    width: calc(100% - 40px);
    display: flex;
    margin-bottom: 60px;
}

@media (max-width: 1000px) {
    #news .container-news {
        margin-top: 0;
        gap: 30px;
        padding: 15px;
        width: 100%;
    }
}

#news .content-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(100% - 334px);
}


@media (max-width: 1000px) {
    #news .content-wrapper {
        width: 100%;
    }

}

#news .sidebar-wrapper {
    flex-shrink: 0;
    width: 280px;
}

@media (max-width: 1000px) {
    /* Estilos para dispositivos menores que tablets */
    #news .sidebar-wrapper {
        display: none;
    }
}

#news .header-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    gap: 30px;
}

#news .link-wrapper,
#news .not-link-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#news .header-wrapper a:hover > .circle-arrow {
    cursor: pointer;
}

#news .header-wrapper a:hover > .title-wrapper {
    cursor: pointer;
}

#news .circle-arrow {
    transition: .2s;
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /*background-color: #eaebed;*/
}

#news .title-wrapper {
    margin-left: 10px;
    align-items: center;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    gap: 10px;
    line-height: 130%;
    transition: .2s;
    width: -moz-fit-content;
    width: fit-content;
}

#news .title-wrapper.line-orange {
    padding-bottom: 7px;
    position: relative;
    background: url(../../../prefweb/assets/img/line-03-orange.svg) no-repeat bottom;
    background-size: contain;
    width: -moz-fit-content;
    width: fit-content;
}

#news .header-wrapper h1 {
    /*color: #303234;*/
    font-size: 2.25rem;
    text-align: left;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 2.625rem;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    /* Estilos para dispositivos menores que tablets */
    #news .header-wrapper h1 {
        font-size: 2.25em;
        font-weight: 700;
        letter-spacing: -.01em;
        line-height: 2.625rem;
        margin-bottom: 10px;
    }
}

#news .header-wrapper .post-excerpt {
    margin-top: -25px;
}

#news .header-wrapper .post-excerpt p {
    font-size: 1.125rem;
    text-align: left;
    font-weight: 600;
    line-height: 130%;
}

#news .header-wrapper .post-info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

#news .header-wrapper .post-info .date-credits {
    /*color: #828588;*/
    color: #6E729B;
    font-size: .875rem;
    font-weight: 400;
    line-height: 130%;
}

#news .header-wrapper .by-post {
    margin-top: 20px;
    color: #6E729B;
    font-size: 14px;
    font-weight: 500;
}

#news .header-wrapper .by-post p strong {
    font-weight: 600;
}

#news .header-wrapper .post-info .date-credits .categoria {
    font-weight: 700;
    text-transform: uppercase;
}

#news .thumbnail {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#news .thumbnail img {
    border-radius: 16px;
    height: auto !important;
    width: 100% !important;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#news article.post {
    font-weight: 500;
    font-size: 1.225rem;
    line-height: 130%;
    width: 100%;
}

#news article.post a {
    color: #007bff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

#news article.post a:hover {
    color: #0056b3;
}

#news article.post a:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

#news article.post figure.image,
#news article.post figure.area__imagem {
    margin: 20px 0;
}

#news article.post figure.image img,
#news article.post figure.area__imagem img {
    display: block;
    height: auto;
    max-width: 100%;
}

#news article.post video {
    width: 100%;
}

#news .news-gallery {
    margin: 28px 0 20px;
    width: 100%;
}

#news .news-gallery__viewport {
    aspect-ratio: 16 / 10;
    background: #161a1d;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

#news .news-gallery__slide {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0;
    width: 100%;
}

#news .news-gallery__slide[hidden] {
    display: none;
}

#news .news-gallery__slide img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

#news .news-gallery__slide figcaption {
    background: rgba(0, 0, 0, .72);
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-size: .9375rem;
    left: 0;
    padding: 10px 56px;
    position: absolute;
    text-align: center;
    width: 100%;
}

#news .news-gallery__control {
    align-items: center;
    background: rgba(0, 0, 0, .62);
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 42px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
}

#news .news-gallery__control:hover,
#news .news-gallery__control:focus-visible {
    background: rgba(0, 0, 0, .88);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

#news .news-gallery__control--previous {
    left: 12px;
}

#news .news-gallery__control--next {
    right: 12px;
}

#news .news-gallery__dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 12px;
}

#news .news-gallery__dot {
    background: #bec7cf;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    height: 10px;
    padding: 0;
    transition: transform .2s, background-color .2s;
    width: 10px;
}

#news .news-gallery__dot.is-active,
#news .news-gallery__dot:hover,
#news .news-gallery__dot:focus-visible {
    background: #007bff;
    outline: none;
    transform: scale(1.2);
}

@media (max-width: 600px) {
    #news .news-gallery__viewport {
        aspect-ratio: 4 / 3;
    }

    #news .news-gallery__control {
        height: 34px;
        width: 34px;
    }

    #news .news-gallery__slide figcaption {
        font-size: .8125rem;
        padding: 8px 46px;
    }
}

@media (max-width: 1000px) {
    #news article.post {
        text-align: justify;
    }
}

#news .header-wrapper .widget {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    padding: 8px;
}

#news .header-wrapper .widget img {
    border-radius: 12px;
    flex-shrink: 0;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

#news .header-wrapper .widget span {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    /*color: #303234;*/
    display: -webkit-box;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25rem;
    margin: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s;
}
