.blog-posts article {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-posts article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.post-img {
    height: 250px;
    overflow: hidden;
}

.post-img img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-img:hover img {
    transform: scale(1.05);
}

.post-date {
    z-index: 10;
    font-weight: 500;
    background-color: #0d6efd; /* Bootstrap primary color */
    font-size: 0.9rem;
}

.post-title a {
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
}

.post-title a:hover {
    color: #0d6efd !important;
}

.readmore {
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.readmore:hover {
    color: #0a58ca !important;
}

.readmore:hover i {
    transform: translateX(5px);
}

.readmore i {
    transition: transform 0.3s ease;
}

.meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.meta i {
    font-size: 0.9rem;
}

hr {
    opacity: 0.1;
    margin: 1rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-img {
        height: 200px;
    }
    
    .post-content {
        padding: 1.25rem !important;
    }
    
    .post-title {
        font-size: 1.1rem !important;
    }
}