/* ===== EMOJIS ===== */ .post-content .emoji, .entry-content .emoji { display: inline-flex; align-items: center; justify-content: center; width: 1.1em; height: 1.1em; font-size: 0.7em; margin-right: 6px; vertical-align: -2px; } /* Alinha títulos SOMENTE quando tiver emoji */ .post-content h1:has(.emoji), .post-content h2:has(.emoji), .entry-content h1:has(.emoji), .entry-content h2:has(.emoji) { display: flex; align-items: center; gap: 6px; } /* Fallback (caso :has não funcione) */ @supports not(selector(:has(*))) { .post-content h1, .post-content h2, .entry-content h1, .entry-content h2 { display: flex; align-items: center; gap: 6px; } } /* ===== BOTÃO ===== */ .download-box { margin: 20px 0; } .download-btn { display: inline-flex; align-items: center; gap: 6px; background: #6c4cff; color: #fff !important; padding: 12px 18px; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.2s ease; } .download-btn:hover { background: #593ae0; transform: translateY(-1px); } /* ===== LISTAS ===== */ .post-content ul, .post-content ol, .entry-content ul, .entry-content ol { padding-left: 20px; }