/* /assets/css/blog/tema.css */


/* --- CONTAINER DO CONTEÚDO DO POST --- */

.post-content-theme {
    /* Estilos base para o container, se necessário */
    line-height: 1.7;
}


/* --- TÍTULOS --- */

.post-content-theme h1,
.post-content-theme h2,
.post-content-theme h3,
.post-content-theme h4,
.post-content-theme h5,
.post-content-theme h6 {
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.post-content-theme h1 {
    font-size: 2.2rem;
}

.post-content-theme h2 {
    font-size: 1.8rem;
}

.post-content-theme h3 {
    font-size: 1.5rem;
}

.post-content-theme h4 {
    font-size: 1.25rem;
}

.post-content-theme h5 {
    font-size: 1.1rem;
}

.post-content-theme h6 {
    font-size: 1rem;
}


/* --- PARÁGRAFOS E LINKS --- */

.post-content-theme p {
    margin-bottom: 1.25em;
}

.post-content-theme a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

.post-content-theme a:hover {
    color: var(--bs-link-hover-color);
}


/* --- LISTAS --- */

.post-content-theme ul,
.post-content-theme ol {
    padding-left: 2em;
    margin-bottom: 1.25em;
}

.post-content-theme li {
    margin-bottom: 0.5em;
}


/* --- BLOCOS DE CÓDIGO --- */

.post-content-theme pre {
    background-color: #282c34;
    /* Um fundo escuro padrão para código */
    color: #abb2bf;
    padding: 1rem;
    border-radius: 0.5rem;
    white-space: pre-wrap;
    /* Garante a quebra de linha */
    overflow-x: auto;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    font-size: 0.9em;
}

.post-content-theme code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}

.post-content-theme pre code {
    background-color: transparent;
    padding: 0;
}


/* --- IMAGENS E OUTROS ELEMENTOS --- */

.post-content-theme img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 1em;
    margin-bottom: 1em;
}

.post-content-theme hr {
    margin: 2em 0;
}

.post-content-theme blockquote {
    border-left: 4px solid var(--bs-secondary-bg-subtle);
    padding-left: 1.5em;
    margin-left: 0;
    font-style: italic;
    color: var(--bs-secondary-color);
}


/* --- MEDIA QUERIES PARA TIPOGRAFIA RESPONSIVA --- */


/* Telas pequenas (ex: celulares em modo retrato) */

@media (max-width: 576px) {
    .post-content-theme {
        font-size: 15px;
    }
    .post-content-theme h1 {
        font-size: 1.8rem;
    }
    .post-content-theme h2 {
        font-size: 1.5rem;
    }
}


/* Telas médias (ex: tablets) */

@media (min-width: 768px) {
    .post-content-theme {
        font-size: 16px;
    }
}


/* Telas grandes (desktops) */

@media (min-width: 1200px) {
    .post-content-theme {
        font-size: 17px;
    }
}