/*
 * NovaTheme — generic .nt-button primitive.
 *
 * Two declarations only, by design: background-color + color. No padding,
 * no radius, no hover, no focus, no transition, no disabled state. The
 * doubled `.nt-button.nt-button` selector raises specificity to (0,2,0) so
 * it beats `.entry-content a` (0,1,1) from typography.css without resorting
 * to !important.
 *
 * Consumers (e.g. NovaPaywall) apply this class on <a> or <button> elements
 * as-is and ship no button rules of their own.
 *
 * Copyright (c) 2026 Emmanuel Riolet / NovaFuture.org. Licensed under AGPL v3.
 */

.nt-button.nt-button {
    background-color: var(--nt-green);
    color: #ffffff;
}
