/* PAGE WRAPPER */
.oep-blog-page{
    width:100%;
    margin:0;
    padding:0;
}

/* HERO FULL WIDTH */
.oep-blog-page .oep-blog-hero{
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    background: linear-gradient(135deg,#dc3545,#b71c1c);
    padding:90px 0;
}

/* HERO CONTENT */
.oep-blog-hero-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    text-align:center;
    color:#fff;
}

.oep-blog-hero h1{
    font-size:50px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.3;
    color:#fff;
}

.oep-blog-hero p{
    font-size:20px;
    max-width:850px;
    margin:0 auto;
    line-height:1.8;
    color:#fff;
}

/* SEARCH */
.oep-blog-search{
    margin-top:40px;
}

.oep-blog-search form{
    max-width:700px;
    margin:auto;
    display:flex;
    background:#fff;
    border-radius:50px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.oep-blog-search input{
    flex:1;
    border:none;
    padding:16px 20px;
    outline:none;
    font-size:16px;
}

.oep-blog-search button{
    border:none;
    background:#212529;
    color:#fff;
    padding:0 30px;
    font-weight:600;
    cursor:pointer;
}

/* BLOG CONTENT */
.oep-blog-content{
    padding:80px 0;
}

/* BLOG GRID */
.oep-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* BLOG CARD */
.oep-blog-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.oep-blog-card:hover{
    transform:translateY(-6px);
}

/* THUMBNAILS */
.oep-blog-card img{
    width:100%;
    object-fit:cover;
    display:block;
    border-bottom:1px solid #f2f2f2;
}

/* CONTENT */
.oep-blog-card-content{
    padding:18px;
}

/* CATEGORY */
.oep-blog-category{
    display:inline-block;
    background:#f8d7da;
    color:#dc3545;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    text-decoration:none;
    margin-bottom:15px;
}

/* TITLE */
.oep-blog-title{
    font-size:18px;
    line-height:1.4;
    margin-bottom:15px;
}

.oep-blog-title a{
    color:#222;
    text-decoration:none;
    transition:.3s ease;
}

.oep-blog-title a:hover{
    color:#dc3545;
}

/* META */
.oep-blog-meta{
    font-size:14px;
    color:#777;
    margin-bottom:15px;
}

/* EXCERPT */
.oep-blog-excerpt{
    font-size:15px;
    line-height:1.7;
    color:#555;
    margin-bottom:20px;
}

/* BOTTOM */
.oep-blog-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.oep-read-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(220,53,69,0.08);
    color:#dc3545;
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
    border:1px solid rgba(220,53,69,0.15);
}

.oep-read-more:hover{
    background:#dc3545;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(220,53,69,.25);
}

.oep-read-more::after{
    content:"→";
    font-size:15px;
    transition:.3s;
}

.oep-read-more:hover::after{
    transform:translateX(4px);
}

.oep-post-views{
    font-size:14px;
    color:#666;
}

/* PAGINATION */
.oep-blog-pagination{
    margin-top:50px;
    text-align:center;
}

.oep-blog-pagination .page-numbers{
    display:inline-block;
    padding:10px 15px;
    margin:0 5px;
    background:#fff;
    border-radius:6px;
    text-decoration:none;
    color:#222;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.oep-blog-pagination .current{
    background:#dc3545;
    color:#fff;
}

/* CTA */
.oep-global-cta{
    background:#212529;
    color:#fff;
    padding:70px 30px;
    text-align:center;
    border-radius:15px;
    margin-top:80px;
}

.oep-global-cta h2{
    font-size:34px;
    margin-bottom:20px;
    color:#fff;
}

.oep-global-cta p{
    font-size:17px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
    color:#fff;
}

.oep-btn{
    display:inline-block;
    margin-top:25px;
    background:#dc3545;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.oep-btn:hover{
    background:#bb2d3b;
    color:#fff;
}

/* TABLET */
@media(max-width:991px){

    .oep-blog-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .oep-blog-hero{
        padding:70px 0;
    }

    .oep-blog-hero h1{
        font-size:36px;
        line-height:1.4;
    }

    .oep-blog-hero p{
        font-size:17px;
    }

}

/* MOBILE */
@media(max-width:767px){

    .oep-blog-page .oep-blog-hero{
        padding:55px 0;
    }

    .oep-blog-hero-inner{
        padding:0 18px;
    }

    .oep-blog-hero h1{
        font-size:26px;
        line-height:1.4;
        margin-bottom:18px;
    }

    .oep-blog-hero p{
        font-size:15px;
        line-height:1.8;
    }

    .oep-blog-search{
        margin-top:25px;
    }

    .oep-blog-search form{
        flex-direction:column;
        border-radius:12px;
        max-width:100%;
    }

    .oep-blog-search input{
        padding:14px 16px;
        font-size:15px;
    }

    .oep-blog-search button{
        width:100%;
        padding:14px;
        border-radius:0;
        font-size:15px;
    }

    .oep-blog-content{
        padding:50px 0;
    }

    .oep-blog-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .oep-blog-card{
        border-radius:12px;
    }

    .oep-blog-title{
        font-size:16px;
        line-height:1.5;
    }

    .oep-blog-meta{
        font-size:13px;
    }

    .oep-blog-excerpt{
        font-size:14px;
        line-height:1.7;
    }

    .oep-blog-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .oep-blog-pagination{
        margin-top:35px;
    }

    .oep-blog-pagination .page-numbers{
        padding:8px 12px;
        font-size:14px;
        margin:3px;
    }

    .oep-global-cta{
        padding:45px 20px;
        border-radius:12px;
        margin-top:50px;
    }

    .oep-global-cta h2{
        font-size:24px;
        line-height:1.4;
    }

    .oep-global-cta p{
        font-size:15px;
    }

    .oep-btn{
        width:100%;
        text-align:center;
        padding:14px;
        font-size:15px;
    }

}

.oep-post-views{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#f8f9fa;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    color:#666;
    border:1px solid #eee;
    transition:.3s ease;
}

.oep-post-views:hover{
    background:#fff3f4;
    border-color:#f5c2c7;
    color:#dc3545;
}

/* REMOVE TEXT DECORATION FROM BLOG LINKS */
.oep-blog-title a,
.oep-blog-category,
.oep-read-more{
    text-decoration:none !important;
}

.oep-blog-title a:hover,
.oep-blog-category:hover,
.oep-read-more:hover{
    text-decoration:none !important;
}

