/* GRID –––––––––––––––––––––––––––––––––*/

.grid-book {
    display: grid;
    height: calc(100vh - var(--header-height) - var(--footer-height));
    padding-top: 14px;
    grid-template-columns: clamp(320px, 30vw, 420px) 1fr;
    /* padding-top: 0px; */
    gap: var(--column-gap);
    margin-bottom: 128px;
    align-items: start;
    grid-template-rows: auto;
    background-color: aqua;
}

.grid-book-1-1 {
    /* padding-top: 14px; */
    top: var(--header-height);
    /*left: max(calc(50vw - 640px), 0px);*/
    /* height: calc(100vh - var(--header-height)); */
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 0.5rem;
    /* z-index: 5; */
}

.grid-book-2-1 {
    grid-column: 2 / span 1;
    position: relative;
    z-index: 0;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    /*background-color: var(--color-grey-orange);*/

}

.swiper-book {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: calc(100% * 0.75);
    /* height: calc(100% * 0.75 ); */
    margin-bottom: 1.5rem;
    
    /* background-color: aqua; */
    /* opacity: 0.5; */
}

.swiper-wrapper{
    height: auto;
    display: flex;
}

.swiper-slide-book {
    flex-shrink: 0;
    max-width: auto;
    max-height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
    margin-bottom: 2rem;
    background-color: var(--color-repro);
}

.swiper-slide-book img {
    height: auto;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* background-color: #62cdf4; */
}


/* SCHRIFT ––––––––––––––––––––––––––––––––– kann glaub ich alles raus, steht in head.css */
/* #region -> rausnehmen */

.long-text {
    grid-column: 2 / span 2;
    width: 100%;
    column-count: 1;
    margin-bottom: 2rem;
    /* background-color: blueviolet; */
}

.book-author-ul {
    display: flex;
    flex-direction: column;
}

.book-author {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    letter-spacing: var(--letter-spacing-xl);
    text-transform: uppercase;
    margin-top: 0.8rem;
}

.book-title {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-xl);
    text-transform: uppercase;
}


.book-subtitle {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    letter-spacing: var(--letter-spacing-xl);
    text-transform: uppercase;
}

.book-text-short {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-serif-sm);
    line-height: var(--line-height-serif-sm);
    text-transform: none;
    /* -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto; */
    hyphens: auto;
}

.book-text-long {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-serif-sm);
    line-height: var(--line-height-serif-sm);
    text-transform: none;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 1rem;
    /* color: brown; */
}

.book-text-long> :first-child {
    /* font-weight: var(--font-weight-semibold); */
    font-weight: 600;
}

.book-text p {
    margin-bottom: 0.8rem;
}

.book-text p:last-child {
    margin-bottom: 0;
}

.book-biblio,
.book-extras {
    font-size: var(--font-size-s);
    line-height: var(--line-height-s);
    white-space: wraps;
}

.book-partner {
    font-size: var(--font-size-m);
    line-height: var(--line-height-m);
    white-space: wrap;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

/* #endregion */

button[disabled] {
	background-color: lightgray;
}

/* —————————————————————————————————————————————————— */
@media only screen and (max-width:1060px) {}

@media only screen and (max-height:430px) {
    
        .swiper{
            display: none;
            max-height: fit-content;
        }

}


/* MEDIA 960px —————————————————————————————————————— */

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

}