/* ============================================================
   shared.css – Gemeinsame Styles fuer alle dasdensch-Projekte
   ============================================================
   Einbinden:  <link rel="stylesheet" href="shared.css">
   ============================================================ */

/* ── Projekt-Footer (Color Bar + White Nav) ────────────────── */
.ds-proj-footer { width: 100%; }

.ds-proj-footer .ds-color-bar { display: flex; height: 6px; width: 100%; }
.ds-proj-footer .ds-color-bar span { flex: 1; min-width: 0; }

.ds-proj-footer .ds-proj-footer-nav {
    background: #FFFFFF !important;
    padding: 20px 16px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1 !important;
    box-sizing: border-box;
}
.ds-proj-footer .ds-proj-footer-nav a {
    font-size: 12px !important;
    font-weight: 600;
    font-family: ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', monospace !important;
    letter-spacing: -0.02em;
    text-decoration: none !important;
    color: rgba(0, 0, 0, 0.35) !important;
    transition: opacity 0.2s ease;
    padding: 0;
    margin: 0;
}
.ds-proj-footer .ds-proj-footer-nav a span {
    font-size: 12px !important;
    font-weight: 600;
    font-family: ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', monospace !important;
}
.ds-proj-footer .ds-proj-footer-nav a:hover { opacity: 0.65; }
