/*
 * MedichPlus Business Hub
 */

.mplus-business-hub {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    box-sizing: border-box;
}

.mplus-business-hub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 32px;
    margin-bottom: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0b2545 0%, #0f766e 100%);
    color: #fff;
    box-shadow: 0 18px 45px rgba(11, 37, 69, .16);
}

.mplus-business-hub-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    opacity: .82;
}

.mplus-business-hub-header h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.mplus-business-hub-header p {
    margin: 0;
    max-width: 760px;
    line-height: 1.6;
    opacity: .9;
}

.mplus-business-hub-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    font-size: 34px;
}

.mplus-business-hub-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.mplus-business-hub-tab {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    padding: 17px 18px;
    border: 1px solid #e3e9ef;
    border-radius: 16px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mplus-business-hub-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .09);
}

.mplus-business-hub-tab.active {
    border-color: #0f766e;
    box-shadow: 0 10px 28px rgba(15, 118, 110, .12);
}

.mplus-business-hub-tab > span {
    grid-row: 1 / span 2;
    font-size: 25px;
}

.mplus-business-hub-tab strong {
    font-size: 15px;
}

.mplus-business-hub-tab small {
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}

.mplus-business-hub-content {
    min-width: 0;
}

.mplus-business-hub-panel {
    min-width: 0;
}

.mplus-business-hub-panel > .mplus-dashboard,
.mplus-business-hub-panel > .mplus-marketplace,
.mplus-business-hub-panel > .mplus-trade-center {
    width: 100%;
}

@media (max-width: 800px) {
    .mplus-business-hub {
        padding: 18px 12px 40px;
    }

    .mplus-business-hub-header {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .mplus-business-hub-icon {
        display: none;
    }

    .mplus-business-hub-tabs {
        grid-template-columns: 1fr;
    }
}
