.article-report-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.article-report-stats > div {
    min-width: 0;
    padding: 14px 10px;
    border: 1px solid #dfe7ef;
    border-radius: 8px;
    background: #f8fafc;
    text-align: center;
}

.article-report-stats strong {
    display: block;
    color: var(--text-main);
    font-size: 1.45em;
    line-height: 1.15;
}

.article-report-stats span {
    display: block;
    margin-top: 5px;
    color: #718096;
    font-size: 0.78em;
    line-height: 1.3;
}

.article-report-results {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e1e6ef;
}

.article-report-results li {
    padding: 13px 0;
    border-bottom: 1px solid #edf2f7;
}

.article-report-match {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    font-weight: 700;
}

.article-report-match > a:first-child {
    text-align: right;
}

.article-report-match a {
    min-width: 0;
    color: var(--text-main);
    text-decoration: none;
    overflow-wrap: anywhere;
}

.article-report-match a:hover,
.article-report-match a:focus-visible {
    color: var(--accent);
}

.article-report-match .article-report-score {
    padding: 3px 8px;
    border-radius: 6px;
    background: #2d3748;
    color: #fff;
    white-space: nowrap;
}

.article-report-results small {
    display: block;
    margin-top: 5px;
    color: #718096;
    text-align: center;
    line-height: 1.4;
}

.article-report-ranking {
    margin: 12px 0 18px;
    padding-left: 24px;
}

.article-report-ranking a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 600px) {
    .article-report-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-report-match {
        grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
        gap: 6px;
        font-size: 0.88em;
    }

    .article-report-match .article-report-score {
        padding: 3px 5px;
        text-align: center;
    }
}

