.blog-page{
    padding:120px 0;
    background:#f8fafc;
}

.blog-card{
    background:white;
    border-radius:25px;
    overflow:hidden;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

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

.blog-card-image{
    position:relative;
    height:260px;
}

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

.blog-category{

    position:absolute;
    top:20px;
    left:20px;

    background:linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;
}

.blog-card-body{
    padding:30px;
}

.blog-card-body h3{
    font-size:24px;
    margin:15px 0;
}

.blog-card-body p{
    color:#64748b;
}

.blog-page{
    padding:120px 0;
    background:#f8fafc;
}

.blog-sidebar{
    position:sticky;
    top:120px;
}

.sidebar-widget{

    background:white;

    border-radius:25px;

    padding:30px;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sidebar-widget h4{

    margin-bottom:25px;

    color:#081120;

    font-weight:700;
}

.category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.category-list li{

    margin-bottom:12px;
}

.category-list a{

    display:flex;
    justify-content:space-between;

    padding:14px 18px;

    border-radius:12px;

    background:#f8fafc;

    transition:.3s;

    color:#334155;
}

.category-list a:hover{

    background:#ff6b35;
    color:white;
}

.count{

    font-size:13px;
    font-weight:600;
}

.recent-post{

    display:flex;
    gap:15px;

    margin-bottom:20px;
}

.recent-post img{

    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:15px;
}

.recent-post h6{

    color:#081120;

    margin-bottom:6px;
}

.recent-post span{

    color:#64748b;
    font-size:13px;
}

.sidebar-cta{

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    border-radius:25px;

    padding:35px;

    color:white;
}

.sidebar-cta h4{

    margin-bottom:15px;
}

.btn-sidebar{

    display:inline-block;

    margin-top:15px;

    background:white;

    color:#dc2626;

    padding:12px 25px;

    border-radius:50px;

    font-weight:600;
}

.blog-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.blog-card-image{

    height:260px;

    position:relative;
}

.blog-card-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.blog-card-body{

    padding:30px;
}

.read-more{

    color:#dc2626;

    font-weight:600;

    display:flex;
    align-items:center;

    gap:10px;

    margin-top:20px;
}

.blog-pagination{
    display:flex;
    justify-content:center;
}

.blog-pagination nav{
    display:flex;
}

.blog-pagination .pagination{
    gap:8px;
}

.blog-pagination .page-link{

    border:none;

    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px !important;

    color:#081120;

    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.blog-pagination .active .page-link{

    background:linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;
}


/* =========================
 PAGINATION LARAVEL
========================= */

.pagination-wrapper{
    margin-top:50px;
    display:flex;
    justify-content:center;
}

.pagination-wrapper nav{
    display:flex;
    justify-content:center;
}

.pagination-wrapper nav > div{
    display:flex;
    align-items:center;
    gap:8px;
}

.pagination-wrapper span,
.pagination-wrapper a{

    min-width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 14px;

    border-radius:12px;

    background:#fff;

    color:#1f2937;

    text-decoration:none;

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.06);

    transition:.3s;
}

.pagination-wrapper a:hover{

    background:#eef2ff;

    color:#6366f1;

    transform:translateY(-2px);
}

/* page active */

.pagination-wrapper [aria-current="page"] span{

    background:linear-gradient(
        135deg,
        #6366f1,
        #4f46e5
    );

    color:#fff;

    box-shadow:
    0 10px 25px rgba(99,102,241,.3);
}

/* disabled */

.pagination-wrapper .opacity-50{

    opacity:.4;
}

/* cache "Showing 1 to 6 of 10 results" */

.pagination-wrapper p{
    display:none;
}

/* icônes */

.pagination-wrapper svg{
    width:16px;
    height:16px;
}