.hbc-mission {
    /* background: #ededed; */
    padding: 34px 24px 30px;
}

.hbc-mission-grid {
    max-width: inherit;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 60px;
}

.hbc-mission-card {
    text-align: center;
}

.hbc-mission-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--hbc-mission-icon-bg, #3f7fe0);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hbc-mission-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.hbc-mission-icon-fallback {
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1;
}

.hbc-mission-title {
    margin: 0 0 10px;
    color: #2f2f2f;
    font-size: clamp(1.12rem, 1.35vw, 1.5rem);
    font-weight: 700;
}

.hbc-mission-description {
    margin: 0 auto;
    max-width: 300px;
    color: #5a5a5a;
    font-size: 1.02rem;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .hbc-mission-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hbc-mission {
        padding: 24px 14px;
    }

    .hbc-mission-grid {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }
}
