.elementor-1847 .elementor-element.elementor-element-f86ce2d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:80px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}.elementor-1847 .elementor-element.elementor-element-f86ce2d:not(.elementor-motion-effects-element-type-background), .elementor-1847 .elementor-element.elementor-element-f86ce2d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#2F3E34;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1847 .elementor-element.elementor-element-7344d6c{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:center;}.elementor-1847 .elementor-element.elementor-element-7344d6c .elementor-heading-title{font-family:"Salsa", Sans-serif;font-size:50px;font-weight:600;line-height:70px;color:#FFFFFF;}.elementor-1847 .elementor-element.elementor-element-7884ac0{--display:flex;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-1847 .elementor-element.elementor-element-7344d6c .elementor-heading-title{font-size:38px;line-height:1.7em;}}@media(min-width:768px){.elementor-1847 .elementor-element.elementor-element-f86ce2d{--content-width:1350px;}}@media(max-width:767px){.elementor-1847 .elementor-element.elementor-element-7344d6c{margin:-10px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-1847 .elementor-element.elementor-element-7344d6c .elementor-heading-title{font-size:30px;line-height:1.5em;}}/* Start custom CSS for html, class: .elementor-element-ec7bae2 *//* GRID */
.book-library {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.book-card-unique {
    position: relative;
    text-align: center;
    background: #edafd3;
    padding-top:30px ;
    border: 5px solid #ddd;
    border-radius: 15px;
    padding-left: 20px;
    padding-right:20px;
}

/* BADGE */
.book-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #123e5c;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* FRAME */
.book-frame {
    position: relative;
    margin-top: 20px;
    padding: 6px;
    border: 4px solid orange;
    border-radius: 18px;
    background: #f5e6d3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.book-frame:hover {
    transform: translateY(-8px);
}

/* IMAGE */
/* IMAGE */
.book-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* FIX FRAME HEIGHT */
.book-frame {
    height: 280px;
    overflow: hidden;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: 0.3s;
}

.book-frame:hover .overlay {
    opacity: 1;
}

/* BUTTON */
.overlay a {
    background: #fff;
    color: #123e5c;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
}

.overlay a:hover {
    background: #123e5c;
    color: #fff;
}

/* TEXT */
.book-info h3 {
    font-size: 20px;
    margin-top: 10px;
    color:#0f4473;
}

.book-info p {
    font-size: 18px;
    color: #000;
    margin-top:-10px;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width:1024px) {
    .book-library {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .book-library {
        grid-template-columns: repeat(1, 1fr);
    }
}/* End custom CSS */