/* 首页青藤业务板块引导卡片 */

.business-preview {
    margin-top: 14px;
    margin-bottom: 26px;
}

.business-guide-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid #e3f1ea;
    border-radius: 16px;
    text-decoration: none !important;
    color: #1f6f4a;
    box-shadow: 0 3px 12px rgba(31, 111, 74, 0.08);
    transition: box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
    position: relative;
}

.business-guide-card:hover {
    box-shadow: 0 6px 16px rgba(31, 111, 74, 0.16);
    border-color: #cfe9da;
}

.business-guide-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f2fbf6, #e6f5ee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f6f4a;
    margin: 0;
}

.business-guide-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.business-guide-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.business-guide-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1f6f4a;
    line-height: 1.3;
}

.business-guide-desc {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: #6b8077;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.business-guide-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f8f4;
    color: #1f6f4a;
    transition: background .2s ease, color .2s ease;
}

.business-guide-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.business-guide-card:hover .business-guide-arrow {
    background: #1f6f4a;
    color: #ffffff;
}

@media (max-width: 480px) {
    .business-guide-card {
        gap: 14px;
        padding: 16px 18px;
    }
    .business-guide-icon {
        width: 42px;
        height: 42px;
    }
    .business-guide-icon svg {
        width: 22px;
        height: 22px;
    }
    .business-guide-title {
        font-size: 15px;
    }
    .business-guide-desc {
        font-size: 12px;
        white-space: normal;
    }
    .business-guide-arrow {
        width: 28px;
        height: 28px;
    }
}