/*
 * Disable Featured Image — Post Meta Text Fix
 * Forces "Last updated" and author/admin text to be fully visible
 * in both light and dark themes by inheriting the body text colour.
 */

/* ── Target the widest range of theme meta selectors ─────────────── */
.entry-meta,
.entry-meta *,
.post-meta,
.post-meta *,
.byline,
.byline *,
.posted-on,
.posted-on *,
.author-name,
.author,
.updated,
.entry-date,
.entry-footer,
.entry-footer *,
.post-date,
.post-author,
.meta-info,
.meta-info *,
span.posted-on,
span.byline,
span.author,
span.date,
.wp-block-post-date,
.wp-block-post-author,
.wp-block-post-author__name,
.wp-block-post-author__meta,
time.entry-date,
time.updated,
a.url.fn.n,
.vcard a,
/* Common theme-specific selectors */
.post-header .meta,
.article-meta,
.article-meta *,
.single-post-meta,
.single-post-meta *,
.post-info,
.post-info *,
.post-details,
.post-details * {
    color: inherit !important;
    opacity: 1 !important;
}

/* ── Also fix any muted/secondary colour overrides ───────────────── */
.entry-meta a,
.post-meta a,
.byline a,
.posted-on a,
.entry-footer a,
.wp-block-post-author__name a,
.wp-block-post-date a {
    color: inherit !important;
    opacity: 1 !important;
    text-decoration: none;
}

.entry-meta a:hover,
.post-meta a:hover,
.byline a:hover,
.posted-on a:hover,
.entry-footer a:hover,
.wp-block-post-author__name a:hover,
.wp-block-post-date a:hover {
    text-decoration: underline;
}
