.fr-stats-bar {
    background-color: transparent;
    color: #fff;
    padding: 38px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}
.fr-stats-bar.has-bg::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(226, 31, 38, .82);
}
.fr-stats-bar__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

.fr-stats-bar__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(var(--fr-stats-cols, 3), 1fr);
    gap: 24px;
    align-items: start;
    width: 100%;
}
.fr-stats-bar__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 6px 16px;
    position: relative;
    text-align: center;
}
.fr-stats-bar__item + .fr-stats-bar__item::before {
    content: "";
    position: absolute;
    left: 0; top: 18%; bottom: 18%;
    width: 1px;
    background: rgba(255,255,255,.25);
}
.fr-stats-bar__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fr-stats-bar__icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}
.fr-stats-bar__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
}
.fr-stats-bar__number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.01em;
    margin-bottom: 12px;
}
.fr-stats-bar__label,
.fr-stats-bar__desc {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    max-width: 14ch;
}

@media (max-width: 760px) {
    .fr-stats-bar__grid { grid-template-columns: 1fr; }
    .fr-stats-bar__item + .fr-stats-bar__item::before { display: none; }
    .fr-stats-bar__item { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); }
    .fr-stats-bar__item:first-child { border-top: 0; }
    .fr-stats-bar__icon img { width: 80px; height: 80px; }
}
