.video-banner {
    min-height: 360px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(to right, rgba(180,195,205,0.95) 45%, rgba(180,195,205,0.4)),
        url("https://images.unsplash.com/photo-1581092160607-ee22621dd758");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Text content */
.video-banner-content {
    padding: 60px;
    max-width: 600px;
}

.video-banner-content h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb span:first-child {
    color: #f5b400;
}

.breadcrumb .arrow1 {
    color: #fff;
    margin: 0 8px;
}

.breadcrumb span:last-child {
    color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
    .video-banner-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-banner {
        min-height: 280px;
        background:
            linear-gradient(to bottom, rgba(180,195,205,0.95), rgba(180,195,205,0.85)),
            url("https://images.unsplash.com/photo-1581092160607-ee22621dd758");
        background-position: center;
        text-align: center;
    }

    .video-banner-content {
        padding: 40px 20px;
        margin: auto;
    }

    .video-banner-content h1 {
        font-size: 26px;
    }
}






/* Section spacing */
.con_latest_news_area_two {
    padding: 80px 0;
    background: #f8fafc;
}

/* FIX GRID + GAP (IMPORTANT) */
.con_latest_news_area_two .row{
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* 🔥 MAIN GAP (row + column) */
}

/* Desktop – 3 show */
.con_latest_news_area_two .col-lg-4{
    flex: 0 0 calc(33.3333% - 16px);
    max-width: calc(33.3333% - 16px);
}

/* Section title */
.section_title {
    margin-bottom: 50px;
}

.section_title .con_title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.section_title .con_p {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* Card */
.latest_blog_item_two {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    height: 100%;
}

.latest_blog_item_two:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Video */
.latest_blog_item_two video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Content */
.latest_blog_item_two .content {
    padding: 15px 18px;
}

.latest_blog_item_two .post_meta {
    margin: 0;
}

.latest_blog_item_two .post_meta li a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
}

.latest_blog_item_two .post_meta li a i {
    margin-right: 8px;
    color: #2563eb;
}

/* Hover text */
.latest_blog_item_two:hover .post_meta li a {
    color: #2563eb;
}

/* Large Desktop */
@media (min-width: 1200px) {
    .latest_blog_item_two video {
        height: 240px;
    }
}

/* Tablet – 2 show */
@media (max-width: 991px) {
    .con_latest_news_area_two .col-lg-4{
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .section_title .con_title {
        font-size: 30px;
    }

    .latest_blog_item_two video {
        height: 200px;
    }
}

/* Mobile – 1 show */
@media (max-width: 576px) {
    .con_latest_news_area_two {
        padding: 50px 0;
    }

    .con_latest_news_area_two .row{
        gap: 20px;
    }

    .con_latest_news_area_two .col-lg-4{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section_title .con_title {
        font-size: 24px;
    }

    .latest_blog_item_two video {
        height: 190px;
    }

    .latest_blog_item_two .content {
        padding: 14px;
    }

    .latest_blog_item_two .post_meta li a {
        font-size: 13px;
        text-align: center;
    }
}

