.panel.panel-default.blog-card {
    padding: 15px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card > a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.blog-card .blog-card__image-link {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    line-height: 0;
}

.blog-card .blog-card__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px !important;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}