/* ==========================================================================
CHS-HISTORY BOOKSHELF ITEM
========================================================================== */
/* Bookshelf controls */
.bookshelf__controls--hidden,
.bookshelf__filter--hidden {
    display: none;
}
/* Deploy Compass grid at 768px instead of 1024px */
@media (min-width: 768px) {
    .cwf-grid--3-columns {
        --cwf-grid--columns: 3;
        --cwf-grid--grid-template-columns: repeat(var(--cwf-grid--columns),1fr);
    }
}
.cwf-grid__column--page-layout>:last-child {
	margin-bottom: 0!important;
}
/* Bookshelf Item */
.bookshelf__item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.125);
    transition: transform ease-in-out .25s, box-shadow ease-in-out .25s;
}
@media (prefers-reduced-motion: reduce) {
    .bookshelf__item {
        transition: none;
    }
}
.bookshelf__item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 60px rgb(2 29 73 / 50%);
}
.bookshelf__item:last-of-type {
    margin-bottom: 2rem;
}
.bookshelf__item--unmatched {
    display: none;
}
.bookshelf__item--filtered {
    display: none;
}
/* Image */
.bookshelf__img {
    margin: 0;
    text-align: center;
}
.bookshelf__img img {
    min-width: 100%;
}
/* Text area */
.bookshelf__body {
    padding: 0 1.5rem 1.5rem;
}
/* Book title */
.bookshelf__title {
    font-size: 1.3rem;
}


