.blog-home{

    width:90%;
    max-width:1400px;
    margin:120px auto;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#E8C76A;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;

}

.section-title h2{

    font-family:'Great Vibes',cursive;
    font-size:72px;
    color:#D4AF37;
    margin:15px 0;

}

.section-title p{

    max-width:800px;
    margin:auto;

    color:#F7F2E9;

    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-style:italic;
    line-height:1.7;

}

.blog-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;

}

.blog-card{

    background:#221133;

    border-radius:25px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.blog-image{

    display:block;

    overflow:hidden;

}

.blog-image img{

    width:100%;
    height:260px;

    object-fit:cover;

    transition:.6s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-content{

    padding:30px;

}

.blog-date{

    color:#D4AF37;
    font-size:14px;
    letter-spacing:2px;

}

.blog-content h3{

    margin:18px 0;

    font-size:30px;

}

.blog-content h3 a{

    color:white;

    text-decoration:none;

    font-family:'Cormorant Garamond',serif;

}

.blog-content p{

    color:#F7F2E9;

    line-height:1.8;

    font-family:'Cormorant Garamond',serif;

    font-size:22px;

}

.blog-button{

    display:inline-block;

    margin-top:20px;

    padding:14px 30px;

    background:#D4AF37;

    color:#14081F;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.blog-button:hover{

    background:#E8C76A;

}

.blog-footer{

    text-align:center;

    margin-top:60px;

}



@media(max-width:900px){

    .blog-grid{

        grid-template-columns:1fr;

    }

}
