/* =========================================
   maintenance-projects.css
   Page-specific styles for Maintenance page
   ========================================= */

.infra-block-title {
    margin: 8px 0 16px;
    padding-top: 10px;
    border-top: 1px solid #e6ecee;
}

.infra-h3 {
    font-weight: 800;
    margin-bottom: 6px;
}

/* Project cards */
.project-card {
    border: 1px solid #dce4e6;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 18px;
    background: #fff;
}

.project-card h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 800;
}

.project-badges {
    margin-bottom: 10px;
}

.project-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    background: #f1f4f5;
    color: #31373a;
    margin-right: 8px;
    margin-bottom: 8px;
}

.project-meta {
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-meta li {
    padding: 6px 0;
    border-bottom: 1px dashed #e6ecee;
}

.project-meta li:last-child {
    border-bottom: none;
}

.project-meta strong {
    display: inline-block;
    width: 86px;
    color: #31373a;
}


/* =========================================
   FIX: Badge list bullets + alignment (Maintenance)
   ========================================= */

.maintenance-page .badge-list,
.badge-list {
    list-style: none !important;
    margin: 18px auto 0 !important;
    padding: 0 !important;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    max-width: 920px;
}

.maintenance-page .badge-list li,
.badge-list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 8px 12px;

    border: 1px solid #e6ecee;
    border-radius: 999px;
    background: #fff;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #31373a;
}

.maintenance-page .badge-list li i,
.badge-list li i {
    color: #c81f25;
}

/* Optional: also clean checklist bullets everywhere */
.maintenance-page .checklist,
.checklist {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 12px 0 0;
}