/* Allgemein */ 
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    #page {
        overflow-x: hidden;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Verhindert den kleinen Spalt unter Bildern */
}

input, button, textarea, select {
    font: inherit;
}

a, svg {
     transition: all 0.3s ease-in-out;
}

.page-content a {
    text-decoration: none;
    color: var(--e-global-color-text);
    &:hover {
         color: var(--e-global-color-accent);
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
