.container{
    padding-right: 10px;
    padding-left: 10px;
}
.out-team-match-v1 {
    background-color: #fcfaff;
}
.col-md-6.feature-item:hover {
    background-color: #faf5fe;
}

/* 小标题标签 ADVISOR MATCHING - 板块前置小字标签 */
.section-title-label {
    color: #995a99;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
    margin-bottom: 18px; /* 内部子元素间距统一18px */
    font-size: 15px;
    line-height: 1.5; /* 全局统一行高 */
}
.section-title-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: #ffb347; /* 左侧橙色短横线 */
}

/* 板块主标题 对应网站H2规范：29px / 700 / line-height:1.5 */
.main-heading {
    font-size: 29px;
    line-height: 1.5;
    color: #2d182d;
    white-space: pre-wrap;
    font-weight: 700;
    margin-bottom: 20px; /* 段落标准底部间距 */
}

/* 左侧描述文本 全站正文标准17px line-height:1.5 */
.desc-text {
    font-size: 17px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    color: #554455;
    margin-bottom: 0;
}

/* 右侧四格卡片外层容器 大板块内部gap30规范 */
.feature-card-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(153, 90, 153, 0.08);
    overflow: hidden;
}

/* 单个卡片格子 内部间距18px标准 */
.feature-item {
    padding: 32px;
    border: 1px solid #f4edf4;
}
/* 格子分割边框处理，消除重叠缝隙 */
.feature-card-wrap .row.g-0 > .col-md-6:nth-child(1),
.feature-card-wrap .row.g-0 > .col-md-6:nth-child(2) {
    border-bottom: 1px solid #f4edf4;
}

/* 紫色标签块 REAL/CLEAR/MATCH/CARE */
.tag-box {
    display: inline-block;
    background-color: #995a99;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 18px; /* 内部统一18px间距 */
    font-weight: 500;
    line-height: 1.5;
}

/* 卡片小标题 网站H3规范：22px / 700 / line-height:1.5 */
.feature-title {
    font-size: 22px;
    line-height: 1.5;
    color: #2d182d;
    font-weight: 700;
    margin-bottom: 15px; /* 段落标准底部margin 15px */
}

/* 卡片描述文字 规范小字正文15px line-height:1.5 */
.feature-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #554455;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ===================== 平板适配 768px ~ 991px ===================== */
@media (min-width:768px) and (max-width:991.98px) {
    .out-team-match-v1 {
        padding: 60px 0;
    }
    .main-heading {
        font-size: 27px;
    }
    .feature-item {
        padding: 26px;
    }
    .feature-title {
        font-size: 20px;
    }
}

/* ===================== 手机移动端适配 max-width:767px ===================== */
@media (max-width: 767.98px) {
    .out-team-match-v1 {
        padding: 50px 0;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* 调整容器内边距 */
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    /* 移动端H2缩小适配，仍保持700/1.5行高规范 */
    .main-heading {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 18px;
        text-align: center;
    }

    /* 小标题标签居中显示 */
    .section-title-label {
        text-align: center;
        padding-left: 0;
        display: inline-block;
        margin-bottom: 15px;
    }

    .section-title-label::before {
        display: none;
    }

    /* 左侧描述文本居中显示 */
    .desc-text {
        text-align: center;
        -webkit-line-clamp: 2; /* 固定显示3行 */
        margin-bottom: 30px;
        font-size: 16px;
    }

    .feature-item {
        padding: 24px;
        transition: all 0.3s ease;
    }

    /* 增强卡片悬停效果 */
    .col-md-6.feature-item:hover {
        background-color: #faf5fe;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(153, 90, 153, 0.1);
    }

    /* 手机单列布局，取消左右分割边框，仅保留底部分隔 */
    .feature-card-wrap .row.g-0 > .col-md-6 {
        border-right: none !important;
        border-bottom: 1px solid #f4edf4;
    }

    .feature-card-wrap .row.g-0 > .col-md-6:last-child {
        border-bottom: none;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    /* 调整描述文字显示 */
    .feature-desc {
        font-size: 15px;
        -webkit-line-clamp: 3; /* 移动端减少显示行数 */
    }

    /* 调整标签样式 */
    .tag-box {
        margin-bottom: 15px;
        padding: 5px 12px;
        font-size: 12px;
    }
}
