/* ── Global: Text links hellblau ── */
:root {
    --clr-primary: #0081c3;
    --clr-white: #ffffff;
}

.maincontent a:not([class]) {
    color: var(--clr-primary);
}

/* ── Subpage Menu: Pill Buttons ── */
.frame-type-menu_subpages ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    li {
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;

        &::before {
            display: none !important;
        }

        a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 36px;
            border: 1.5px solid var(--clr-primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 400 !important;
            font-size: 1rem;
            color: var(--clr-white) !important;
            transition: border-color 0.2s, background 0.2s;
            white-space: nowrap;

            &:hover {
                border-color: var(--clr-white);
                background: rgb(0 129 195 / 0.15);
            }
        }
    }
}
