/** MUAADH INFO — extracted in Phase 13 Wave 19 (2026-05-13). Single source. */


/* ============================================================================
 * APPENDED (Phase 13 Wave 19): rules pulled from muaadh-core.css
 * ============================================================================ */

.muaadh-info-tile {
    background: var(--surface-card);
    border: var(--chassis-border-thin) solid var(--theme-card-border);
    border-radius: var(--chassis-radius-card);
    box-shadow: var(--chassis-shadow-card-elevated);
    padding: var(--space-6);
    height: 100%;
}

.muaadh-info-tile__title {
    font-size: var(--text-base);
    font-weight: var(--theme-font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: var(--chassis-border-normal) solid var(--theme-primary-light);
    position: relative;
}

.muaadh-info-tile__title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.muaadh-info-tile__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.muaadh-info-tile__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: var(--chassis-border-thin) dashed var(--theme-border-light);
}

.muaadh-info-tile__item:last-child {
    border-bottom: none;
}

.muaadh-info-tile__label {
    flex: 0 0 auto;
    font-weight: var(--theme-font-medium);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.muaadh-info-tile__value {
    flex: 1;
    text-align: end;
    color: var(--text-primary);
    font-size: var(--text-sm);
    font-weight: var(--theme-font-semibold);
    word-break: break-word;
}

