.advantage-detail {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    border-left: 5px solid var(--primary);
}

.advantage-detail:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.stat-badge {
    background: rgba(217, 161, 59, 0.12);
    border-radius: 60px;
    padding: 0.3rem 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* 强制手机端垂直排列，覆盖任何冲突样式 */
@media (max-width: 576px) {

    /* 针对目标容器，使用超高优先级选择器 */
    .bg-light .d-flex.justify-content-between {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        flex-wrap: nowrap !important;
    }

    .bg-light .d-flex.justify-content-between>div {
        width: 100% !important;
        text-align: center !important;
        flex: none !important;
    }

    .bg-light .stat-badge {
        display: inline-block !important;
        white-space: nowrap !important;
        font-size: 0.9rem !important;
        padding: 0.3rem 1rem !important;
        background: rgba(217, 161, 59, 0.12) !important;
        border-radius: 60px !important;
    }

    .bg-light .d-flex.justify-content-between h3 {
        white-space: nowrap !important;
        font-size: 1.2rem !important;
        margin-top: 0.5rem !important;
    }
}
