/* =========================================================
   ASCENDANCY — page-scoped CSS
   File: /home/mysticbloodsl/portal/public/css/ascendancy.css

   Canon:
   - Houses visual language
   - leaderboard structure like provided screenshots
   - multilanguage ready
   - no inline CSS
   - page-scoped only
========================================================= */

body.mbp-ascendancy{
    --mbp-asc-max: 1280px;
    --mbp-asc-gold: rgba(230, 195, 105, 0.98);
    --mbp-asc-gold-soft: rgba(230, 195, 105, 0.84);
    --mbp-asc-text: rgba(235, 238, 246, 0.88);
    --mbp-asc-text-soft: rgba(235, 238, 246, 0.66);
    --mbp-asc-line: rgba(130, 130, 255, 0.14);
    --mbp-asc-line-strong: rgba(130, 130, 255, 0.22);
    --mbp-asc-panel: rgba(8, 8, 14, 0.56);
    --mbp-asc-panel-2: rgba(10, 12, 22, 0.58);
    --mbp-asc-search: rgba(4, 6, 12, 0.72);
    --mbp-asc-chip: rgba(255,255,255,0.04);
    --mbp-asc-chip-active: rgba(214, 183, 104, 0.12);
    --mbp-asc-red: rgba(191, 62, 47, 0.92);
}

body.mbp-ascendancy main.mbp-main > .wrap{
    max-width: var(--mbp-asc-max);
}

