/**
 * @fileoverview This file provides additional styles for the website.
 * @author Creekmore Marketing <creekmoremarketing@gmail.com>
 * @version 1.0.0
 * @license MIT
 * @date 2025-06-30
 *
 * @description
 * Adds site-wide banner that includes text and call-to-action button.
 *
 * @see {@link https://www.labascusarmory.com} for style examples.
 */
 /* Site-Wide Banner */
 .cmm-banner {
    padding: 1rem 0.5rem;
    background: #818386;
    font-size: 24px;
    font-family: inherit;
    color: #fff;
    text-align: center;
 }
 .cmm-btn, .cmm-btn:active {
    padding: 4px 8px;
    background: #0275d5;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
}
.cmm-btn:hover {
    background: #fff;
    color: #1d1e20;
    text-decoration: inherit;
}
@media screen and (max-width: 600px){
    .cmm-btn {
        display: block;
        margin: 1rem 1rem 0;
    }
}