/* ================================================================
   TRE – Multi Button Block
   File: assets/css/tre-multibutton.css
   ================================================================ */

.tre-mb {
    background: #0f1f4a;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 28px;
}

.tre-mb__inner {
    padding: 26px 24px 22px 32px;
    color: #ffffff;
}

/* eyebrow */
.tre-mb__eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f0a500;
    margin: 0 0 8px;
}

/* title */
.tre-mb__title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 14px;
    color: #ffffff;
}

/* body text */
.tre-mb__body p {
    font-size: 13px;
    line-height: 1.6;
    color: #c3d1f0;
    margin: 0 0 6px;
}
.tre-mb__body p:last-child {
    margin-bottom: 14px;
}

/* pill row */
.tre-mb__pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

/* pill buttons */
.tre-mb__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #1a2e5a;
    border: 1px solid #233a6f;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}
.tre-mb__pill:hover {
    background: #223872;
}

/* responsive */
@media (max-width: 768px) {
    .tre-mb__inner {
        padding: 20px 16px 18px 22px;
    }
    .tre-mb__title {
        font-size: 16px;
    }
    .tre-mb__pill {
        padding: 7px 12px;
        font-size: 11px;
    }
}
