.article-usage-stats {
    --aus-navy: #08264d;
    --aus-blue: #1769aa;
    --aus-border: #d7e0ea;
    --aus-surface: #f5f8fb;
    background: #fff;
    border: 1px solid var(--aus-border);
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(8, 38, 77, 0.08);
    margin: 2rem 0 1.25rem;
    overflow: hidden;
}

.article-usage-stats .article-usage-stats__header {
    align-items: center;
    background: var(--aus-navy);
    color: #fff;
    display: flex;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
}

.article-usage-stats .article-usage-stats__header h2 {
    color: inherit;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.article-usage-stats__icon {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
}

.article-usage-stats__icon svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 18px;
}

.article-usage-stats .article-usage-stats__list {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
}

.article-usage-stats .article-usage-stats__metric {
    align-items: center;
    background: var(--aus-surface);
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    min-height: 86px;
    padding: 0.8rem 0.55rem;
    position: relative;
    text-align: center;
}

.article-usage-stats .article-usage-stats__metric + .article-usage-stats__metric::before {
    background: var(--aus-border);
    bottom: 18%;
    content: "";
    left: -1px;
    position: absolute;
    top: 18%;
    width: 1px;
}

.article-usage-stats .article-usage-stats__metric dt,
.article-usage-stats .article-usage-stats__metric dd {
    margin: 0;
}

.article-usage-stats .article-usage-stats__metric dt {
    color: #526273;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1.25;
    text-transform: uppercase;
}

.article-usage-stats .article-usage-stats__metric dd {
    color: var(--aus-blue);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.28rem;
}

.article-usage-stats .article-usage-stats__total {
    background: #edf4fa;
}

.article-usage-stats .article-usage-stats__total dd {
    color: var(--aus-navy);
}

@media (max-width: 520px) {
    .article-usage-stats .article-usage-stats__list {
        grid-template-columns: 1fr;
    }

    .article-usage-stats .article-usage-stats__metric {
        min-height: 70px;
    }

    .article-usage-stats .article-usage-stats__metric + .article-usage-stats__metric::before {
        bottom: auto;
        left: 12%;
        right: 12%;
        top: -1px;
        width: auto;
    }
}
