.services-showcase {
    margin-bottom: 16px;
}

.services-showcase__header {
    text-align: center;
    margin-bottom: 32px;
}

.services-showcase__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
    padding: 0;
    line-height: 1.3;
}

.services-showcase__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* 网格布局 */
.services-showcase__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

/* 服务卡片 */
.services-showcase__item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s ease;
}

.services-showcase__item:hover {
    border-color: var(--theme-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* 图标容器 */
.services-showcase__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-hover);
    color: var(--theme-color);
    fill: var(--theme-color);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.services-showcase__icon svg {
    width: 24px;
    height: 24px;
    color: var(--theme-color);
    fill: var(--theme-color);
    stroke: var(--theme-color);
}

.services-showcase__item:hover .services-showcase__icon {
    background: var(--theme-color);
    color: #fff;
    fill: #fff;
}

.services-showcase__item:hover .services-showcase__icon svg {
    color: #fff;
    fill: #fff;
    stroke: #fff;
}

/* 内容 */
.services-showcase__content {
    flex: 1;
}

.services-showcase__item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.4;
}

.services-showcase__description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* 链接容器 - 让链接靠右 */
.services-showcase__link-wrap {
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
}

.services-showcase__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.services-showcase__link:hover {
    color: var(--color-link-hover);
}

.services-showcase__link svg {
    transition: transform 0.2s ease;
}

.services-showcase__link:hover svg {
    transform: translateX(4px);
}

/* 响应式 */
@media (max-width: 1024px) {
    .services-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-showcase__title {
        font-size: 24px;
    }
    
    .services-showcase__item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .services-showcase__grid {
        grid-template-columns: 1fr;
    }
    
    .services-showcase__header {
        margin-bottom: 24px;
    }
    
    .services-showcase__title {
        font-size: 20px;
    }
    
    .services-showcase__subtitle {
        font-size: 14px;
    }
}
