/*
#F7F5F2 :light bg
#333537 : text on light bg

#F58220	Orange. Accent word in headings, eyebrows, stat numerals, icons, CTAs, hover states, decorative rules.
#2C5AA0	Blue. Inline reading links only. Static — never overridden by theming.

#232425	Dark section background.
#F4F1EC	Text on dark.
*/





a.white-pill-ctr {
    display: block;
    clear: both;
    margin: 2vh auto;
    padding:1rem .57rem;
    font-size: .9375rem;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 300;
    background-color: var(--paper);
    border: none;
    text-decoration: none;
    display: inline-block;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.5s ease;
}

a.white-pill-ctr:hover {
    color: var(--paper);
    background-color: var(--accent);
    border-color: none;
    transform: translateY(-5px);
}
 
