.blog-card {
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--theme-color);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    color: #000;
    font-size: 1rem;
    transition: 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--theme-color);
}

.read-more {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-right: 5px;
    transition: 0.3s;
}

