.news-page {
    padding: 0;
}

.news-layout .news-page {
    padding-bottom: 24px;
}

.news-page__header {
    margin-bottom: 24px;
}

.news-page__title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-page__title-icon {
    color: #ff4d00;
}

.news-page__subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Layout: fix flex overflow from site-wide width: 68.75% + 31.25% */
.news-layout.layout-main {
    align-items: flex-start;
    gap: 16px;
}

.news-layout .layout-main__content {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    padding-right: 0;
}

.news-layout .layout-main__sidebar {
    width: 240px;
    flex: 0 0 240px;
    min-width: 0;
}

.news-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-layout .news-feed {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #0f0f10;
    transition: box-shadow .2s ease, border-color .2s ease;
    min-width: 0;
}

.news-card:hover {
    border-color: #2196f3;
    box-shadow: 0 8px 24px rgba(33, 150, 243, .1);
    color: #0f0f10;
    text-decoration: none;
}

.news-card__image-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #f5f5f5;
    overflow: hidden;
}

.news-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    padding: 12px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.news-card__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.news-card__meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #888;
}

.news-card__source {
    color: #2196f3;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-card__time {
    flex-shrink: 0;
}

.news-article {
    padding: 0 0 48px;
}

.news-layout .news-article {
    max-width: none;
    padding: 0;
}

.news-layout__sidebar .news-widget {
    margin-bottom: 0;
}

.news-sidebar__block {
    margin-bottom: 8px;
}

.news-sidebar__block:last-child {
    margin-bottom: 0;
}

.news-layout__mobile-aside {
    display: none;
    padding: 24px 0 48px;
}

.news-layout__sidebar {
    position: static;
}

.news-weather-informer {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    border-color: #2196F3;
    background-color: #FFFFFF;
    color: #2B2B2B;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 8px;
    overflow: hidden;
}

.news-weather-informer .meteo-informer__cell-logo,
.news-weather-informer .meteo-informer__cell-info {
    border-bottom-color: #2196F3;
}

.news-weather-informer .meteo-informer__row:hover {
    background-color: #f5faff;
}

.news-layout .news-widget {
    padding: 10px 12px;
    margin-bottom: 0;
}

.news-layout .news-widget__head {
    margin-bottom: 8px;
    padding-bottom: 6px;
}

.news-layout .news-widget__title {
    font-size: 14px;
}

.news-layout .news-widget__link {
    gap: 8px;
    padding: 6px 0;
}

.news-layout .news-widget__thumb {
    width: 48px;
    height: 36px;
}

.news-layout .news-widget__item-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
}

.news-layout .news-widget__item-meta {
    font-size: 10px;
}

.news-article__source-link {
    margin-top: 24px;
    font-size: 13px;
    color: #888;
}

.news-article__back {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    color: #2196f3;
    text-decoration: none;
}

.news-article__back:hover {
    text-decoration: underline;
}

.news-article__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 12px;
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.news-article__source {
    color: #2196f3;
    font-weight: 500;
}

.news-article__cover {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.news-article__cover img {
    display: block;
    width: 100%;
    height: auto;
}

.news-article__summary {
    font-size: 17px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 24px;
    font-style: italic;
}

.news-article__content {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    overflow-wrap: anywhere;
}

.news-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
}

.news-article__content p {
    margin-bottom: 16px;
}

.news-article__content a {
    color: #2196f3;
}

.news-widget {
    background: #fff;
    border: 1px solid #dde1e5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.news-widget__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.news-widget__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.news-widget__more {
    font-size: 12px;
    color: #2196f3;
    text-decoration: none;
}

.news-widget__more:hover {
    text-decoration: underline;
}

.news-widget__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-widget__item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-widget__item:last-child {
    border-bottom: none;
}

.news-widget__link {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: #0f0f10;
    align-items: flex-start;
}

.news-widget__link:hover {
    color: #2196f3;
    text-decoration: none;
}

.news-widget__link:hover .news-widget__item-title {
    color: #2196f3;
}

.news-widget__thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    background: #f5f5f5;
}

.news-widget__item-body {
    flex: 1;
    min-width: 0;
}

.news-widget__item-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s ease;
}

.news-widget__item-meta {
    font-size: 11px;
    color: #999;
}

.news-section {
    margin: 32px 0;
}

.news-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.news-section__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.news-section__more {
    font-size: 14px;
    color: #2196f3;
    text-decoration: none;
}

.news-section__more:hover {
    text-decoration: underline;
}

.news-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.news-pagination {
    margin-top: 32px;
}

.news-mobile-aside {
    display: none;
}

@media (max-width: 991px) {
    .news-mobile-aside {
        display: block;
        margin: 24px 0 0;
    }
}

.news-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.news-pager__pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.news-pager__btn,
.news-pager__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #dde1e5;
    border-radius: 4px;
    background: #fff;
    color: #0f0f10;
    font-size: 14px;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.news-pager__page {
    min-width: 36px;
    padding: 0;
}

.news-pager__btn:hover,
.news-pager__page:hover {
    border-color: #2196f3;
    color: #2196f3;
    text-decoration: none;
}

.news-pager__page_active {
    background: #2196f3;
    border-color: #2196f3;
    color: #fff;
}

.news-pager__btn_disabled,
.news-pager__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 991px) {
    .news-layout .layout-main__content,
    .news-layout .layout-main__sidebar {
        width: 100%;
        flex: 1 1 100%;
    }

    .news-layout .news-feed,
    .news-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-layout .layout-main__sidebar {
        display: none;
    }

    .news-layout__sidebar {
        position: static;
    }

    .news-layout__mobile-aside {
        display: block;
    }
}

@media (max-width: 670px) {
    .news-feed,
    .news-layout .news-feed,
    .news-section__grid {
        grid-template-columns: 1fr;
    }

    .news-article__title {
        font-size: 22px;
    }

    .news-page__title {
        font-size: 24px;
    }
}
