/*==========================================================
Section : Trust Panel
Version : 2.0
Author  : Erwin Echon
==========================================================*/
.mbi-hero-trust {
    position: relative;
    margin-top: -1rem;
    margin-bottom: 4rem;
    z-index: 5;
}

/* ==========================================================
   Panel
========================================================== */
.mbi-trust-panel {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(15,23,42,.08),
        0 2px 10px rgba(15,23,42,.05);
}

/* ==========================================================
   Grid
========================================================== */
.mbi-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================
   Card
========================================================== */
.mbi-trust-item {
    position: relative;
    padding: 3rem 2.25rem;
    text-align: center;
    transition: all .35s ease;
    background: transparent;

}

.mbi-trust-item:hover .mbi-trust-icon {
    transform: translateY(-4px);
}

.mbi-trust-item:not(:last-child) {
    border-right: 1px solid rgba(0, 45, 172, 0.08);
}

.mbi-trust-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.55);
}

/* ==========================================================
   Featured Card
========================================================== */
.mbi-trust-featured {
    background:
        linear-gradient(
            180deg,
            rgba(4,120,99,.05),
            rgba(4,120,99,.12)
        );
}

.mbi-trust-featured:hover {
    background: linear-gradient(135deg,
            rgba(4, 120, 99, .10),
            rgba(4, 120, 99, .18));
}

/* ==========================================================
   Icon
========================================================== */
.mbi-trust-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(0,45,172,.08);
    color: var(--mbi-primary);
    font-size: 2rem;
    transition: all .35s ease;
}

.mbi-trust-featured .mbi-trust-icon {
    background: rgba(4, 120, 99, .12);
    color: var(--mbi-secondary);
}

/* ==========================================================
   Typography
========================================================== */
.mbi-trust-value {
    margin-bottom: .5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mbi-primary);
}

.mbi-trust-featured .mbi-trust-value {
    font-size: 2rem;
    letter-spacing: .08em;
    color: var(--mbi-secondary);
}

.mbi-trust-title {
    margin-bottom: .75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--mbi-heading-color);
}

.mbi-trust-description {
    margin: 0;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--mbi-text-light);
}