.adventure-section{
    padding:80px 0;
    background:#f7f8f9;
}

/*==========================
    PAGE HEADER
==========================*/

.adventure-banner{
    position:relative;
    height:420px;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:70px;
}

.adventure-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.adventure-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.55));
}

.banner-content{
    position:absolute;
    left:60px;
    bottom:60px;
    color:#fff;
    z-index:2;
}

.banner-content h1{
    font-size:52px;
    margin-bottom:15px;
}

.banner-content p{
    max-width:650px;
    line-height:1.8;
}

/*==========================
      GRID
==========================*/

.adventure-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

/*==========================
      CARD
==========================*/

.adventure-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.adventure-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.adventure-image{

    display:block;

    overflow:hidden;

}

.adventure-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.adventure-card:hover img{

    transform:scale(1.08);

}

.adventure-content{

    padding:25px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.adventure-content h3{

    margin-bottom:15px;

    font-size:28px;

}

.adventure-content h3 a{

    text-decoration:none;

    color:#17314b;

}

.adventure-location,
.adventure-duration{

    color:#777;

    margin-bottom:8px;

}

.adventure-description{

    margin:18px 0;

    color:#555;

    line-height:1.7;

    flex:1;

}

.adventure-price{

    color:#C58A16;

    font-size:30px;

    margin-bottom:20px;

}

.btn-adventure{

    display:block;

    width:100%;

    text-align:center;

    padding:15px;

    background:#17314b;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

}

.btn-adventure:hover{

    background:#C58A16;

}

/*==========================
      PAGINATION
==========================*/

.pagination{

    margin-top:60px;

    text-align:center;

}

.pagination .page-numbers{

    display:inline-block;

    padding:12px 18px;

    margin:5px;

    background:#fff;

    border-radius:8px;

    text-decoration:none;

    color:#17314b;

    box-shadow:0 4px 10px rgba(0,0,0,.08);

}

.pagination .current{

    background:#17314b;

    color:#fff;

}

.pagination .page-numbers:hover{

    background:#C58A16;

    color:#fff;

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

    .adventure-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .adventure-grid{

        grid-template-columns:1fr;

    }

    .banner-content{

        left:25px;

        bottom:30px;

    }

    .banner-content h1{

        font-size:36px;

    }

}
/*==================================
 ADVENTURE PRICE BOX
==================================*/

.adventure-price{

    margin:25px 0;

    padding:18px;

    background:#f7f8f9;

    border-left:5px solid #0d5c3b;

    border-radius:10px;

}

.adventure-price h4{

    margin:0 0 10px;

    font-size:28px;

    color:#c58a16;

    font-weight:700;

}

.adventure-price h4 span{

    font-size:15px;

    color:#666;

    font-weight:500;

}

.adventure-price p{

    margin:6px 0;

    color:#555;

    font-size:15px;

}

.adventure-price strong{

    color:#17314b;

}