/* =========================================
   News single post — small tweaks on top of main.css
   (enqueued conditionally on is_singular('post')).
   ========================================= */

/* Breadcrumb hero meta: keep the date white like the rest of the hero text
   (overrides the muted .tp-blog-stories-tag-wrap span colour). */
.tp-breadcrumb__meta span {
    color: var(--tp-common-white, #fff);
}

/* News list/archive body — soft tint behind the post list + sidebar. */
.tp-blog-standard-area {
    background-color: #F5F5FF;
}

/* Sidebar search — white field so it stays distinct from the tinted
   (#F5F5FF) archive body; main.css fills it #F3F4F9, which blends in. */
.tp-blog-standard-area .tp-sidebar-search input {
    background: var(--tp-common-white, #fff);
    border-color: rgba(22, 22, 19, 0.12);
}

/* Category pills — one consistent blue everywhere news appears: the list/related cards
   (.tp-blog-stories-tag-wrap a) and the sidebar "Τελευταία νέα" label (.tp-recent-post-span).
   main.css ships these in purple (#EFE9FE) and green (#DFF9F0) respectively. */
.tp-blog-stories-tag-wrap a,
.tp-recent-post-span {
    background-color: #E7F0FB;
    color: var(--tp-theme-primary, #488ecc);
}

/* But not the white breadcrumb-hero category link, which sits on the dark hero. */
.tp-breadcrumb__meta.tp-blog-stories-tag-wrap a {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--tp-common-white, #fff);
}

/* Copy-link share button + "copied" confirmation state. */
.tp-postbox-copy-link {
    cursor: pointer;
}

.tp-postbox-copy-link.is-copied {
    color: #2bb673;
    border-color: #2bb673;
}
