/* Hide cover image section on article pages */
.px-4.py-6 dt:has-text("Cover Image") {
    display: none !important;
}

/* Or target the parent div containing the cover image */
.sm\:grid.sm\:grid-cols-3 dd img[src*="cover_issue"] {
    display: none !important;
}

.sm\:grid.sm\:grid-cols-3:has(img[src*="cover_issue"]) {
    display: none !important;
}

