/* ===== Feature Card Widget ===== */
.elementor-widget-custom_feature_card_widget {
    --cw-fc-cols: 4;
    --cw-fc-gap: 0px;
    --cw-fc-icon-area-h: 60px;
}

.cw-fc-grid {
    display: grid;
    grid-template-columns: repeat(var(--cw-fc-cols, 4), 1fr);
    gap: var(--cw-fc-gap, 0px);
    align-items: stretch;
}

.cw-fc {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

/* ── 图标区域（固定高度，保证标题对齐） ── */
.cw-fc-icon-wrap {
    min-height: var(--cw-fc-icon-area-h, 60px);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* ── 图标 ── */
.cw-fc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cw-fc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: filter 0.3s ease;
}

/* ── 标题 ── */
.cw-fc-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.35;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

/* ── 描述 ── */
.cw-fc-desc {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.65;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

/* ── 右下角数字水印 ── */
.cw-fc-number {
    position: absolute;
    bottom: -16px;
    right: 12px;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: rgba(74, 144, 217, 0.12);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: color 0.3s ease;
}
