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

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

/* left vertical accent bar (same as other block) */
.tre-mbl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0f1f4a;
}

.tre-mbl__inner {
    padding: 18px 24px 20px 32px;
    color: #ffffff;
}

/* body text (single paragraph at top) */
.tre-mbl__body p {
    font-size: 13px;
    line-height: 1.6;
    color: #c3d1f0;
    margin: 0 0 16px;
}

/* row of large buttons */
.tre-mbl__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* large pill buttons */
.tre-mbl__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border-radius: 8px;
    background: #1a2e5a;
    border: 1px solid #304272;
    text-decoration: none;
    cursor: pointer;
}

.tre-mbl__btn--static {
    cursor: default;
}

.tre-mbl__label {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

/* hover */
.tre-mbl__btn:not(.tre-mbl__btn--static):hover {
    background: #223872;
}

/* responsive */
@media (max-width: 900px) {
    .tre-mbl__inner {
        padding: 16px 18px 18px 24px;
    }
    .tre-mbl__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .tre-mbl__row {
        grid-template-columns: 1fr;
    }
    .tre-mbl__btn {
        padding: 12px 10px;
    }
    .tre-mbl__label {
        white-space: normal;
    }
}
