/* Cards */
.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-heading {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-card-body h6 {
    font-size: 1.3rem;
    font-weight: 700;
}

.blog-card-body p {
    font-size: 1rem;
    font-weight: 600;
    color: rgb(65, 65, 65);
    margin-bottom: 20px;
}

.blog-card-body .text-end {
    margin-top: auto;
}