/* ========================================================================
   Footer
 ========================================================================== */

.leda-footer {
    background: var(--leda-bg-grey);
    padding: var(--section-padding) 0 2rem;
}

/* Button Styles */
.leda-btn {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.leda-btn-primary {
    background: var(--leda-red);
    color: var(--leda-white);
}

.leda-btn-primary:hover {
    background: #c70000;
    color: var(--leda-white);
}

/* Footer Grid */
.leda-footer > .leda-container {
    padding-top: var(--section-padding);
    padding-bottom: 2rem;
}

/*
.leda-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}
*/
.leda-footer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.8rem;
    margin-bottom: 3rem;
    align-items: stretch; /* alle Spalten gleich hoch */
}

/*
.leda-footer-column {
    grid-column: span 3;
    line-height: 1.8em;
}
*/

.leda-footer-column {
    grid-column: span 3;
    line-height: 1.8em;
    display: flex;
    flex-direction: column;
}

.leda-footer-column h4 {
    font-weight: normal;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.leda-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leda-footer-column ul li {
    margin-bottom: 0.5rem;
}

.leda-footer-column a {
    color: var(--leda-font);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 300;
    transition: color 0.3s;
}

.leda-footer-column a:hover {
    color: var(--leda-red);
}

/*
.leda-footer-claim {
    text-align: center;
}

.leda-footer-claim img {
    max-width: 300px;
    margin-bottom: 1rem;
}
*/
.leda-footer-claim {
    grid-column: 7 / 13; /* Spalten 7-12 */
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Unten ausrichten */
    align-items: flex-end;
}

.leda-footer-claim img {
    max-width: 100%;
    height: auto;
    width: 628px; /* Original-Breite */
    display: block;
}

.leda-footer-claim p {
    font-family: 'Quicksand', sans-serif;
    font-style: italic;
    font-size: 1.2rem;
}

/* Horizontale Linie */
.leda-footer hr {
    border: none;
    border-top: 1px solid var(--leda-line);
    margin: 2rem 0;
}

.leda-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--leda-line);
}

.leda-footer-copyright {
    font-size: 1.25rem;
}

.leda-footer-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.leda-footer-menu a {
    font-size: 1.25rem;
    color: var(--leda-font);
    text-decoration: none;
}

.leda-footer-socials {
    display: flex;
    gap: 1.375rem;
}

.leda-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    /*
    background: var(--leda-font);
    color: var(--leda-white);
    */
    border-radius: 50%;
    transition: background 0.3s;
}

.leda-footer-socials a:hover {
    /*
    background: var(--leda-red);
     */
}

.leda-footer-socials svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   MOBILE: Bis 767px
   ============================================ */
@media (max-width: 767px) {
    .leda-footer-socials a {
        width: 36px;
        height: 36px;
    }
}