/* ==========================================
   FFG - FOOTER
========================================== */

.section-footer {
    --wp--preset--font-size--x-small: 0.92rem;
    --wp--preset--font-size--small: 1.00625rem;
    --wp--preset--font-size--medium: 1.15rem;
    --wp--preset--font-size--large: 1.725rem;
    --wp--preset--font-size--x-large: 2.5875rem;
    --wp--preset--font-size--xx-large: clamp(2.5875rem, 6.9vw, 4.025rem);
    --wp--preset--font-size--xxx-large: clamp(3.1625rem, 8.05vw, 9.2rem);
    --wp--preset--font-size--huge: clamp(3.1625rem, 8.05vw, 9.2rem);

    background-color: var(--wp--preset--color--dark);
    color: var(--wp--preset--color--white);
    padding-block: clamp(2rem, 6vw, 3.5rem);
}

.section-footer h4 {
    color: var(--wp--preset--color--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.75rem;
    font-size: clamp(19px, 1.68vw, 26px);
    text-align: center;
}

/* ==========================================
   Layout: gleiche Höhe (185px)
========================================== */

.section-footer .footer-columns {
    display: flex;
    align-items: stretch;
    gap: clamp(1.2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-footer .footer-columns .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ==========================================
   SVG
========================================== */

.section-footer .footer-image {
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper */
.section-footer .footer-image .theme-svg {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-footer .footer-image svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
}

/* ==========================================
   Inhalte
========================================== */

.section-footer .footer-columns .wp-block-column:first-child {
    text-align: center;
}

.section-footer .footer-columns .wp-block-column:last-child {
    text-align: center;
}

.section-footer .footer-contact {
    margin: 0;
    line-height: 1.7;
    text-align: center;
}

/* ==========================================
   Navigation
========================================== */

.section-footer .footer-navigation {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem 1.35rem;
    flex-wrap: wrap;
}

.section-footer .footer-navigation li {
    margin: 0;
}

.section-footer .footer-navigation a {
    color: var(--wp--preset--color--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.section-footer .footer-navigation a:hover,
.section-footer .footer-navigation a:focus {
    color: var(--wp--preset--color--white);
    border-bottom-color: var(--wp--preset--color--white);
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 781px) {

    .section-footer .footer-columns {
        flex-direction: column;
    }

    .section-footer .footer-columns .wp-block-column {
        height: auto;
    }

    .section-footer .footer-columns .wp-block-column:last-child {
        min-height: 220px;
    }
}

/* ==========================================
   Typo
========================================== */

.section-footer,
.section-footer p,
.section-footer li,
.section-footer a,
.section-footer i {
    font-size: clamp(13px, 0.96vw, 14px);
}