/* ---------------------------------------------------------
   PAGE SHELL
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-page{
    width: 100%;
    max-width: 100%;
    margin: 0 0 96px;
}

body.mbp-ascendancy .mbp-asc-shell{
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 26px;
}

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-hero{
    text-align: center;
    margin: 0 auto 26px;
}

body.mbp-ascendancy .mbp-asc-hero.panel.accent-glow{
    margin-bottom: 12px;
    padding-top: 18px;
    padding-bottom: 14px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(2px);
}

body.mbp-ascendancy .mbp-asc-hero.panel.accent-glow::before,
body.mbp-ascendancy .mbp-asc-hero.panel.accent-glow::after{
    display: none;
}

body.mbp-ascendancy .mbp-asc-title-row{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    max-width: 100%;
}

body.mbp-ascendancy .mbp-asc-title-ico{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mbp-asc-gold);
    opacity: 0.96;
    transform: translateY(-2px);
}

body.mbp-ascendancy .mbp-asc-title-ico .mbp-ico{
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
}

body.mbp-ascendancy .mbp-asc-title{
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: clamp(2.35rem, 4vw, 3.65rem);
    line-height: 0.98;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: var(--mbp-asc-gold);
    text-shadow:
        0 0 7px rgba(210, 165, 60, 0.06),
        0 0 16px rgba(210, 165, 60, 0.04);
}

body.mbp-ascendancy .mbp-asc-subtitle{
    max-width: 620px;
    margin: 8px auto 0;
    color: rgba(235,238,246,0.68);
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: center;
}

/* ---------------------------------------------------------
   TOP CATEGORY TABS
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-topnav-panel,
body.mbp-ascendancy .mbp-asc-board-panel{
    position: relative;
}

body.mbp-ascendancy .mbp-asc-topnav-panel.panel.accent-glow,
body.mbp-ascendancy .mbp-asc-board-panel.panel.accent-glow{
    backdrop-filter: blur(2px);
    background:
        linear-gradient(180deg, rgba(8,10,20,0.80), rgba(7,8,16,0.82)),
        radial-gradient(circle at top center, rgba(84, 72, 160, 0.08), transparent 55%);
    border: 1px solid rgba(104, 88, 190, 0.18);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.02);
}

body.mbp-ascendancy .mbp-asc-topnav-panel::after,
body.mbp-ascendancy .mbp-asc-board-panel::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

body.mbp-ascendancy .mbp-asc-topnav-panel{
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(9,11,20,0.84), rgba(7,9,16,0.84));
    border-color: rgba(96, 84, 176, 0.16);
}

body.mbp-ascendancy .mbp-asc-topnav{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}

body.mbp-ascendancy .mbp-asc-topnav-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.045);
    background: rgba(255,255,255,0.01);
    color: rgba(255,255,255,0.70);
    font-family: "Cinzel", serif;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    text-transform: none;
    white-space: nowrap;
    box-shadow: none;
    transition:
        color .16s ease,
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease,
        transform .16s ease;
}

body.mbp-ascendancy .mbp-asc-topnav-link .mbp-ico{
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    opacity: 0.92;
}

body.mbp-ascendancy .mbp-asc-topnav-link:hover{
    color: rgba(255,255,255,0.90);
    background: rgba(255,255,255,0.025);
    border-color: rgba(214,183,104,0.14);
}

body.mbp-ascendancy .mbp-asc-topnav-link.is-active{
    color: var(--mbp-asc-gold);
    border-color: rgba(214,183,104,0.18);
    background:
        linear-gradient(180deg, rgba(214,183,104,0.09), rgba(214,183,104,0.035));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

/* ---------------------------------------------------------
   MAIN BOARD PANEL
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-board-panel{
    overflow: hidden;
    padding: 16px 16px 14px;
    border-radius: 18px;
}

body.mbp-ascendancy .mbp-asc-board{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.mbp-ascendancy .mbp-asc-board-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

body.mbp-ascendancy .mbp-asc-board-titlewrap{
    min-width: 0;
    flex: 1 1 auto;
}

body.mbp-ascendancy .mbp-asc-board-titleline{
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

body.mbp-ascendancy .mbp-asc-board-ico{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    border-radius: 9px;
    color: var(--mbp-asc-gold);
    background: rgba(214,183,104,0.10);
    border: 1px solid rgba(214,183,104,0.16);
    flex: 0 0 auto;
}

body.mbp-ascendancy .mbp-asc-board-ico .mbp-ico{
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
}

body.mbp-ascendancy .mbp-asc-board-title{
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: clamp(1.15rem, 1.65vw, 1.6rem);
    line-height: 1.08;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: var(--mbp-asc-gold);
}

body.mbp-ascendancy .mbp-asc-board-copy{
    margin: 3px 0 0 50px;
    color: rgba(235,238,246,0.56);
    font-size: 0.84rem;
    line-height: 1.45;
}

body.mbp-ascendancy .mbp-asc-board-actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

/* ---------------------------------------------------------
   FILTER CHIPS
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-chip{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.018);
    color: rgba(255,255,255,0.68);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition:
        color .16s ease,
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease;
}

body.mbp-ascendancy .mbp-asc-chip:hover{
    color: rgba(255,255,255,0.90);
    border-color: rgba(214,183,104,0.20);
}

body.mbp-ascendancy .mbp-asc-chip.is-active{
    color: var(--mbp-asc-gold);
    border-color: rgba(214,183,104,0.18);
    background:
        linear-gradient(180deg, rgba(214,183,104,0.11), rgba(214,183,104,0.04));
}

body.mbp-ascendancy .mbp-asc-chip--danger{
    color: rgba(239, 115, 96, 0.96);
    border-color: rgba(191, 62, 47, 0.30);
    background: rgba(191, 62, 47, 0.08);
}

body.mbp-ascendancy .mbp-asc-chip--danger:hover{
    color: rgba(255, 148, 131, 0.98);
    border-color: rgba(191, 62, 47, 0.42);
}

/* ---------------------------------------------------------
   SEARCH BAR
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-search{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(96, 84, 176, 0.20);
    background:
        linear-gradient(180deg, rgba(10,13,22,0.92), rgba(8,10,18,0.92));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 4px 14px rgba(0,0,0,0.10);
}

body.mbp-ascendancy .mbp-asc-search-inputwrap{
    position: relative;
    min-width: 0;
}

body.mbp-ascendancy .mbp-asc-search-ico{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.28);
    pointer-events: none;
}

body.mbp-ascendancy .mbp-asc-search-ico .mbp-ico{
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
}

body.mbp-ascendancy .mbp-asc-search-input{
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 16px 0 38px;
    border: 0;
    outline: none;
    background: var(--mbp-asc-search);
    color: rgba(240,243,248,0.88);
    font-size: 0.90rem;
}

body.mbp-ascendancy .mbp-asc-search-input::placeholder{
    color: rgba(255,255,255,0.30);
}

body.mbp-ascendancy .mbp-asc-search-input:focus{
    box-shadow: inset 0 0 0 1px rgba(214,183,104,0.22);
}

body.mbp-ascendancy .mbp-asc-search-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
    height: 46px;
    padding: 0 15px;
    border: 0;
    border-left: 1px solid rgba(96, 84, 176, 0.16);
    background: rgba(14, 12, 24, 0.94);
    color: var(--mbp-asc-gold);
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition:
        color .16s ease,
        background .16s ease,
        box-shadow .16s ease;
}

body.mbp-ascendancy .mbp-asc-search-submit .mbp-ico{
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
}

body.mbp-ascendancy .mbp-asc-search-submit:hover{
    background: rgba(18, 15, 30, 0.96);
    color: rgba(255, 229, 147, 0.98);
}

/* ---------------------------------------------------------
   LEADERBOARD LIST
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-list{
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(5,8,16,0.20);
    border: 1px solid rgba(104, 88, 190, 0.10);
}

body.mbp-ascendancy .mbp-asc-row{
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0;
    border-top: 1px solid rgba(86, 78, 145, 0.12);
    transition: background .14s ease, border-color .14s ease;
}

body.mbp-ascendancy .mbp-asc-row:first-child{
    border-top: 0;
}

body.mbp-ascendancy .mbp-asc-row:hover{
    background: rgba(255,255,255,0.015);
    border-top-color: rgba(214,183,104,0.10);
}

body.mbp-ascendancy .mbp-asc-rankcell{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

body.mbp-ascendancy .mbp-asc-rank{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.74);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

body.mbp-ascendancy .mbp-asc-rank.is-1{
    background: linear-gradient(180deg, rgba(248, 196, 49, 0.96), rgba(214, 149, 19, 0.92));
    border-color: rgba(255, 210, 92, 0.58);
    color: rgba(19, 14, 3, 0.94);
    box-shadow: 0 0 14px rgba(214, 149, 19, 0.16);
}

body.mbp-ascendancy .mbp-asc-rank.is-2{
    background: linear-gradient(180deg, rgba(204, 212, 224, 0.96), rgba(140, 149, 166, 0.92));
    border-color: rgba(222, 231, 241, 0.32);
    color: rgba(17, 19, 23, 0.92);
    box-shadow: 0 0 12px rgba(160, 175, 198, 0.14);
}

body.mbp-ascendancy .mbp-asc-rank.is-3{
    background: linear-gradient(180deg, rgba(222, 112, 38, 0.96), rgba(164, 74, 18, 0.92));
    border-color: rgba(236, 151, 89, 0.34);
    color: rgba(25, 10, 4, 0.92);
    box-shadow: 0 0 12px rgba(194, 88, 24, 0.14);
}

body.mbp-ascendancy .mbp-asc-namecell{
    min-width: 0;
    padding-right: 10px;
}

body.mbp-ascendancy .mbp-asc-name{
    display: block;
    color: var(--mbp-asc-text);
    font-size: 0.86rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.mbp-ascendancy .mbp-asc-name a{
    display: inline-block;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
    transition: color .16s ease, text-shadow .16s ease;
}

body.mbp-ascendancy .mbp-asc-name a:hover{
    color: rgba(255,255,255,0.98);
    text-shadow: 0 0 10px rgba(214,183,104,0.14);
}

body.mbp-ascendancy .mbp-asc-scorecell{
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: 98px;
    padding-right: 10px;
    white-space: nowrap;
}

body.mbp-ascendancy .mbp-asc-score{
    color: var(--mbp-asc-gold);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
}

body.mbp-ascendancy .mbp-asc-unit{
    color: rgba(255,255,255,0.42);
    font-size: 0.69rem;
    line-height: 1;
    min-width: auto;
    opacity: 0.66;
}

/* ---------------------------------------------------------
   FOOTER / PAGINATION
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-board-foot{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 8px;
}

body.mbp-ascendancy .mbp-asc-pageinfo{
    text-align: center;
    color: rgba(255,255,255,0.62);
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

body.mbp-ascendancy .mbp-asc-pagination{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 14px;
    border: 1px solid rgba(96, 84, 176, 0.16);
    background: rgba(8, 10, 18, 0.56);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 8px 20px rgba(0,0,0,0.14);
}

body.mbp-ascendancy .mbp-asc-pagebtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.70);
    font-size: 0.76rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    transition:
        color .16s ease,
        border-color .16s ease,
        background .16s ease;
}

body.mbp-ascendancy .mbp-asc-pagebtn:hover{
    color: rgba(255,255,255,0.92);
    border-color: rgba(214,183,104,0.20);
}

body.mbp-ascendancy .mbp-asc-pagebtn.is-active{
    min-width: 38px;
    color: var(--mbp-asc-text);
    border-color: rgba(120, 102, 218, 0.42);
    background:
        linear-gradient(180deg, rgba(98, 82, 180, 0.26), rgba(74, 60, 148, 0.20));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 0 1px rgba(120, 102, 218, 0.10);
}

body.mbp-ascendancy .mbp-asc-pagebtn.is-disabled{
    opacity: 0.55;
    pointer-events: none;
}

/* ---------------------------------------------------------
   EMPTY STATE
--------------------------------------------------------- */

