/* 重置工具卡片样式，优先级高于之前的样式 */
.tool-listings {
    padding: 25px 0 !important;
}

.tool-list-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 12px !important;
}

.tool-card {
    height: 50px !important;
    padding: 0 !important;
    border-radius: 6px !important;
    border: 1px solid #eaeaea !important;
}

.tool-link {
    display: flex !important;
    height: 100% !important;
    width: 100% !important;
    align-items: center !important;
    padding: 0 10px !important;
}

.tool-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08) !important;
}

.tool-logo {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    margin-right: 10px !important;
}

.tool-content h3 {
    font-size: 0.85rem !important;
    margin: 0 0 1px 0 !important;
}

.tool-content p {
    font-size: 0.7rem !important;
    color: #666 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
}

.tool-listings .container {
    padding: 0 15px !important;
    max-width: 1500px !important;
}

.tool-listings h2 {
    margin-bottom: 15px !important;
    font-size: 1.2rem !important;
    padding-bottom: 6px !important;
    border-bottom: 1px solid #eee !important;
}

.tool-listings h2:after {
    display: none !important;
} 