/* ===============================
   SECTION MENU (Page Sub Nav)
================================= */

.section-menu {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.section-menu li {
    display: inline-block;
}

.section-menu a {
    display: inline-block;
    padding: 10px 18px;
    background: #0044cc;      /* your Bob Ross blue 😉 */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.section-menu a:hover {
    background: #002a80;
}
