.btc-recommended-books{
    padding-bottom:80px;
    text-align: center;
}

.btc-month-tabs{
    display:block;
    gap:10px;
    margin:25px 0;
    flex-wrap:wrap;
}

.btc-month-btn{
    padding:6px 16px;
    font-size:13px;
    border-radius:999px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}

.btc-month-btn.active{
    background:#209500;
    color:#fff;
    border-color:#209500;
}

/* Slider */
.btc-books-slider{
    display:flex;
    gap:24px;
    width:max-content;
    transition: opacity .35s ease, transform .35s ease;
}

.btc-books-slider.animate{
    animation: btcScroll 35s linear infinite;
}

.btc-books-slider.loading{
    opacity:0;
    transform: translateX(-40px);
}

.btc-slider-window:hover .btc-books-slider{
    animation-play-state: paused;
}

@keyframes btcScroll{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
}

.btc-book{
    cursor:pointer;
    flex:0 0 auto;
    transition:.25s;
}

.btc-book:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(32,149,0,.18);
    filter: brightness(1.03);
}

.btc-book img{
    width:180px;
    height:270px;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

/* ==========================
   BOOK MODAL
   ========================== */

.btc-book-modal{
    position:fixed;
    inset:0;

    width:100% !important;
    max-width:100vw;
    margin: 0 !important;
    height:100vh;

    background:rgba(0,0,0,.75);

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.25s ease;
}

.btc-book-modal.open{
    opacity:1;
    visibility:visible;
}

/* actual modal */

.btc-book-modal-card{
    width:750px;
    max-width:95vw;
    margin-top: 100px;
    max-height:85vh;

    overflow-y:auto;
    scrollbar-width:none;

    background:#fff;

    border-radius:24px;

    padding:50px;

    box-shadow:
    0 30px 70px
    rgba(0,0,0,.25);
}

.btc-book-modal-card::-webkit-scrollbar{
    display:none;
}

/* content */

#btc-book-content{
    width:100%;
}

/* cover */

#btc-book-content img{
    width:220px;

    display:block;

    margin:0 auto 35px;

    border-radius:18px;

    box-shadow:
    0 18px 40px
    rgba(0,0,0,.18);
}

/* title */

#btc-book-content h2{
    font-size:36px;

    text-align:center;

    margin:0;

    font-weight:700;

    line-height:1.2;
}

/* author */

#btc-book-content h3{
    font-size:20px;

    text-align:center;

    font-weight:500;

    color:#666;

    margin:12px 0 40px;
}

/* section labels */

#btc-book-content h4{
    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#209500;

    margin:30px 0 10px;
}

/* content */

#btc-book-content p{
    font-size:17px;

    line-height:1.9;

    color:#333;

    margin:0;
}

/* mobile */

@media(max-width:768px){

    .btc-book-modal{
        padding:15px;
    }

    .btc-book-modal-card{
        padding:28px;
        border-radius:20px;
    }

    #btc-book-content img{
        width:160px;
    }

    #btc-book-content h2{
        font-size:28px;
    }

    #btc-book-content h3{
        font-size:18px;
    }

    #btc-book-content p{
        font-size:16px;
    }
}

/* ==========================
   RECOMMENDED READS HEADING
   ========================== */

.btc-recommended-books h2{
    font-size:42px;
    font-weight:700;

    margin:0 0 35px;

    color:#1d1d1d;

    display:block;
    align-items:center;

    gap:12px;
}

/* ==========================
   MONTH TABS CONTAINER
   ========================== */

.btc-month-tabs{
    display:block;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:45px;
}

/* ==========================
   MONTH BUTTONS
   ========================== */

.btc-month-btn{

    padding:12px 24px;

    border:none;

    border-radius:999px;

    background:#f5f7f5;

    color:#444;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;

    box-shadow:
    0 2px 8px rgba(0,0,0,.06);
}

/* Hover */

.btc-month-btn:hover{

    transform:translateY(-2px);

    background:#e9f7e5;

    color:#209500;

    box-shadow:
    0 8px 18px rgba(32,149,0,.15);
}

/* Active */

.btc-month-btn.active{

    background:#209500;

    color:#fff;

    box-shadow:
    0 10px 24px rgba(32,149,0,.28);
}

/* Remove default focus */

.btc-month-btn:focus{

    outline:none;
}

/* Mobile */

@media(max-width:768px){

    .btc-recommended-books h2{

        font-size:30px;

        margin-bottom:28px;
    }

    .btc-month-tabs{

        gap:10px;

        margin-bottom:30px;
    }

    .btc-month-btn{

        padding:10px 18px;

        font-size:14px;
    }

}




















.btc-home-events{

position:relative;
max-width: none;
width: auto !important;
margin:0 0;

background-image:

url(

'../images/events-hero.jpg'

);

background-size:cover;

background-position:center;

background-attachment:fixed;

overflow:hidden;

}

.btc-home-events-overlay{

background:

linear-gradient(

120deg,

#2f9cb1c9,

#29a17dc9

);

padding:

100px

40px;

}

.btc-home-events-content{

max-width:1400px;
text-align: -webkit-center;
margin:auto;

}

.btc-home-events-content h2{

text-align:center;

font-size:42px;

color:#fff;

margin-bottom:70px;

}

.btc-home-events-grid{

display:grid;

grid-template-columns:

repeat(

3,

1fr

);

gap:30px;

}

.btc-home-event-card{

display:block;

text-decoration:none;

overflow:hidden;

border-radius:24px;

background:#fff;

transition:

transform .25s ease,

box-shadow .25s ease;

}

.btc-home-event-card:hover{

transform:

translateY(

-8px

);

box-shadow:

0 25px 60px

rgba(

0,

0,

0,

.2

);

}

.btc-home-event-card img{

width:100%;

height:240px;

object-fit:cover;

display:block;

}

.btc-home-event-info{

padding:25px;

}

.btc-home-event-info h3{

font-size:26px;

margin-bottom:12px;

}

.btc-home-event-info p{

line-height:1.7;

}

.btc-home-events-btn{

display:block;

width:fit-content;

margin:

60px auto 0;

padding:

16px 28px;

border-radius:14px;

background:#209500;

color:#fff;

text-decoration:none;

font-weight:600;

}

.btc-home-events-btn:hover{

transform:

translateY(

-3px

);

}

@media(

max-width:1024px

){

.btc-home-events-grid{

grid-template-columns:

repeat(

2,

1fr

);

}

}

@media(

max-width:768px

){

.btc-home-events-grid{

grid-template-columns:

1fr;

}

.btc-home-events-content h2{

font-size:34px;

}

}
