    .mvp-vdept-page {
        max-width: 1300px;
        margin: 0 auto;
        padding: 30px 20px 60px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }
    .mvp-vdept-header {
        margin-bottom: 35px;
        padding-bottom: 25px;
        border-bottom: 2px solid #f0f0f0;
    }
    .mvp-vdept-breadcrumb {
        font-size: 14px;
        color: #aaa;
        margin-bottom: 8px;
    }
    .mvp-vdept-breadcrumb a { color: #034C8C; text-decoration: none; }
    .mvp-vdept-breadcrumb a:hover { color: #F29F05; }
    .mvp-vdept-header h1 {
        font-size: 28px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 4px;
    }
    .mvp-vdept-header .mvp-vdept-subtitle {
        font-size: 15px;
        color: #666;
        margin: 0;
    }
    .mvp-vdept-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
    }
    .mvp-vdept-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 22px 20px;
        text-decoration: none;
        color: #1a1a2e;
        transition: transform 0.25s, box-shadow 0.25s;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .mvp-vdept-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.09);
        border-color: #034C8C;
    }
    .mvp-vdept-card-name {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a2e;
    }
    .mvp-vdept-card-count {
        font-size: 13px;
        color: #034C8C;
        font-weight: 600;
    }
    .mvp-vdept-card-img {
        width: 100%;
        height: 150px;
        background: #f5f5f5;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .mvp-vdept-card-img img {
        max-width: 90%;
        max-height: 130px;
        object-fit: contain;
    }
    .mvp-vdept-card.has-img {
        padding: 12px 12px 18px;
    }
    @media (max-width: 600px) {
        .mvp-vdept-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    }
    .mvp-vehicle-notice {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        background: #f0f5ff;
        border: 1px solid #c7d9f7;
        border-radius: 8px;
        padding: 12px 18px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }
    .mvp-vehicle-notice-text {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
    }
    .mvp-vehicle-notice-text strong {
        color: #1a1a2e;
    }
    .mvp-vehicle-notice-change {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        background: #BF3617;
        border-radius: 6px;
        padding: 7px 16px;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
        cursor: pointer;
        border: none;
    }
    .mvp-vehicle-notice-change:hover {
        background: #a82e13;
        color: #fff;
    }
    .mvp-vehicle-notice-change.mvp-view-all {
        background: #BF3617;
    }
    .mvp-vehicle-notice-change.mvp-view-all:hover {
        background: #a82e13;
    }
    
