.pb-card-icon-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 48px 0;
}

.pb-card-icon-section__intro {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.pb-card-icon-section__title {
    margin: 0;
    color: #0b0e21;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
}

.pb-card-icon-section__subtitle {
    margin: 0;
    color: #242845;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.25px;
}

.pb-card-icon-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.pb-card-icon-section__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    padding: 16px;
    border: 1px solid #d8dae3;
    border-radius: 12px;
    background: #fff;
}

.pb-card-icon-section__icon-wrap {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--brand-color-primary-acf, #dd2321);
}

.pb-card-icon-section__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.pb-card-icon-section__icon-fallback {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 4px;
}

.pb-card-icon-section__content {
    min-width: 0;
}

.pb-card-icon-section__card-title {
    margin: 0 0 4px;
    color: var(--brand-color-primary-acf, #dd2321);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.pb-card-icon-section__card-description {
    margin: 0;
    color: #242845;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.25px;
}

@media screen and (max-width: 1023px) {
    .pb-card-icon-section {
        margin: 24px 0;
    }

    .pb-card-icon-section__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .pb-card-icon-section__card {
        gap: 12px;
        flex-direction: column;
    }

    .pb-card-icon-section__icon-wrap {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .pb-card-icon-section__icon,
    .pb-card-icon-section__icon-fallback {
        width: 18px;
        height: 18px;
    }
}

section.about-us .pb-card-icon-section .container {
    padding: 0;
}
