html {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
body {
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-family-text);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    letter-spacing: 0.2px;
    font-style: normal;
    font-weight: 400;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

.layout-content > .content-innerwidth > div:not(.contextual-region) {
    padding: 20px 0;
}


.content-innerwidth {
    width: calc(100% - 40px);
    margin: 0 auto;

}

.innerwidth {
    width: calc(100% - 40px);
    max-width: var(--max-width);
    margin: 0 auto;
}

.h1-wrap {
    width: 100%;
    max-width: var(--max-width);
    margin: 90px auto 0 auto;
}

.paragraph--has-theme .innerwidth {
    width: var(--max-outerwidth);
}

.page-content > .paragraph {
    width: 100%;
    max-width: 100%;
}

p {
    margin: 0 0 var(--padding-inner) 0;
}

p.emphasize,
h3.emphasize {
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--color-primary);
    box-sizing: border-box;
}

a {
    color: var(--color-text);
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: anywhere;
    position: relative;
}

a.arrow:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

a.arrow:after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 18px;
    margin-left: 10px;
    background: url('../images/arrow-right-blue.svg') no-repeat center center;
    background-size: 30px auto;
    transition: 0.3s ease;
    position: relative;
    transform: translateY(3px);
}

a.arrow:hover:before {
    width: 100%;
}

a.arrow:hover:after {
    margin-left: 15px;
}

p a,
ul a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--color-primary);
}

ul a {
    color: var(--color-text);
}

p a::after,
ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background:  var(--color-primary);
    transition: width 0.3s ease;
}

p a:hover::after,
ul a:hover::after {
    width: 100%;
}

ul,ol {
    margin-block-start: 0;
    padding-inline-start: 25px;
}

ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ol li::marker {
    font-family: var(--font-family-heading);
    font-size: 1.25em;
    font-weight: 500;
    transform: translateX(45px);
    line-height: 0;
}


h1,
h2,
.h2,
h3 {
    font-size: 36px;
    font-weight: normal;
    font-weight: 500;
    font-family: var(--font-family-heading);
    -webkit-font-smoothing: antialiased; /* für macOS / iOS */
    -moz-osx-font-smoothing: grayscale;
    margin: 0 0 var(--padding-inner) 0;
}

h1.page-title {
    margin-top: 60px;
}

h2.large {
    font-size: 60px;
}

h3 {
    font-size: 24px;
}

h1 strong,
h2 strong,
.h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
    font-weight: 500;
}

figure {
    padding: 0;
    margin: 0;
    position: relative;
}

@media (max-width: 1100px) {
    h3 {
        font-size: 20px;
    }
}

/* Bode Override */

body.node-abo-shop {
    color: white;
    background: var(--color-primary);
}

body.node-abo-shop:before {
    content: "";
    background: url('../images/abo-shop-background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

body.node-abo-shop .paragraph--type--abo-banner,
body.node-abo-shop .paragraph--type--abo-banner:before {
    background: none;
    color: black;
    padding: 0;
    margin: 0 auto;
}

@media (max-width: 880px) {
    body {
        padding-top: 93px;
    }
}

@media (max-width: 480px) {
    .h1-wrap,
    h1.page-title {
        margin-top: 30px;
    }
    h1, h2, .h2,
    h2.large {
        font-size: 24px;
    }
    h3,h4,h5,h6 {
        font-size: 20px;
    }
}