/* ===========================
   BLOG SECTION
=========================== */

.blog-section{
    padding:20px 0;
    background:#fafafa;
}

.blog-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   TITLE
=========================== */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:#932F67;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:16px;
}

/* ===========================
   GRID
=========================== */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

/* ===========================
   CARD
=========================== */

.blog-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    overflow:hidden;
    transition:all .25s ease;
}

.blog-card:hover{
    transform:translateY(-5px);
    border-color:#932F67;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* ===========================
   IMAGE
=========================== */

.blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

/* ===========================
   CONTENT
=========================== */

.blog-content{
    padding:22px;
}

.blog-date{
    display:inline-block;
    color:#932F67;
    font-size:14px;
    font-weight:600;
    margin-bottom:12px;
}

.blog-content h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.blog-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;
}

/* ===========================
   BUTTON
=========================== */

.read-more{
    display:inline-block;
    padding:10px 22px;
    background:#932F67;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:background .25s;
}

.read-more:hover{
    background:#7b2455;
    color:#fff;
    text-decoration:none;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }

}