.news-single-page__inner {
    display: flex;
    margin-top: 40px;
    padding: 0px 310px 80px 310px;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
}

@media (max-width: 1750px) {
    .news-single-page__inner {
        padding: 0px 80px 80px 80px;
    }
}

@media (max-width: 1200px) {
    .news-single-page__inner {
        padding: 40px 40px 80px 40px;
    }
}

@media (max-width: 600px) {
    .news-single-page__inner {
        gap: 40px;
        padding: 40px 16px 60px 16px;
    }
}

.news-single-page__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.news-single-page__tag {
    display: flex;
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: var(--Gray-light, #F3F5F4);
    color: var(--Black, #0D0D0D);
    font-size: 14px;
    font-weight: 500;
    line-height: 80%;
}

.news-single-page__title {
    color: var(--Black, #0D0D0D);
    font-size: 48px;
    font-weight: 500;
    line-height: 100%;
}

@media (max-width: 600px) {
    .news-single-page__title {
        font-size: 32px;
        line-height: 120%;
    }
}

.news-single-page__date {
    color: var(--Black-80, rgba(13, 13, 13, 0.80));
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 600px) {
    .news-single-page__date {
        font-size: 14px;
        line-height: 120%;
    }
}

.news-single-page__share {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background: var(--Gray-light-2, #F7FAFA);
}

@media (max-width: 600px) {
    .news-single-page__share {
        width: 100%;
        padding: 12px;
    }
}

.news-single-page__share-title {
    color: var(--Black, #0D0D0D);
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 600px) {
    .news-single-page__share-title {
        font-size: 18px;
        line-height: 120%;
    }
}

.news-single-page__share-links {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.news-single-page__share-link {
    background-color: var(--Light-green, #E0F2EC);
    transition: all var(--transition-time);
}

.news-single-page__share-link svg path {
    fill: var(--Black, #0D0D0D);
}

@media (hover: hover) {
    .news-single-page__share-link:hover {
        background-color: #EEFFF9;
    }
}

@media (hover: none) {
    .news-single-page__share-link:active {
        background-color: #EEFFF9;
    }
}

.news-single-page__text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    color: var(--Black-80, rgba(13, 13, 13, 0.80));
    font-family: Gilroy, Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 600px) {
    .news-single-page__text-content {
        font-size: 16px;
    }
}

.news-single-page__text-content b i {
    color: var(--Black, #0D0D0D);
    font-family: Gilroy, Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 600px) {
    .news-single-page__text-content b i {
        font-size: 24px;
    }
}

.news-single-page__text-content br {
    display: none;
}

.news-single-page__article {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.news-single-page__article-title {
    color: var(--Black, #0D0D0D);
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 600px) {
    .news-single-page__article-title {
        font-size: 24px;
    }
}

.news-single-page__text {
    color: var(--Black-80, rgba(13, 13, 13, 0.80));
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 600px) {
    .news-single-page__text {
        font-size: 16px;
    }
}

.news-single-page__text_bold {
    color: var(--Black, #0D0D0D);
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 600px) {
    .news-single-page__text_bold {
        font-size: 24px;
    }
}

.news-single-page__charts {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-single-page__pag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.news-single-page__pag-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.news-single-page__pag-title {
    color: var(--Black-80, rgba(13, 13, 13, 0.80));
    font-size: 16px;
    font-weight: 500;
    line-height: 80%;
}

@media (max-width: 600px) {
    .news-single-page__pag-title {
        display: none;
    }

    .news-single-page__arr {
        display: flex;
    }
}

.canvas-wrapper {
    margin: 10px auto;
    width: 100%;
}

.chart {
    border: 1px solid var(--Grid-single-chart-color, #bebfbd);
    padding: 16px;
    width: 100%;
}

.chart__title {
    color: var(--Black, #0D0D0D);
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
}

@media (max-width: 600px) {
    .chart__title {
        font-size: 24px;
        line-height: 120%;
    }
}

.chart__legend {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 600px) {
    .chart__legend {
        gap: 12px;
        justify-content: left;
    }
}

.chart__legend-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.chart__legend-img {
    width: 60px;
    height: 8px;
    border: 1px solid #807d7d;
}

.chart__legend-text {
    white-space: nowrap;
    font-size: 12px;
}

.chart__legend-img_1 {
    background-color: var(--First-bar-chart-color);
}

.chart__legend-img_2 {
    background-color: var(--Second-bar-chart-color);
}

.chart__legend-img_3 {
    border: none;
    border-radius: 20px;
    background-color: var(--First-line-chart-color);
    position: relative;
    z-index: 1;
}

.chart__legend-img_3::after {
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--Point-line-chart-color);
    border: 1px solid var(--Point-stroke-line-chart-color);
    position: absolute;
    top: -1px;
    left: calc(50% - 5px);
    z-index: 2;
}

.chart__legend-img_4 {
    border: none;
    border-radius: 20px;
    background-color: var(--Second-line-chart-color);
    position: relative;
    position: relative;
    z-index: 1;
}

.chart__legend-img_4::after {
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--Point-line-chart-color);
    border: 1px solid var(--Point-stroke-line-chart-color);
    position: absolute;
    top: -1px;
    left: calc(50% - 5px);
    z-index: 2;
}

.chart_single {
    margin-top: 40px;
    border: none;
}

@media (max-width: 900px) {
    .chart_single {
        margin-top: 0px;
    }
}

.chart_single .chart__title {
    color: #898989;
}

.chart__info {
    text-align: right;
    color: var(--Grid-single-chart-color, #bebfbd);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}