/*==============================
DESTINATION CARD
==============================*/

.bysamy-tour-destination-card{

    height:100%;
    overflow:hidden;

    background:#fff;

    border-radius:22px;

    border:1px solid #e4ecef;

    box-shadow:
        0 12px 35px rgba(0,0,0,.07);

    transition:.35s;

}

.bysamy-tour-destination-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 22px 55px rgba(0,0,0,.15);

}

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

.bysamy-tour-destination-image{

    position:relative;

    display:block;

    aspect-ratio:3 / 2;

    overflow:hidden;

}

.bysamy-tour-destination-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:.6s;

}

.bysamy-tour-destination-card:hover img{

    transform:scale(1.07);

}

.bysamy-tour-destination-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );

}

.bysamy-tour-destination-badge{

    position:absolute;

    top:18px;

    left:18px;

    padding:7px 14px;

    border-radius:30px;

    background:#087eb7;

    color:#fff;

    font-size:11px;

    font-weight:700;

}

/*==============================
CONTENT
==============================*/

.bysamy-tour-destination-content{

    padding:22px;

}

.bysamy-tour-destination-content h3{

    margin:0 0 18px;

    font-size:22px;

    font-weight:800;

    line-height:1.3;

}

.bysamy-tour-destination-content h3 a{

    color:#031722;

    text-decoration:none;

}

.bysamy-tour-destination-content h3 a:hover{

    color:#087eb7;

}

.bysamy-tour-destination-price{

    margin-bottom:20px;

}

.bysamy-tour-destination-price span{

    display:block;

    color:#6b7a86;

    font-size:12px;

}

.bysamy-tour-destination-price strong{

    font-size:34px;

    color:#087eb7;

    font-weight:800;

}

.bysamy-tour-destination-price small{

    display:block;

    color:#6b7a86;

}

.bysamy-tour-destination-button{

    width:100%;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #087eb7,
        #15b8c8
    );

    color:#fff;

    text-decoration:none;

    font-weight:700;

}

.bysamy-tour-destination-button:hover{

    color:#fff;

}