.infotable table thead tr th {
    font-weight: bold;
    background: #f8f8f8;
}
.infotable table tr th,
.infotable table tr td
{
    vertical-align: top;
}

.article-thumb{
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-thumb h2{
    min-height: 0;
}

.article-thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (min-width: 992px) {
    .article-thumb h2{
        min-height: 55px;
    }
}