/* ==========================================
   TABLES
========================================== */

.wp-block-table,
.wp-block-table table,
.wp-block-table td,
.wp-block-table th,
.wp-block-table tr{
    border:none !important;
}

.wp-block-table table{
    border-collapse:separate;
}


/* ==========================================
   BOOK GRID
========================================== */

.books-grid{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:30px;
    width:100%;
    max-width:1400px;
    margin:40px auto;
    align-items:stretch;
}

.books-grid > *{
    margin:0 !important;
}


/* ==========================================
   BOOK CARD
========================================== */

.book-card{
    background:#fff;
    border-radius:18px;
    padding:24px 20px;
    text-align:center;

    display:flex;
    flex-direction:column;

    width:100%;
    box-sizing:border-box;
    min-height:720px;

    box-shadow:0 8px 22px rgba(0,0,0,.08);
    transition:.3s ease;
}

.book-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(0,0,0,.12);
}


/* ==========================================
   TITLE
========================================== */

.book-card h3{
    font-size:28px;
    line-height:1.25;
    color:#1d2d44;
    margin:0 0 18px;
    min-height:80px;
}


/* ==========================================
   THEME
========================================== */

.theme{
    font-size:16px;
    line-height:1.6;
    color:#444;
    margin-bottom:20px;
}

.theme strong{
    color:#111;
}


/* ==========================================
   IMAGE
========================================== */

.book-card img{
    width:100%;
    max-width:180px;
    height:270px;
    object-fit:cover;

    display:block;
    margin:0 auto 22px;

    border-radius:8px;
    transition:.3s;
}

.book-card img:hover{
    transform:scale(1.05);
}


/* ==========================================
   AMAZON BUTTON
========================================== */

.amazon-btn{
    display:inline-block;

    background:#0d1b2a;
    color:#fff !important;

    text-decoration:none;
    font-weight:600;

    padding:12px 24px;
    border-radius:8px;

    margin:0 auto 24px;

    transition:.3s;
}

.amazon-btn:hover{
    background:#edc967;
    color:#0d1b2a !important;
}


/* ==========================================
   DESCRIPTION
========================================== */

.book-card p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:18px;
}


/* ==========================================
   BENEFIT TITLE
========================================== */

.book-card h4{
    margin-top:auto;
    margin-bottom:15px;

    font-size:22px;
    color:#1d2d44;
}


/* ==========================================
   NEW BOOK BADGE
========================================== */

.new-book{
    display:inline-block;

    background:#f2cf63;
    color:#111;

    font-size:14px;
    font-weight:700;

    padding:8px 22px;
    border-radius:30px;

    margin:0 auto 20px;

    text-transform:uppercase;
    letter-spacing:.5px;
}


/* ==========================================
   WORDPRESS BUTTONS
========================================== */

.wp-block-button__link{
    background:#0d1b2a;
    color:#fff !important;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.wp-block-button__link:hover{
    background:#edc967;
    color:#0d1b2a !important;
}


/* ==========================================
   LANGUAGE BUTTONS
========================================== */

.lang-btn .wp-block-button__link{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.35);
    border-radius:10px;
    padding:12px 22px;
    min-width:65px;
}

.lang-btn .wp-block-button__link:hover{
    background:#fff;
    color:#0d1b2a;
    border-color:#fff;
}

.lang-active .wp-block-button__link{
    background:#edc967;
    color:#0d1b2a;
    border-color:#edc967;
}

.site-header .wp-block-buttons{
    gap:14px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:1200px){

    .books-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

}

@media (max-width:768px){

    .books-grid{
        grid-template-columns:1fr !important;
    }

    .book-card{
        min-height:auto;
    }

    .book-card h3{
        min-height:auto;
        font-size:24px;
    }

    .book-card img{
        max-width:180px;
        height:auto;
    }

}