document.addEventListener('DOMContentLoaded', () => { const style = document.createElement('style'); style.textContent = ` .site-main article .post-thumbnail img { display: none !important; } .post { background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); padding: 20px; margin: 20px 0; transition: box-shadow 0.3s ease; } .post:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); } `; document.head.appendChild(style); });