/* =========================================
   SPA BLOG SECTION – PREMIUM STYLE
========================================= */

.spa-blog{
    padding:110px 0;
    background:linear-gradient(135deg,#fffaf6,#fff,#f6efe8);
}

/* heading */

.blog-head{
    text-align:center;
    margin-bottom:60px;
}

.blog-title{
    font-size:32px;
    font-weight:800;
    color:#2b2b2b;
    margin-bottom:10px;
}

.blog-sub{
    color:#777;
    font-size:15px;
}


/* =========================
   GRID
========================= */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}


/* =========================
   CARD
========================= */

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    color:#222;

    box-shadow:0 10px 28px rgba(0,0,0,.06);

    transition:.35s;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 50px rgba(0,0,0,.12);
}


/* image */

.blog-img{
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

/* overlay */

.blog-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.4),transparent 60%);
}


/* tag */

.blog-tag{
    position:absolute;
    top:14px;
    left:14px;

    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
    color:#fff;

    font-size:12px;
    font-weight:600;

    padding:6px 12px;
    border-radius:30px;
}


/* =========================
   BODY
========================= */

.blog-body{
    padding:22px;
    display:flex;
    flex-direction:column;
    height:100%;
}

/* meta */

.blog-meta{
    font-size:12.5px;
    color:#8B5E3C;

    display:flex;
    gap:14px;
    margin-bottom:10px;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:5px;
}

/* title */

.blog-body h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

/* text */

.blog-body p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:16px;
}

/* read more */

.blog-read{
    margin-top:auto;
    font-size:14px;
    font-weight:600;
    color:#8B5E3C;

    display:inline-flex;
    align-items:center;
    gap:6px;

    transition:.3s;
}

.blog-card:hover .blog-read{
    transform:translateX(6px);
}


/* =========================
   BUTTON
========================= */

.blog-more{
    text-align:center;
    margin-top:60px;
}

.blog-btn{
    padding:12px 26px;
    border-radius:30px;
    color:#fff;
    font-weight:600;
    text-decoration:none;

    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
    transition:.3s;
}

.blog-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(139,94,60,.35);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:640px){
    .blog-grid{
        grid-template-columns:1fr;
    }

    .spa-blog{
        padding:70px 0;
    }
}/* =========================================
   SPA BLOG SECTION – PREMIUM STYLE
========================================= */

.spa-blog{
    padding:110px 0;
    background:linear-gradient(135deg,#fffaf6,#fff,#f6efe8);
}

/* heading */

.blog-head{
    text-align:center;
    margin-bottom:60px;
}

.blog-title{
    font-size:32px;
    font-weight:800;
    color:#2b2b2b;
    margin-bottom:10px;
}

.blog-sub{
    color:#777;
    font-size:15px;
}


/* =========================
   GRID
========================= */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}


/* =========================
   CARD
========================= */

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    color:#222;

    box-shadow:0 10px 28px rgba(0,0,0,.06);

    transition:.35s;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 50px rgba(0,0,0,.12);
}


/* image */

.blog-img{
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

/* overlay */

.blog-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.4),transparent 60%);
}


/* tag */

.blog-tag{
    position:absolute;
    top:14px;
    left:14px;

    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
    color:#fff;

    font-size:12px;
    font-weight:600;

    padding:6px 12px;
    border-radius:30px;
}


/* =========================
   BODY
========================= */

.blog-body{
    padding:22px;
    display:flex;
    flex-direction:column;
    height:100%;
}

/* meta */

.blog-meta{
    font-size:12.5px;
    color:#8B5E3C;

    display:flex;
    gap:14px;
    margin-bottom:10px;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:5px;
}

/* title */

.blog-body h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

/* text */

.blog-body p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:16px;
}

/* read more */

.blog-read{
    margin-top:auto;
    font-size:14px;
    font-weight:600;
    color:#8B5E3C;

    display:inline-flex;
    align-items:center;
    gap:6px;

    transition:.3s;
}

.blog-card:hover .blog-read{
    transform:translateX(6px);
}


/* =========================
   BUTTON
========================= */

.blog-more{
    text-align:center;
    margin-top:60px;
}

.blog-btn{
    padding:12px 26px;
    border-radius:30px;
    color:#fff;
    font-weight:600;
    text-decoration:none;

    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
    transition:.3s;
}

.blog-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(139,94,60,.35);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:640px){
    .blog-grid{
        grid-template-columns:1fr;
    }

    .spa-blog{
        padding:70px 0;
    }
}/* =========================================
   SPA BLOG SECTION – PREMIUM STYLE
========================================= */

.spa-blog{
    padding:110px 0;
    background:linear-gradient(135deg,#fffaf6,#fff,#f6efe8);
}

/* heading */

.blog-head{
    text-align:center;
    margin-bottom:60px;
}

.blog-title{
    font-size:32px;
    font-weight:800;
    color:#2b2b2b;
    margin-bottom:10px;
}

.blog-sub{
    color:#777;
    font-size:15px;
}


/* =========================
   GRID
========================= */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}


/* =========================
   CARD
========================= */

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    color:#222;

    box-shadow:0 10px 28px rgba(0,0,0,.06);

    transition:.35s;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 50px rgba(0,0,0,.12);
}


/* image */

.blog-img{
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

/* overlay */

.blog-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.4),transparent 60%);
}


/* tag */

.blog-tag{
    position:absolute;
    top:14px;
    left:14px;

    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
    color:#fff;

    font-size:12px;
    font-weight:600;

    padding:6px 12px;
    border-radius:30px;
}


/* =========================
   BODY
========================= */

.blog-body{
    padding:22px;
    display:flex;
    flex-direction:column;
    height:100%;
}

/* meta */

.blog-meta{
    font-size:12.5px;
    color:#8B5E3C;

    display:flex;
    gap:14px;
    margin-bottom:10px;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:5px;
}

/* title */

.blog-body h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

/* text */

.blog-body p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:16px;
}

/* read more */

.blog-read{
    margin-top:auto;
    font-size:14px;
    font-weight:600;
    color:#8B5E3C;

    display:inline-flex;
    align-items:center;
    gap:6px;

    transition:.3s;
}

.blog-card:hover .blog-read{
    transform:translateX(6px);
}


/* ========================================
   BLOG PAGINATION
======================================== */

.blog-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:60px;
}

/* button */

.pg-btn{
    min-width:42px;
    height:42px;

    border-radius:50%;
    border:none;

    background:#fff;
    color:#555;

    font-weight:600;
    cursor:pointer;

    box-shadow:0 6px 16px rgba(0,0,0,.08);
    transition:.25s;
}

/* hover */

.pg-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 26px rgba(0,0,0,.15);
    color:#8B5E3C;
}

/* active */

.pg-btn.active{
    color:#fff;
    background:linear-gradient(90deg,#ffd37a,#ffb65a,#8B5E3C);
}

/* mobile */

@media(max-width:640px){
    .pg-btn{
        min-width:36px;
        height:36px;
        font-size:13px;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:640px){
    .blog-grid{
        grid-template-columns:1fr;
    }

    .spa-blog{
        padding:70px 0;
    }
}