/* Blog Listing */
.blog-hero {
    background: url(../blog/images/blog-banner.jpeg) no-repeat center center;
    background-size: cover;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 30px;
}

.blog-listing {
    background-color: #fdf5e3;
    padding: 60px 0;
}

.blog-listing .blog-title {
    text-align: center;
    margin-bottom: 50px;
}

.blog-listing .blog-title small {
    color: #2f5d50;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
}

.blog-listing .blog-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-top: 8px;
    font-weight: 600;
    line-height: 55px;
    color: #31402f;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* FEATURED POST */
.blog-layout .blog-featured {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.blog-layout .blog-featured img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.blog-layout .blog-featured-content {
    padding: 5px 25px 30px;
    color: #000;
}

.blog-layout .blog-featured-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

/* ================= BLOG GRID ================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.blog-read-more {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 16px;
    border: 1px solid #c14d2a;
    border-radius: 20px;
    font-size: 13px;
    color: #c14d2a;
    text-decoration: none;
}

/* ================= SIDEBAR ================= */
.blog-sidebar h4 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.blog-recent-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.blog-recent-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
}

.blog-recent-item a {
    color: #2f5d50;
    font-size: 14px;
    line-height: 22px;
}

.blog-recent-item small {
    font-family: sans-serif;
    font-size: 13px;
    color: #2f5d50;
    font-weight: 600;
}

.blog-contact-box {
    margin: 30px 0;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
}

.blog-contact-box p {
    margin-bottom: 15px;
}

.blog-contact-box .contact-details {
    padding-bottom: 15px;
}

.blog-contact-box .contact-details img {
    padding-right: 8px;
}


.package-banner {
    width: 100%;
    text-align: center;
}
.package-banner img {
    width: 100%;
    height: 395px;
    object-fit: fill;
}
/* Pagination */

.pagination>.active>a {
    background-color: #2f7d32;
    border-color: #2f7d32;
}

.pagination>.active>a:hover {
    background-color: #2f7d32;
    border-color: #2f7d32;
}

/* Single Blog */
.single-hero {
    position: relative;
}

.single-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* overlay color */
    z-index: 1;
}

.single-hero h1 {
    font-size: 38px;
    line-height: 50px;
    position: relative;
    z-index: 2;
}

.blog-single {
    padding: 50px 0;
    background-color: #fdf5e3;
}

.blog-single .blog-left {
    margin-top: 10px;
}

.blog-single h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.blog-single img {
    border-radius: 12px;
}

.blog-single .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 30px;
    font-size: 14px;
}
.blog-single .blog-content h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
}
.blog-single .blog-content h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}
.blog-content p,
.blog-content li {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}

.blog-content .m-blog h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.blog-content .m-blog li::marker {
    font-size: 1.3em;
}

.blog-content .m-blog p,
.blog-content .m-blog li {
    font-size: 13px;
    line-height: 24px;
}

.blog-content ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 15px;
}

.blog-single .blog-content img {
    width: 100%;
    margin-bottom: 25px;
}

.blog-share {
    display: flex;
    gap: 18px;
}

.blog-share i {
    color: #31402f;
}

/* ================== COMMENT FORM ================== */
.comment-box {
    margin-top: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.comment-box h3 {
    margin-bottom: 20px;
}

.comment-box input,
.comment-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin-bottom: 20px;
    background: transparent;
}

.comment-box input:focus-visible,
.comment-box textarea:focus-visible {
    outline: none;
}

.comment-box button {
    background: #3f6f55;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .blog-hero {
        height: auto;
        padding: 60px 20px;
    }

    .blog-hero h1 {
        font-size: 60px;
    }

    .blog-layout {
        grid-template-columns: 1fr
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .single-hero h1 {
        font-size: 32px;
        line-height: 45px;
    }
    .blog-single .blog-meta {
        flex-direction: column;
    }
    .package-banner img {
    width: auto;
    height: auto;
    object-fit: fill;
}
}

@media (max-width: 767px) {
    .blog-hero h1 {
        font-size: 32px;
    }

    .single-hero h1 {
        font-size: 30px;
        line-height: 42px;
    }
}