.entry-header{
	max-width: var(--content-w-sm);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block; /* Remove o espaço branco extra abaixo da imagem */
    border-radius: 8px; /* (Opcional) Dá um acabamento mais moderno */
}

.entry-content{
	max-width: var(--content-w-xsm);
}

.entry-content p {
    font-size: 1.2rem;
    line-height: 2rem;
}

.entry-content a {
    font-weight: bold;
    border-bottom: solid var(--primary) 3px;
    text-decoration: none;
    color: #000;
}

.entry-content a:hover{
    background-color: var(--primary);
}

div.entry-content p:first-child:first-letter {
    float:left;
    font-size:4em;
    margin-right:0.10em;
    line-height:90%;
}

p.no-drop-cap:first-letter {
    float: none;
    font-size: inherit;
    margin-right: 0;
    line-height
}


/* ANÚNCIO */
.ad-separator {
    display: flex;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #000;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: .05rem;
    margin: 15px 0px;
}

.ad-separator::before,
.ad-separator::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    height: 1px;
}

.ad-separator::before {
    margin-right: 15px;
    background: linear-gradient(to right, transparent, #888);
}

.ad-separator::after {
    margin-left: 15px;
    background: linear-gradient(to left, transparent, #888);
}

.ad-container {
    text-align: center;
    margin-bottom: 10px;
    background: #efefef;
    border-radius: 5px;
}

.ad-bottom-line {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    height: 1px;
    width: 100%;
    margin: 25px 0px;
}
/* END ANÚNCIO */

/* Container Geral */
.entry-footer {
    border-top: 1px solid #eee;
    max-width: var(--content-w-sm);
    margin-top: 30px;
    padding: 20px 0;
    margin-right: auto;
    margin-left: auto;
}

.topic-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin: auto;
    max-width: var(--content-w-xsm);
    
}

/* Esconde os textos "Categorias:" e "Tags:" para limpar o visual */
.cat-links strong, 
.tags-links strong {
    display: none;
}

/* Estilo dos Links (Botões) */
.cat-links a, 
.tags-links a {
    display: inline-block;
    background-color: #f3f4f6; /* Cinza muito suave */
    color: #4b5563; /* Cinza escuro */
    padding: 6px 14px;
    border-radius: 50px; /* Borda totalmente redonda (Pill) */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Diferenciação sutil entre Categorias e Tags */
.cat-links a {
    background-color: rgba(var(--primary-rgb), 0.5);
    color: #333;
}

/* Hover Effect (Ao passar o mouse) */
.cat-links a:hover, 
.tags-links a:hover {
    transform: translateY(-2px); /* Leve subida */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Sombra suave */
}

.tags-links a:hover {
    background-color: #4b5563;
    color: #fff;
}

.cat-links a:hover {
    background-color: var(--primary);
    color: #333;
}

.sidebar {
    max-width: var(--content-w-sm);
    margin: auto;
    padding: 20px;
}