/* Estilo automático para o tipo de post: palestra-entrevista */
header{
    background-image: url(../img/bg-palestra-interna.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 40px 0;
}

#leitura{
    padding: 60px 0;

    .img-palestrante {
        width: 100%;
        height: 370px;
        object-fit: cover;
        margin-bottom: 40px;
    }
    h1 {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 0px;
        text-transform: none;
        margin-bottom: 10px;
        color: #161616;
    }
    .categoria {
        font-style: normal;
        letter-spacing: 0px;
        margin-top: 5px;
        color: #747474;
        margin-bottom: 30px;
    }
    .mail-pale {
        font-size: 16px;
        text-transform: none;
        color: #323232;
        font-weight: 700;
        
        span{
            font-weight: 500;
            word-break: break-all;
        }
    }
    .fone-pale {
        font-size: 16px;
        text-transform: none;
        color: #323232;
        font-weight: 700;
        
        span{
            font-weight: 500;
        }
    }

    .social-mini-menu {
        display: flex;
        justify-content: flex-start;
        margin: 0;
        align-items: center;
        padding: 0;

        li {
            font-size: 14px;
            color: #fff;
            margin-right: 8px;
            list-style-type: none;
    
            i{
                font-size: 16px;
                color: #323232;
                margin-right: 8px;
            }
        }
    }

    h3 {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 20px;
        color: #161616;
    }

    .text-palestrante{
        color: #555;
        line-height: 1.7;
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .text-educacao{
        color: #555;
        line-height: 1.7;
        margin-top: 0;
        margin-bottom: 40px;
        font-size: 16px;
        position: relative;

        &:before {
            background-color: #c58938;
            background-size: auto;
            display: inline-block;
            width: 30px;
            height: 2px;
            content: "";
            bottom: -20px;
            left: 0;
            position: absolute;
            z-index: 1;
        }
    }

    hr {
        margin: 2rem 0;
    }

    ul {
        margin: 0;
        padding: 0;

        li {
           color: #b1976b;
           font-size: 16px;
           list-style-type: none;
           margin-bottom: 16px;
       }
    }

    iframe{
        width: 100%;
        height: 490px;
    }
}




/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #leitura {
        .img-palestrante {
            height: 210px;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 


}