.stats-container-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px auto;
}
.stat-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}
.stat-header .title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-align: right;
    color: #0C3058;
}
.stat-header .subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: right;
    color: #0C3058;
}
.stat-chart {
    display: flex;
}
.stat-chart img {
    max-width: max-content;
    width: 100%;
    max-height: 285px;
    height: auto;
    position: relative;
}
@media (max-width: 1280px) {
    .stats-container h1 {
        text-align: center;
    }
    .stats-container-inner {
        gap: 24px;
        margin: 16px auto;
    }
    .stat-header {
        gap: 0;
        margin-bottom: 8px;
    }
}