/* =========================
   BLOG SECTION STYLE
   EXACT SCREENSHOT LOOK
========================= */

.blog-carousel {
    position: relative;
}

/* OWL FIX */
.blog-carousel .owl-stage {
    display: flex;
}

.blog-carousel .owl-item {
    display: flex;
    height: auto;
}

.blog-item {
/*     width: 100%; */
    padding: 0 12px;
    box-sizing: border-box;
}

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

.blog-card {
    width: 100%;
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: none !important;
}

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

.blog-image {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    background: transparent !important;
    box-shadow: none !important;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: 0.4s ease;
    box-shadow: none !important;
    border: none !important;
}

.blog-card:hover .blog-image img {
    transform: scale(1.02);
}

/* REMOVE OLD DATE BOX */
.blog-date {
    display: none !important;
}

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

.blog-content {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* DATE */
.blog-meta {
    margin-bottom: 10px !important;
    display: block !important;
}

.blog-meta .meta-item {
    font-size: 15px !important;
    color: #8e6d4d !important;
    font-family: Georgia, serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.2px;
}

.blog-meta .meta-item i {
    display: none !important;
}

/* TITLE */
.blog-title {
    margin: 0 0 12px !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    font-family: Georgia, serif !important;
}

.blog-title a {
    color: #2c221b !important;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.blog-title a:hover {
    color: #b78955 !important;
}

/* READ MORE */
.blog-readmore {
    margin-top: 8px;
}

.blog-readmore a {
    color: #c08a52 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-family: Georgia, serif;
    transition: 0.3s ease;
}

.blog-readmore a:hover {
    color: #2c221b !important;
}

/* =========================
   REMOVE ALL POSSIBLE SHADOWS
========================= */

.blog-card *,
.blog-card *:before,
.blog-card *:after {
    box-shadow: none !important;
}

/* =========================
   NAVIGATION
========================= */

.blog-carousel .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    gap: 10px;
}

.blog-carousel .owl-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    transition: 0.3s ease;
    box-shadow: none !important;
}

.blog-carousel .owl-nav button:hover {
    background: #b78955 !important;
    border-color: #b78955 !important;
}

.blog-carousel .owl-nav button i {
    color: #333 !important;
    font-size: 14px;
}

.blog-carousel .owl-nav button:hover i {
    color: #fff !important;
}

/* HIDE DOTS */
.blog-carousel .owl-dots {
    display: none !important;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .blog-image img {
        height: 200px;
    }

    .blog-title {
        font-size: 17px !important;
    }

    .blog-carousel .owl-nav {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
    }
}


/* =========================
   SAME IMAGE HEIGHT
========================= */

.blog-image {
    position: relative;
    width: 100%;
    height: 230px !important;
    overflow: hidden;
    border-radius: 18px;
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}