/* ==========================================================================
   ESTILOS GERAIS E CABEÇALHO
   ========================================================================== */
body {
    background-color: #fdfaf6;
    font-size: 1.6rem;
    color: #333;
    margin: 0;
}

/* BLOQUEIO DE ÍCONES GIGANTES */
img[src*="icons/"], .social-top img, .social-link img, footer img {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    object-fit: contain !important;
}

/* Header Fixo e Compacto */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fdfaf6;
    z-index: 1000;
    padding: 10px 0 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.branding-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-logo {
    width: 28px !important;
    height: 28px !important;
}

.site-name-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: #444;
}

.site-desc {
    margin: -2px 0 0 36px;
    display: block;
}

.site-desc h6 {
    margin: 0;
    font-weight: normal;
    color: #888;
    font-size: 1.2rem;
    font-style: italic;
}

/* Menu Superior */
.minimal-nav {
    margin-top: 5px;
}

.minimal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.minimal-nav ul li a::before {
    content: "/";
    margin-right: 2px;
    color: #bbb;
}

/* --- AJUSTE DE ESPAÇAMENTO PARA NÃO CORTAR TÍTULO --- */
.main-wrapper {
    margin-top: 145px; /* Aumentado para Desktop */
    max-width: 800px !important;
}

/* Estilo dos Posts */
.post-entry h5 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: #6a3d9a; /* Cor roxa conforme seu anexo */
}

.post-meta {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.5;
}

.post-tags-list {
    font-size: 1.4rem;
    font-style: italic;
    color: #6a3d9a;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .main-wrapper {
        margin-top: 175px; /* Aumentado para Mobile para evitar o corte */
    }
    .minimal-nav ul {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.post-content ul,
.post-content ol {
  margin-left: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  display: list-item;
  margin-bottom: 0.35rem;
}

.post-content li p {
  display: inline;
  margin: 0;
}
