.blog-hero{
    padding:180px 0 120px;
    background:linear-gradient(
        135deg,
        #f8fbff,
        #eef5ff
    );
}

.blog-hero-image {
	position: relative;
}

/*.hero-badge{
    display:inline-block;
    background:#e8f0ff;
    color:#175cdd;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}*/

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

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

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

.blog-content{
    padding:25px;
}

.blog-meta{
    display:flex;
    gap:20px;
    margin-bottom:15px;
    color:#777;
    font-size:14px;
}

.newsletter-section {
	background: var(--light-gray);
}

.newsletter-box {
    /*background:#175cdd;*/
    color:var(--dark);
    border-radius:25px;
    padding:60px;
}