/* Simplified & Unified styles for the Tools Hub Page */
.tool-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.tool-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    border-color: #336aea; /* Brand primary */
}

.tool-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    background-color: #f1f5f9;
    color: #475569;
    transition: all 0.2s ease-in-out;
}

.tool-card:hover .tool-icon-wrapper {
    background-color: #e0ebff;
    color: #336aea;
}

.badge-tool {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (prefers-color-scheme: dark) {
    .tool-card {
        background: #1a202c;
        border-color: #2d3748;
        color: white;
    }
    .tool-card:hover {
        border-color: #63b3ed;
    }
    .tool-icon-wrapper {
        background-color: #2d3748;
        color: #94a3b8;
    }
    .tool-card:hover .tool-icon-wrapper {
        background-color: #1e293b;
        color: #63b3ed;
    }
    .text-muted {
        color: #94a3b8 !important;
    }
}
