/* Footer Precies Montage
   Bestand:
   /wp-content/themes/s55-child/assets/footer.css
*/

.pm-site-footer {
    background: #171c22;
    color: #fff;
    margin-top: 0;
}

.pm-footer-main {
    padding: 72px 0 54px;
    position: relative;
    overflow: hidden;
}

.pm-footer-main::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -220px;
    background: rgba(177,18,38,.34);
    border-radius: 999px;
    pointer-events: none;
}

.pm-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr .75fr .95fr;
    gap: 44px;
    position: relative;
    z-index: 1;
}

.pm-footer-logo {
    display: inline-block;
    color: #fff !important;
    text-decoration: none !important;
    line-height: .82;
    margin-bottom: 24px;
}

.pm-footer-logo span {
    display: block;
    color: #fff;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -.055em;
}

.pm-footer-logo small {
    display: block;
    color: rgba(255,255,255,.66);
    font-size: 13px;
    letter-spacing: .08em;
    font-weight: 650;
    margin-top: 4px;
}

.pm-footer-brand p,
.pm-footer-col li,
.pm-footer-bottom p {
    color: rgba(255,255,255,.68);
}

.pm-footer-brand p {
    max-width: 430px;
    margin-bottom: 26px;
}

.pm-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pm-footer-col h3 {
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}

.pm-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pm-footer-col a {
    color: rgba(255,255,255,.72) !important;
    text-decoration: none !important;
    font-weight: 700;
    transition: color .2s ease, transform .2s ease;
}

.pm-footer-col a:hover {
    color: #fff !important;
}

.pm-footer-contact li {
    line-height: 1.55;
}

.pm-footer-small-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pm-footer-small-links a {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
}

.pm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
}

.pm-footer-bottom .pm-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pm-footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.pm-footer-bottom a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}

.pm-footer-top {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--pm-red, #b11226);
    color: #fff !important;
    display: grid;
    place-items: center;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(177,18,38,.24);
    transition: transform .2s ease, background-color .2s ease;
}

.pm-footer-top:hover {
    transform: translateY(-2px);
    background: var(--pm-red-dark, #8f0e1f);
}

@media (max-width: 980px) {
    .pm-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .pm-footer-main {
        padding: 52px 0 38px;
    }

    .pm-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pm-footer-bottom .pm-container {
        align-items: flex-start;
    }
}