/* =========================================
   PFLEGE-WISSEN LANDINGPAGE
   FOOTER
========================================= */

.pf-footer {
    background: #325C84;
    border-top: 1px solid rgba(255,255,255,.08);
}

.pf-footer__inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Copyright */

.pf-footer-copy {
    display: flex;
    align-items: center;
    height: 58px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

/* Navigation */

.pf-footer-nav {
    display: flex;
    align-items: center;
    height: 58px;
    gap: 0;
}

.pf-footer-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 58px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color .15s ease;
}

.pf-footer-nav a:hover {
    background: #24425F;   /* gleich wie Header Hover */
    text-decoration: none;
}

/* Mobile */

@media (max-width: 768px) {
    .pf-footer__inner {
        padding: 14px 0;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .pf-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .pf-footer-copy {
        text-align: center;
    }
}