.latest{

    padding:120px 0;

    background:#08131F;

}
.section-title{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.post-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.post-card{

background:#111F33;

border-radius:20px;

overflow:hidden;

transition:.35s;

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.post-card:hover{

transform:translateY(-10px);

}

.post-card img{

width:100%;

height:220px;

object-fit:cover;

display:block;

}

.post-body{

padding:30px;

}

.post-tag{

display:inline-block;

padding:6px 14px;

background:#0d6efd;

border-radius:30px;

font-size:13px;

margin-bottom:20px;

}

.post-body h3{

font-size:26px;

margin-bottom:15px;

}

.post-body p{

color:#9AA4B2;

line-height:1.8;

margin-bottom:25px;

}

.post-footer{

display:flex;

justify-content:space-between;

align-items:center;

}

.post-footer a{

color:#0d6efd;

text-decoration:none;

font-weight:600;

}
