/*
 * Shared styles for all Normal Pages (normal-page-tpl.php).
 * Linked by the dispatcher on every normal page, after the theme styles.
 * Page-specific rules go in {file}-page.css next to this file.
 * Brand: red #c8102e, gray #4d4d4f.
 */

.np-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.np-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.np-btn-primary {
    background: #c8102e;
    color: #fff;
}

.np-btn-primary:hover {
    background: #a30d26;
    color: #fff;
}

.np-btn-ghost {
    border: 2px solid #4d4d4f;
    color: #4d4d4f;
}

.np-btn-ghost:hover {
    border-color: #c8102e;
    color: #c8102e;
}
