.tools-index {
    max-width: 1100px;
    margin: 0 auto;
}

.tools-lead {
    max-width: 75ch;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1.08rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tools-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem;
    border: 1px solid #c9d4dc;
    border-radius: 7px;
    background: #f8fafb;
}

.tools-card h2 {
    margin-top: 0;
}

.tools-card p {
    flex: 1;
}

.tools-card .button {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
}

.tools-note {
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
    border-left: 5px solid #2f6f9f;
    background: #f4f7f9;
}

.tools-note > :first-child {
    margin-top: 0;
}

.tools-note > :last-child {
    margin-bottom: 0;
}

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