.wcl-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 关键：居中对齐实现对称感 */
    gap: 40px;
    padding: 40px 0;
}

.wcl-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    
    /* Flex 尺寸调整：均匀增长，但尊重限制 */
    flex: 1 1 300px; 
    max-width: 400px; /* 限制最大宽度，防止单行过少时卡片巨大 */
    min-width: 280px;
}

.wcl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.wcl-card-image, .wcl-card-icon {
    width: 100%;
    height: 180px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wcl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wcl-card:hover .wcl-card-image img {
    transform: scale(1.08);
}

.wcl-card-icon {
    font-size: 48px;
    color: #4a5568;
}
.wcl-card-icon svg {
    width: 64px;
    height: 64px;
    fill: currentColor;
}

.wcl-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 增强权重，确保样式覆盖主题默认 */
.wcl-card-container .wcl-card .wcl-card-title {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
}

.wcl-card-content {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
    font-family: inherit;
}

.wcl-card-content p:last-child {
    margin-bottom: 0;
}
