/*=========================
DESTINATION BLOG SECTION
=========================*/

.destination-blog-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.destination-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 15px;
}

.destination-breadcrumb a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.destination-breadcrumb span {
    color: #777;
}

/* TITLE */

.destination-main-title {
    text-align: center;
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    color: #112b5a;
    margin-bottom: 35px;
}

/* GREEN BANNER */

.destination-banner {
    background: #3f7d6f;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 50px;
}

/* GRID */

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
}

/* CARD */

.destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    transition: .35s;
}

.destination-card:hover {
    transform: translateY(-8px);
}

.destination-image {
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destination-content p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destination-btn {
    color: #ff5a1f;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.destination-btn:hover {
    color: #112b5a;
}


@media(max-width:991px) {

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .destination-main-title {
        font-size: 42px;
    }
}

@media(max-width:767px) {

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-main-title {
        font-size: 32px;
    }

    .destination-banner {
        font-size: 18px;
        padding: 15px;
    }

    .destination-image {
        height: 220px;
    }
}