/* 更多工具容器 */
.more-category-wrapper {
    margin-bottom: 30px;
}

.category-header {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 网格布局：PC端3列，平板2列，手机1列 */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* 单个卡片样式 */
.modern-tool-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
}

.modern-tool-item:hover {
    background: #fff;
    border-color: #3b82f6; /* 主题蓝 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* 图标盒子 */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* 颜色方案 */
.icon-box.purple { background: #f5f3ff; color: #7c3aed; }
.icon-box.blue   { background: #eff6ff; color: #3b82f6; }
.icon-box.orange { background: #fff7ed; color: #ea580c; }

/* 文字信息 */
.tool-info {
    display: flex;
    flex-direction: column;
}

.tool-info b {
    color: #333;
    font-size: 15px;
    margin-bottom: 2px;
}

.tool-info span {
    color: #888;
    font-size: 12px;
}