@import 'head.css';
@import 'components/field.css';
@import 'components/notice.css';





/* BASICS –––––––––––––––––––––––––––––––––*/
body {
    font-family: var(--font-family-sans);
    max-width: var(--width);
    margin: 0 auto;
}

.wrapper {
    /* height: 80vh; */
    display: grid;
    /* background-color: #777; */
}

.wrapper-book {
    display: flex;
    flex-direction: column;
    justify-content: start;
    column-gap: var(--column-gap);
}


.ausblenden {
    display: none;
}



li {
    margin-left: 0;
    list-style: none;
    text-decoration: none;
}

p {
    margin-top: 0;
}

ul {
    margin-top: 0;
    margin-bottom: 0;

}

hr {
    border: none;
    border-top: 1px solid var(--color-line);
    text-decoration: dotted;
    margin-top: 6px;
    margin-bottom: 10px;
}

a {
    color: var(--color-text);
    text-decoration: none;
}

a:hover,
.active {
    color: var(--color-red);
}

.active-mobile {
    color: var(--color-white);
}

.colorred {
    color: var(--color-red);
}



/* FOOT THUMBNAIL –––––––––––––––––––––––––––––––––*/

.foot {
    font-size: var(--font-size-m);
    text-transform: uppercase;
    letter-spacing: 0.02rem;
    font-weight: var(--font-weight-normal);
    cursor: pointer;
}

.foot-item {
    margin-right: 2rem;
    word-spacing: 1rem;
}

.flex-item {
    gap: 15px;
}


.thumbnail {
    padding-bottom: 8px;
    max-height: 92px;
    width: auto;
    border-bottom: 3px dotted var(--color-white);
}

.thumbnail img:hover {
    border-color: var(--color-red);
}

.thumbactive {
    border-color: var(--color-red);
}


/* POPUP –––––––––––––––––––––––––––––––––*/

.popup {
    display: none;
    position: fixed;
    top: 6em;
    left: 10em;
    /* transform: translate(-20%, -20%); */
    padding: 20px;
    background-color: #fff;
    border: 2px dotted var(--color-red);
    box-shadow: 0 0 10px var(--color-black);
    z-index: 1000;
}

.popup-content {
    /* text-align: left; */
    font-size: var(--font-size-s);
    line-height: var(--line-height-m);
    font-weight: var(--font-weight-normal);
    text-transform: none;
    color: var(--color-red);
    cursor: pointer;
    /* background-color: #d15005;} */
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
}


/* SWIPER –––––––––––––––––––––––––––––––––*/
.swiper-slide img {
    width: 100%;
    /* display: block; */
    /* object-fit: cover; */
}






/* —————————————————————————————————————————————————— */
/* MOBILE 768px ———————————————————–––––––––––––—————— */

@media only screen and (max-width: 960px) {

    /* MOBILE TEXT ————————————————————————— */

    :root {
    --font-size-xxl: 3.2rem;
    --font-size-xl:2.5rem;
    --font-size-l: 1.4rem;
    --font-size-m: 1.2rem;
    --font-size-ls: 1.0rem;
    --font-size-s: 0.9rem;
    /* --font-size-s: clamp(0.6rem, 0.8rem, 1.0rem); */
    --font-size-xs: 0.8rem;
    }

    /* MOBILE BODY ————————————————————————— */

    body {
        margin-bottom: 10vh;
        margin-left: 12px;
        margin-right: 12px;
        /* background-color: #59ff00; */
    }


}