.diag-wrapper-4ed2f882 {
    width: 100%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.diag-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #214462;
    margin-bottom: 10px;
    text-align: left;
}

.diag-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    text-align: left;
}

.diag-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.diag-card {
    background: #F8FAFC;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 3 columns top row (6 cols total, so span 2) */
.diag-card:nth-child(1),
.diag-card:nth-child(2),
.diag-card:nth-child(3) {
    grid-column: span 2;
}

/* 2 columns bottom row (6 cols total, so span 3) */
.diag-card:nth-child(4),
.diag-card:nth-child(5) {
    grid-column: span 3;
}

.diag-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #214462;
    margin-top: 0;
    margin-bottom: 6px;
}

.diag-card-subtitle {
    font-family: inherit;
    font-size: 13px;
    color: #777777;
    margin: 0;
}

@media (max-width: 991px) {
    .diag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .diag-card:nth-child(1),
    .diag-card:nth-child(2),
    .diag-card:nth-child(3),
    .diag-card:nth-child(4),
    .diag-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .diag-grid {
        grid-template-columns: 1fr;
    }
}
