/* ============================================================
   Icon Info Group Widget
   ============================================================ */

.iig-wrap {
    display: flex;
    flex-wrap: nowrap;       /* 始终一行，手机端也保持三列 */
    align-items: stretch;
    width: 100%;
}

/* ── Item ──────────────────────────────────────────────────── */
.iig-item {
    flex: 1 1 0;
    position: relative;      /* ::before 定位基准 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

/* ── 分隔线：::before 伪元素，高度可控 ─────────────────────── */
.iig-wrap--divider .iig-item + .iig-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;              /* 默认 60%，可在面板中覆盖 */
    background-color: #dddddd;
    pointer-events: none;
}

/* ── Icon / Image ──────────────────────────────────────────── */
.iig-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5f;
}

.iig-icon i {
    font-size: 36px;
    line-height: 1;
    color: inherit;
}

.iig-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.iig-icon img {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
}

/* ── Text block ────────────────────────────────────────────── */
.iig-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.iig-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.3;
}

.iig-subtitle {
    display: block;
    font-size: 13px;
    color: #888888;
    line-height: 1.4;
}

/* ── Mobile：保持三列，缩小内边距和图标 ─────────────────────── */
@media (max-width: 767px) {
    .iig-item {
        padding: 12px 8px;
        gap: 8px;
        justify-content: flex-start;
    }

    .iig-icon i {
        font-size: 24px;
    }

    .iig-icon svg,
    .iig-icon img {
        width: 24px;
        height: 24px;
    }

    .iig-title {
        font-size: 12px;
    }

    .iig-subtitle {
        font-size: 11px;
    }
}
