/* =====================================================================
   7thbreed — Global white-visibility guard (light mode)
   Prevents "faded" white-on-white text anywhere: every element whose
   computed color is white/near-white while sitting directly on a white
   background gets bumped to dark text. Accent surfaces (primary buttons,
   blue-gradient cards, badges) are excluded — their white text is by design.
   ===================================================================== */

html:not(.dark) body.products-page main .renewable-products-view .renewable-featured-card,
html:not(.dark) body.products-page main .renewable-products-view .renewable-featured-card h3,
html:not(.dark) body.products-page main .renewable-products-view .renewable-featured-card span,
html:not(.dark) body.products-page main .renewable-products-view .renewable-featured-card p {
  color: #ffffff; /* restore designed accent-card text (blue gradient bg) */
}
html:not(.dark) body.products-page main .renewable-products-view .renewable-featured-card > div:last-child > span {
  color: rgba(255, 255, 255, .78);
}
html:not(.dark) body.products-page main .renewable-products-view .renewable-featured-card > div:last-child > div {
  border-color: rgba(255, 255, 255, .24) !important;
}