body.mbp-ascendancy .mbp-asc-empty{
    padding: 30px 10px 14px;
    text-align: center;
    color: rgba(235,238,246,0.58);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 980px){
    body.mbp-ascendancy .mbp-asc-shell{
        max-width: 100%;
        padding-top: 20px;
    }

    body.mbp-ascendancy .mbp-asc-board-head{
        flex-direction: column;
        align-items: stretch;
    }

    body.mbp-ascendancy .mbp-asc-board-actions{
        justify-content: flex-start;
    }

    body.mbp-ascendancy .mbp-asc-topnav-panel,
    body.mbp-ascendancy .mbp-asc-board-panel{
        border-radius: 16px;
    }
}

@media (max-width: 760px){
    body.mbp-ascendancy .mbp-asc-page{
        margin-bottom: 92px;
    }

    body.mbp-ascendancy .mbp-asc-shell{
        padding-top: 38px;
    }

    body.mbp-ascendancy .mbp-asc-title{
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    body.mbp-ascendancy .mbp-asc-title-row{
        gap: 10px;
    }

    body.mbp-ascendancy .mbp-asc-title-ico .mbp-ico{
        width: 20px;
        height: 20px;
    }

    body.mbp-ascendancy .mbp-asc-hero{
        padding-top: 28px;
        padding-bottom: 28px;
    }

    body.mbp-ascendancy .mbp-asc-topnav{
        justify-content: stretch;
    }

    body.mbp-ascendancy .mbp-asc-topnav-panel{
        padding: 10px;
    }

    body.mbp-ascendancy .mbp-asc-topnav-link{
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
    }

    body.mbp-ascendancy .mbp-asc-board-panel{
        padding: 14px 12px 12px;
    }

    body.mbp-ascendancy .mbp-asc-board{
        gap: 20px;
    }

    body.mbp-ascendancy .mbp-asc-board-copy{
        margin-left: 0;
    }

    body.mbp-ascendancy .mbp-asc-search{
        grid-template-columns: 1fr;
    }

    body.mbp-ascendancy .mbp-asc-search-submit{
        width: 100%;
        min-width: 0;
        border-left: 0;
        border-top: 1px solid rgba(130,130,255,0.12);
    }

    body.mbp-ascendancy .mbp-asc-row{
        grid-template-columns: 40px minmax(0, 1fr) auto;
        min-height: 52px;
        gap: 10px;
    }

    body.mbp-ascendancy .mbp-asc-name{
        font-size: 0.90rem;
    }

    body.mbp-ascendancy .mbp-asc-scorecell{
        min-width: 0;
        padding-right: 6px;
    }

    body.mbp-ascendancy .mbp-asc-score{
        font-size: 0.90rem;
    }

    body.mbp-ascendancy .mbp-asc-unit{
        font-size: 0.76rem;
    }
}

@media (max-width: 520px){
    body.mbp-ascendancy .mbp-asc-shell{
        padding-top: 34px;
    }

    body.mbp-ascendancy .mbp-asc-hero{
        padding-top: 18px;
        padding-bottom: 14px;
    }

    body.mbp-ascendancy .mbp-asc-title{
        letter-spacing: 0.06em;
    }

    body.mbp-ascendancy .mbp-asc-title-row{
        gap: 10px;
    }

    body.mbp-ascendancy .mbp-asc-subtitle{
        font-size: 0.86rem;
        line-height: 1.7;
    }

    body.mbp-ascendancy .mbp-asc-topnav-link{
        width: 100%;
        justify-content: flex-start;
    }

    body.mbp-ascendancy .mbp-asc-board-titleline{
        align-items: flex-start;
    }

    body.mbp-ascendancy .mbp-asc-board-title{
        font-size: 1.04rem;
        line-height: 1.08;
    }

    body.mbp-ascendancy .mbp-asc-board-ico{
        width: 34px;
        height: 34px;
    }

    body.mbp-ascendancy .mbp-asc-chip{
        flex: 1 1 auto;
    }

    body.mbp-ascendancy .mbp-asc-row{
        grid-template-columns: 40px minmax(0, 1fr) auto;
        min-height: 54px;
    }

    body.mbp-ascendancy .mbp-asc-rank{
        width: 27px;
        height: 27px;
        font-size: 0.72rem;
    }

    body.mbp-ascendancy .mbp-asc-name{
        font-size: 0.91rem;
    }

    body.mbp-ascendancy .mbp-asc-score{
        font-size: 0.88rem;
    }

    body.mbp-ascendancy .mbp-asc-unit{
        font-size: 0.74rem;
    }

    body.mbp-ascendancy .mbp-asc-pageinfo{
        font-size: 0.80rem;
    }

    body.mbp-ascendancy .mbp-asc-pagination{
        width: 100%;
        gap: 6px;
        padding: 8px;
    }

    body.mbp-ascendancy .mbp-asc-pagebtn{
        flex: 1 1 auto;
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    body.mbp-ascendancy .mbp-asc-pagebtn.is-active{
        flex: 0 0 42px;
    }

    body.mbp-ascendancy .mbp-asc-search-input{
        height: 44px;
    }

    body.mbp-ascendancy .mbp-asc-search-submit{
        height: 44px;
    }
}
