body, html {
    margin: 0;
    align-items: center;
    font-family: "Inter", sans-serif;
    background-color: #f6f6f6;
}

.post__conteudo {
    width: 679px;
    margin: 0 auto;
}


.titulo__principal__post {
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 700;
    color: #423a57;
    margin-top: 20px;
}

.titulo__h2__post {

    font-size: 2.81rem;
    line-height: 3.4rem;
    font-weight: 700;
    color: #423a57;
    margin: 1rem 0;
    
}

.titulo__h3__post {
    font-size: 1.8rem;
    margin: 0.8rem 0.4rem;
    color: #423a57;
}

.titulo__h4__post {
    font-size: 1.5rem;
    margin: 0.8rem 0.6rem;
    color: #675E7E;
    font-weight: 400;
}

.lista__conteudo__post {
    
    color: #3b373d;
    margin-left: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 1rem 0 1rem 1.5rem;
}

.bloco__descricao__post {
    background-color: #ffffff;
    border: 1px solid #e5e3e7d9;
    padding: 1rem 2.7rem;
    color: #000;
    border-radius: 0.7rem;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin: 1.3rem 0;
    font-weight: 400;
}

.seta__descricao__post {
    color: #7310be;
}

.texto__post__geral {
    font-size: 20px;
    line-height: 28px;
    color: #3b373d;
    font-weight: 500;
    margin-bottom: 1.5rem;
    
}

.texto__post__geral a {
    color: rgba(18, 87, 201, 0.85);
    font-weight: 600;
}

.breadcrumb {
    width: 100%;
    margin-top: 1.3rem;
}

.lista__breadcrumb {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0;
}

.item__breadcrumb a {
    text-decoration: none;
    
}

.item__breadcrumb:nth-of-type(3) a {
    color:#7310be;
    
}

.container__img__destaque {
    overflow: hidden;
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
    
}

.img__destaque__conteudo__post {
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.img__destaque__conteudo__post:hover {

    transform: scale3d(1.2,1.2,1);
    filter: brightness(0.8);
    

}

.artigos__relacionados {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}