.blog-home{
    background:#f8fbff;
}

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

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

/* .blog-card img{
    /* width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s; 
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    display: block;
} */
 .blog-card > img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.blog-content{
    padding:25px;
}

.blog-category{
    display:inline-block;
    background:#eef5ff;
    color:#0d6efd;
    padding:6px 15px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.blog-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.blog-content p{
    color:#6c757d;
}

.read-btn{
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
}

.read-btn i{
    margin-left:5px;
    transition:.3s;
}

.read-btn:hover i{
    margin-left:10px;
}

.blog-actions{

/* display:flex;
align-items:center;
margin-top:15px; */
 display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
    width: 100%;

}

.like-btn{

display:flex;
align-items:center;
gap:8px;
padding:10px 18px;
border:none;
border-radius:30px;
background:#f3f7ff;
cursor:pointer;
transition:.3s;

}

.like-btn:hover{

background:#0d6efd;
color:#fff;

}

.like-btn i{

font-size:20px;
transition:.3s;

}

.like-btn.liked{

background:#ffebee;
color:#e53935;

}

.like-btn.liked i{

color:#e53935;
transform:scale(1.2);

}

.blog-actions{
display:flex;
align-items:center;
gap:15px;
margin-top:20px;
}
.bookmark-btn{
display:flex;
align-items:center;
gap:8px;
padding:10px 18px;
border:none;
border-radius:30px;
background:#eef5ff;
cursor:pointer;
transition:.3s;
font-weight:600;

}

.bookmark-btn:hover{

background:#0d6efd;
color:#fff;

}

.bookmark-btn i{

font-size:20px;

}

.bookmark-btn.saved{

background:#0d6efd;
color:#fff;

}

.bookmark-btn.saved i{

color:#FFD700;

}

.custom-toast{

position:fixed;
bottom:30px;
right:30px;
background:#0d6efd;
color:#fff;
padding:14px 22px;
border-radius:10px;
font-weight:600;
opacity:0;
transform:translateY(20px);
transition:.35s;
z-index:99999;

}

.custom-toast.show{

opacity:1;
transform:translateY(0);

}

/* Responsive Styles */
.share-container{

position:relative;
display:inline-block;
margin-top:15px;

}

.share-toggle{

display:flex;
align-items:center;
gap:8px;
padding:10px 18px;
border:none;
border-radius:30px;
background:#eef5ff;
cursor:pointer;
transition:.3s;
font-weight:600;

}

.share-toggle:hover{

background:#0d6efd;
color:#fff;

}

.share-menu{

position:absolute;
top:55px;
left:0;
display:flex;
gap:10px;
padding:12px;
background:#fff;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:.3s;
z-index:100;

}

.share-menu.show{

opacity:1;
visibility:visible;
transform:translateY(0);

}

.share-link{

width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
border:none;
cursor:pointer;
background:#f3f5f8;
color:#333;
transition:.3s;

}

.share-link:hover{

transform:translateY(-4px);

}

.whatsapp:hover{

background:#25D366;
color:#fff;

}

.facebook:hover{

background:#1877F2;
color:#fff;

}

.linkedin:hover{

background:#0A66C2;
color:#fff;

}

.twitter:hover{

background:#000;
color:#fff;

}

.copy-link:hover{

background:#6c757d;
color:#fff;

}