
.kennis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.kennis-card {
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.kennis-card:hover {
    transform: translateY(-5px);
}

.kennis-img {
    width: 100%;
    /*height: 180px;*/
    margin-bottom: 15px;
    overflow: hidden;
}

.kennis-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kennis-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A436D;
    margin-bottom: 15px;
    line-height: 1.35;
}

.kennis-btn {
    display: block;
    width: 100%;
    background: #EF7300;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

.kennis-btn:hover {
    background: #d66700;
    color: #fff;
}

@media (max-width: 992px) {
    .kennis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .kennis-grid {
        grid-template-columns: 1fr;
    }
}