/* =========================================
   infrastructure-projects.css (FIXED)
   - Removes awkward bullets
   - Centers badge list
   - Improves spacing / readability
   ========================================= */

/* Give page consistent spacing like other pages */
.infra-page {
    margin-top: 90px;
    margin-bottom: 90px;
}

/* Fix the badge list (your screenshot shows default UL bullets on the left) */
.badge-list {
    list-style: none !important;
    margin: 22px auto 0;
    padding: 0 !important;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    max-width: 900px;
}


#infrastructureProjects {
    background-image: url("images/infrastructure-bg-light.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.badge-list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 8px 12px;
    border: 1px solid #e6ecee;
    border-radius: 999px;
    background: #fff;

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

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

.badge-list li i {
    color: #c81f25;
    /* matches red-scheme */
}

/* Soft cards */
.card-soft {
    border: 1px solid #dce4e6;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

.card-soft h4 {
    margin-top: 0;
    font-weight: 800;
}

/* Checklist inside soft cards */
.checklist {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 12px 0 0;
}

.checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.checklist li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: #c81f25;
}

/* Section title spacing */
.section-header {
    padding: 0 0 18px;
    text-align: center;
}

.section-header .page-lead {
    max-width: 900px;
    margin: 0 auto;
}

/* Featured block title */
.infra-block-title {
    margin: 10px 0 16px;
    padding-top: 10px;
    border-top: 1px solid #e6ecee;
    text-align: left;
}

.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 !important;
}

.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;
}

/* CTA strip spacing */
.cta-strip {
    margin-top: 18px;
    border: 1px solid #dce4e6;
    border-radius: 10px;
    padding: 18px;
    background: #fff;
}

/* Mobile tweaks */
@media (max-width: 767px) {
    .infra-page {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .badge-list {
        justify-content: center;
    }

    .project-meta strong {
        width: 78px;
    }
}