.standards-section {
    padding: 150px 0;
    background: #f5f5f5;
}

.standards-head {
    display: grid;
    gap: 35px;
    margin: 0 auto 65px;
    justify-items: center;
    text-align: center;
}

.standards-title {
    font-size: var(--f48);
    font-weight: 700;
}

.standards-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 20px auto 0;
    background: var(--gm-theme);
}

.standards-copy {
    max-width: 1170px;
    color: #888;
    font-size: var(--f16);
    line-height: 1.7;
    font-weight: 500;
}

.standards-copy p,
.standards-richtext p {
    margin: 0;
    text-align: center;
}

.standards-body {
    display: grid;
    gap: 30px;
}

.standards-card {
    overflow: hidden;

    background: #edf3f8;
    box-shadow: 0 6px 18px rgba(15, 39, 66, 0.06);
}

.standards-card-title {
    padding: 15px 0;
    background: var(--gm-theme);
    color: #fff;
    font-size: var(--f16);
    text-align: center;
    border-radius: 12px;
}

.standards-card-body {
    display: grid;
    gap: 30px;
    padding: 30px 25px;
    border: 1px solid #d4dde4;
    border-radius: 12px;
}

.standards-card-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gm-theme);
}

.standards-progress-list {
    display: grid;
    gap: 18px;
}

.standards-progress-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.standards-progress-label {
    flex: 0 0 auto;
    color: #1f1f1f;
    font-size: var(--f16);
    ;
    font-weight: 600;
    width: 80px;
}

.standards-progress-track {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.standards-progress-bar {
    width: 100%;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    /* background: rgba(18, 55, 71, 0.08); */
}

.standards-progress-bar.is-primary {
    background: var(--gm-theme);
}

.standards-progress-bar.is-muted {
    /* background: rgba(31, 31, 31, 0.12); */
}

.standards-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--gm-theme);
}

.standards-progress-bar.is-muted span {
    background: #9a9a9a;
}

.standards-progress-bar span.is-90 {
    width: 90%;
}

.standards-progress-bar span.is-70 {
    width: 70%;
}

.standards-progress-value {
    flex: 0 0 auto;
    min-width: 84px;
    color: #1f1f1f;
    font-size: var(--f40);
    font-family: 'DIN';
    font-weight: 700;
    text-align: right;
}

.standards-progress-value small {
    font-size: var(--f16);
    font-weight: 600;
}

.standards-icon-media {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standards-icon-media img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.standards-icon-title {
    color: #1f1f1f;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 1200px) {

    .standards-body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 500px) {

    .standards-card-body {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .standards-card-icon {
        padding: 0 24px 0 0;
        border-bottom: 0;
        border-right: 1px solid var(--gm-theme);
    }
}