﻿/* =============================================================================
   Landing Page
   ============================================================================= */

.ed-landing {
    width: 100%;
    max-width: 68.75rem; /* Desktop-Wirkung */
    margin: 0 auto; /* nur horizontal zentrieren */
    padding: 2.5rem 1.5rem 0 1.5rem; /* oben Abstand statt margin */
    box-sizing: border-box;
}

    .ed-landing p {
        margin-bottom: 1.125rem; /* 18px */
    }

    .ed-landing ul {
        margin: 0 0 1.125rem 1.5rem; /* 18px 24px */
    }

    .ed-landing h1 {
        margin-bottom: 1.125rem; /* 18px */
    }

    .ed-landing h2 {
        margin: 1.625rem 0 0.875rem; /* 26px 14px */
    }

    .ed-landing hr {
        margin: 1.75rem 0; /* 28px */
    }

/* =============================================================================
   Login / Register (Topbar)
   ============================================================================= */

.ed-auth-links {
    margin-right: 0.875rem; /* 14px */
    display: flex;
    align-items: center;
    gap: 1.25rem; /* 20px */
}

.ed-auth-link,
.ed-auth-link:visited {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

    .ed-auth-link:hover,
    .ed-auth-link:focus {
        color: #fff;
        text-decoration: underline;
    }

/* =============================================================================
   Footer
   ============================================================================= */

.ed-footer {
    background: var(--color-primary);
    padding: 2.75rem 0 2.875rem; /* 44px 46px */
    margin-top: auto;
}

.ed-footer-content {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.ed-footer-title {
    font-size: 1rem; /* 16px */
    font-weight: 400;
    color: #6fb6ff;
    margin-bottom: 0.625rem; /* 10px */
}

.ed-footer-line {
    font-size: 0.8125rem; /* 13px */
    font-weight: 400;
    margin: 0.375rem 0; /* 6px */
}

.ed-footer-copy {
    font-size: 0.75rem; /* 12px */
    font-weight: 400;
    margin-top: 0.875rem; /* 14px */
    opacity: 0.9;
}

.ed-footer-links {
    margin-top: 1rem; /* 16px */
    display: flex;
    justify-content: center;
    gap: 1.125rem; /* 18px */
}

.ed-footer-link,
.ed-footer-link:visited {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

    .ed-footer-link:hover {
        color: #fff;
        text-decoration: underline;
    }
