
/* .single h1.entry-title {
    text-shadow: 0.5px 0.5px 1.5px #000, -0.5px -0.5px 1.5px #000, 0.5px -0.5px 1.5px #000, -0.5px 0.5px 1.5px #000;
} */

/* === Single Post: Headline & Date — Improved Visibility === */

/* Gradient scrim: dark at bottom (where text sits), clear at top */
.single .nv-post-cover::after, .page-template-page-featured-image .nv-post-cover::after, .page .nv-post-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0)    0%,
        rgba(0, 0, 0, 0.10) 75%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 0;
}

/* Ensure title/meta sit above the gradient */
.single .nv-post-cover .container {
    position: relative;
    z-index: 2;
}


/* Date: white, slightly larger, bold, with shadow */
.single .nv-post-cover .entry-date,
.single .nv-post-cover .nv-meta-list,
.single .nv-post-cover .meta.date {
    color: #ffffff !important;
    text-shadow:
        0px 1px 6px rgba(0, 0, 0, 0.85),
        0px 1px 2px rgba(0, 0, 0, 0.9);
    font-size: 1.05rem !important;
    font-weight: 600;
    opacity: 1 !important;
    letter-spacing: 0.03em;
}