/* ================================================================
   TRE – Icon Button Box
   File: assets/css/tre-icon-buttons.css
   ================================================================ */

.tre-ib {
    background: #ffffff;
    border: 1px solid #e8eef8;
    border-radius: 10px;
    padding: 16px 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 28px;
}

/* optional title */
.tre-ib__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8fadd4;
    margin: 0 0 12px;
}

/* row of buttons */
.tre-ib__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

/* button */
.tre-ib__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 6px;
    background: #f7f9fc;
    border: 1px solid #e8eef8;
    font-size: 12px;
    font-weight: 600;
    color: #0f1f4a;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
    cursor: pointer;
    line-height: 1.2;
}
.tre-ib__btn:hover {
    background: #e8eef8;
    border-color: #c9d4ec;
    color: #2053a5;
}
.tre-ib__btn--static {
    cursor: default;
}
.tre-ib__btn--static:hover {
    background: #f7f9fc;
    border-color: #e8eef8;
    color: #0f1f4a;
}

/* icon */
.tre-ib__icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: #2053a5;
}
.tre-ib__btn:hover .tre-ib__icon {
    color: #2053a5;
}

/* text */
.tre-ib__text {
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .tre-ib { padding: 14px 16px; }
    .tre-ib__btn { font-size: 11px; padding: 8px 12px; }
}
