.rep-counter {
    --rep-accent: #7a0207;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #1c1c1c;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    font: inherit;
}

.rep-counter__icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: var(--rep-accent);
    overflow: visible;
}

.rep-counter__icon svg,
.rep-counter__icon img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.rep-counter__content {
    min-width: 0;
}

.rep-counter__title {
    margin: 0 0 3px;
    font-size: 0.98em;
    line-height: 1.25;
    font-weight: 700;
}

.rep-counter__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    font-size: 0.88em;
    line-height: 1.4;
    opacity: 0.86;
}

.rep-counter__stat strong {
    margin-left: 3px;
    color: #7a0207 !important;
    font-size: 1.1em;
    font-weight: 800;
}

.rep-counter__divider {
    opacity: 0.45;
}

.rep-footer-wrap {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px 20px;
}

.rep-footer-wrap.rep-align-left {
    justify-content: flex-start;
}

.rep-footer-wrap.rep-align-center {
    justify-content: center;
}

.rep-footer-wrap.rep-align-right {
    justify-content: flex-end;
}

.rep-counter-align-left {
    display: flex;
    width: max-content;
    margin-right: auto;
}

.rep-counter-align-center {
    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.rep-counter-align-right {
    display: flex;
    width: max-content;
    margin-left: auto;
}

@media (max-width: 480px) {
    .rep-counter {
        gap: 10px;
        padding: 10px 12px;
    }

    .rep-counter__icon {
        flex-basis: 60px;
        width: 60px;
        height: 60px;
    }

    .rep-counter__divider {
        display: none;
    }

    .rep-counter__stats {
        gap: 3px 10px;
    }
}
