.post__container .container {
    margin-top: -30px;
    background: #fff;
    border-radius: 4px;
    padding: 30px;
}

.post__container .post__image {
    display: block;
    overflow: hidden;
    position: relative;
    height: auto;
    padding-bottom: 56.25%;
    border-radius: 4px;
    margin-bottom: 30px;
}

.post__container .legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #00000093;
    width: 100%;
    padding: 20px;
}

.post__container .legenda p {
    color:#fff;
    font-size: 12px;
    line-height: 14px;
}

.post__container .post__image img, .post__container .post__image iframe {
    position: absolute;
    width:100%;
    height:100%;
    object-fit: cover;
}

.post__info {
    display: flex;
    justify-content: space-between;
    border-top: 1px #dedede solid;
    border-bottom: 1px #dedede solid;
    padding: 20px 0;
    margin-bottom: 30px;
    font-weight: bold;
}

.post__info .post__date {
    align-items: center;
    display: flex;
    gap: 10px;
}

.post__info .post__social {
    display: flex;
    gap:15px;
    align-items: center;
}

.post__info .post__social a, .post__info .post__date i {
    color: var(--azul);
    font-size: 20px;
}

.post__content h1.post__title {
    font-size:36px;
    font-weight: bold;
    line-height: 110%;
    margin-bottom: 30px;
}


.post__content .gallery {
    margin-bottom: 30px !important;
}


.post__content img, 
.post__content .wp-caption {
    max-width: 100% !important;
    width: 100%;
    height: auto !important;
}

.post__content  iframe {
    width: 100%;
    min-height: 100%;
    aspect-ratio: 16/9;
    height: auto;
}

/* Relateds */
.post__relateds .titleHome {
    margin-top: 30px;
}

.post__relateds .post__relateds_list {
    display: flex;
    justify-content: space-between;
    margin:0 -15px;
}
.post__relateds .item {
    display: block;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
    border:1px #dedede solid;
    margin: 15px;
    width:33.33%;
}

.post__relateds a {
    position: absolute;
    display: block;
    width:100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1;
}

.post__relateds .imagem {
    padding-bottom: 56.25%;
    position: relative;
    height:0;
    width:100%;
    overflow: hidden;
}

.post__relateds .imagem img {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all .5s;
}

.post__relateds .item:hover img {
    transform: scale(1.05);
}

.post__relateds h4 {
    font-weight: bold;
    color: #000;
    line-height: 20px;
    font-size: 16px;
    padding: 20px;
}

.post__content { font-size:15px; line-height: 24px; }
.post__content p { margin-bottom: 30px;}
.post__content p em {font-style: italic;}
.post__content h1 { font-size:34px; font-weight: bold; margin-bottom: 15px; line-height: 110%;}
.post__content h2 { font-size:30px; font-weight: bold; margin-bottom: 15px; line-height: 110%;}
.post__content h3 { font-size:28px; font-weight: bold; margin-bottom: 15px; line-height: 110%;}
.post__content h4 { font-size:20px; font-weight: bold; margin-bottom: 15px; line-height: 110%;}
.post__content h5 { font-size:18px; font-weight: bold; margin-bottom: 15px; line-height: 110%;}
.post__content h6 { font-size:16px; font-weight: bold; margin-bottom: 15px; line-height: 110%;}
.post__content ul, .post__content ol { list-style: initial; list-style-position: inside; margin-bottom: 30px; line-height: 30px;}
.post__content ol { list-style: decimal; list-style-position: inside;}
.post__content blockquote { padding: 30px; padding-left:50px; position: relative; background: #f1f1f1; font-size: 24px; font-family: serif; font-style: italic; border-radius: 4px; border-left: 5px var(--azul) solid}
.post__content blockquote:before {content: '\f10d'; display: block; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top:20px; left:20px;}
.post__content blockquote p { margin:  0; }


@media (max-width:768px) {
    .post__relateds_list {flex-wrap: wrap;}
    .post__relateds .item {width:100%; margin-bottom: 15px;}
}