.post{
    padding: 60px 10%;
    font-family: "Montserrat", sans-serif;
    .thumb{
        img{
            width: 100%;
            aspect-ratio: 16/9;
            height: auto;
            display: block;
            border-radius: 15px;
        }
    }
    .conteudo{
        font-size: 1.1rem;
        h1.titulo{
            color: var(--color-primary);
            font-family: 'Prototype';
            font-size: 2.5rem;
            margin: 20px 0;
            line-height: 1.1;
        }
        .data{
            padding: 0 0 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: .8rem;
        }
        p{
            line-height: 1.8;
            margin: 10px 0;
        }
        strong{
            font-weight: 700;
            color: var(--link-color);
        }
        em{
            font-style: italic;
        }
        a{
            text-decoration: underline;
            &:hover{
            color: var(--color-primary);
            }
        }
        ul, ol{
            margin: 15px 0;
            list-style-position: inside;
            padding: 0;
         li{
            padding: 10px 0;
         }   
        }
        h1, h2, h3, h4, h5, h6{
            color: var(--link-color);
            margin: 20px 0;
            font-family: 'Prototype';
            line-height: 1.1;
            strong{
                color: var(--link-color);
                font-weight: initial;
            }
        }
        h1{
            font-size: 2rem;
        }
        h2{
            font-size: 1.8rem; 
        }
        h3{
            font-size: 1.6rem; 
        }
        h4{
            font-size: 1.3rem; 
        }
        h5{
            font-size: 1.2rem; 
        }
        h6{
            font-size: 1.1rem; 
            text-transform: uppercase;
        }
        blockquote{
            background: var(--bg-color-secundary);
            padding: 30px;
            border-left: 5px solid var(--color-primary);
            font-size: 1.2rem;
            line-height: 1.8;
            border-radius: 15px;
            p{
                margin: 15px 0;
            }
        }
        img{
            max-width: 100%;
            width: max-content;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 10px;
        }
        figure{
            margin: 20px 0;
        }
        iframe{
            margin: 20px 0;
            border-radius: 15px;
        }
		.wp-block-embed-youtube{
			iframe{
			aspect-ratio: 16 / 9;
            width: 100%;
            height: auto;
			}
		}
        figcaption{
            text-align: center;
            font-size: .9rem;
            line-height: 1.5;
            padding: 0;
            margin: 10px 0 0;
        }
    }
    .lateral{
        background: var(--bg-color-secundary);
        padding: 40px 30px;
        border-radius: 15px;
        position: sticky;
        top: 130px;
        margin-left: 30px;
        font-size: 1rem;
        h3{
            color: var(--link-color);
            font-family: 'Prototype';
            text-transform: uppercase;
            font-size: 1.4rem;
            &::after{
                content: '';
                display: block;
                margin:5px 0 20px;
                background: var(--color-primary);
                width: 60px;
                height: 6px;
                border-radius: 15px;
            }
        }
        .lista-ultimos{
            --altura: 150px;
            .item-post{
                width: 100%;
                height: var(--altura);
                position: relative;
                margin: 15px 0;
                border-radius: 15px;
                overflow: hidden;
                .thumb{
                    background: var(--bg-dark);
                    img{
                        border-radius: 15px;
                        width: 100%;
                       height: var(--altura);
                       object-fit: cover;    
                       opacity: .5;             
                    }
                }
                .titulo{
                    border-radius: 15px;
                    width: 100%;
                    height: var(--altura);
                    position: absolute;
                    top: 0;
                    text-align: center;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    padding: 30px;
                    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
                    color: #fff;
                }
            }
        }
        .solucoes-relacionadas{
            margin-top: 30px;
            ul{
                list-style: none;
                padding: 0;
                margin: 0;
                li{
                    background-color: var(--color-primary);
                    padding: 20px;
                    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 95% 100%, 0% 100%);
                    transition: .3s;
                    svg{
                        height: 1.2rem;
                    }
                    a{
                        font-family: 'Prototype';
                        color: var(--link-invert);
                        display: flex;
                        gap: 10px;
                        font-size: 1.2rem;
                        flex-direction: row;
                        align-items: center;
                    }
                    &:hover{
                        background-color: var(--bg-dark);
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1600px) {
        padding: 50px 60px 60px;
        .conteudo{
            font-size: 1rem;
        }
        .lateral{
            padding: 30px;
            font-size: .95rem;
            line-height: 1.4;            
            .lista-ultimos {
                --altura: 130px;
            }            
        }
    }   
    @media screen and (max-width: 1025px) {
        padding: 50px 30px 50px;
        .lateral {
            margin: 30px 0 0 0;
            .lista-ultimos {
                --altura: 170px;
                display: flex;
                gap: 15px;
                .item-post {
                    width: 33.333%;
                }
            }        
            .solucoes-relacionadas {
                & ul {
                    li {
                        clip-path: polygon(0% 0%, 100% 0, 100% 70%, 98% 100%, 0% 100%);                        
                    }
                }
            }                
        }
    } 
    @media screen and (max-width: 769px) {
        & .lateral {
            & .lista-ultimos {
                & .item-post {
                    .titulo {
                        padding: 15px;
                    }
                }
            }
        }
    }   
    @media screen and (max-width: 481px) {
        padding: 0 0;
        .thumb {
            img {
                border-radius: 0;
            }   
        }     
        .conteudo {
            padding: 0 25px 25px;
            h1.titulo {
                font-size: 1.8rem;
            }
            p {
                line-height: 1.6;
            }
            h1, h2, h3, h4, h5, h6 {
                line-height: 1.2;
                margin: 10px 0;
            }  
            ul, & ol {
                li {
                    padding: 5px 0;
                }
            }                      
        }
        .lateral {
            border-radius: 0;
            margin: 0;
            .lista-ultimos {
                flex-direction: column;
                --altura: 170px;
                .item-post {
                    width: 100%;
                    margin: 0;
                }
            }
            .solucoes-relacionadas {
                & ul {
                    li {
                        clip-path: polygon(0% 0%, 100% 0, 100% 60%, 94% 100%, 0% 100%);
                    }
                }
            }            
        }
    }    
}