/* ================================================
   PALETTE ADDITIONS — mint_light and pure_white
   ================================================
   These two colours are offered by every background
   dropdown in the theme, but they are the only two in
   the 27-colour palette with no rule in the compiled
   stylesheet, so choosing either has always rendered as
   nothing. That is the "light colours are missing" report:
   the options are there, the paint is not.

   WHY NOT FIX IT IN dist/css/style.css
   The rules exist in src/scss/generic/_generic.shared.scss
   (lines 90-113) and simply never made it through the last
   build. The gulp pipeline is unbuildable here — .nvmrc pins
   Node 7, node_modules is absent — and a rebuild would drag
   in every other unreviewed SCSS change since. So these two
   rules are hand-compiled from that SCSS instead, matching
   its output exactly, and loaded after the main stylesheet.

   Delete this file if the SCSS pipeline is ever revived and
   dist is rebuilt — at that point it becomes a duplicate.

   The selector lists mirror the SCSS verbatim, including the
   .block-colour-bg__ / .card_bg__ / .featured-card-bg__
   variants, so cards and quote blocks pick the colour up the
   same way they do for every other palette entry.
   ================================================ */

.block-colour-bg__pure_white,
.huge.featured-card-bg__pure_white .card--content-wrapper,
.large.featured-card-bg__pure_white .card--content-wrapper,
.card_bg__pure_white,
.bg__pure_white {
    background-color: #fff;
    color: #1e1e23;
}

.block-colour-bg__pure_white.block-quote .testimonial-slider-wrapper .testi-copy-slider:before,
.card_bg__pure_white.block-quote .testimonial-slider-wrapper .testi-copy-slider:before,
.bg__pure_white.block-quote .testimonial-slider-wrapper .testi-copy-slider:before {
    color: #1e1e23;
}

.block-colour-bg__mint_light,
.huge.featured-card-bg__mint_light .card--content-wrapper,
.large.featured-card-bg__mint_light .card--content-wrapper,
.card_bg__mint_light,
.bg__mint_light {
    background-color: #f1fff1;
    color: #1e1e23;
}

.block-colour-bg__mint_light.block-quote .testimonial-slider-wrapper .testi-copy-slider:before,
.card_bg__mint_light.block-quote .testimonial-slider-wrapper .testi-copy-slider:before,
.bg__mint_light.block-quote .testimonial-slider-wrapper .testi-copy-slider:before {
    color: #1e1e23;
}
