.toolGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
}
.toolCard {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #bbb;
    background: white;
}
.toolCard img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    border-bottom: 1px solid #ccc;
    background: #fafafa;
}
.toolCard h2 {
    margin: 16px;
    margin-bottom: 8px;
    color: #0040c0;
    font-size: 1.6em;
    
    transition: .2s;
}
.toolCard p {
    margin: 0 16px 16px;
    line-height: 1.4;
}
.toolCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0,0,0,.18);
}
.note {
    color: #555;
    font-size: 0.9em;
}