h1 {
    font-family: var(--font-primary);
    font-size: 36px;
}
h2,
h3,
h4,
h5 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 130%;
    color: var(--color-font);
    /* margin: 0 0 28px; */
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 16px;
}
sup {
    vertical-align: super;
    font-size: 0.75em;
}

sub {
    vertical-align: sub;
    font-size: 0.75em;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;    
}

.nowrap {
    white-space: nowrap;
}
.hidden-mobile {
    display: none;
}
.view-mobile {
    display: block;
}

.home .main {
    padding: 8px 0 0;
}

/* .block {
    padding: 0 0 64px;
} */
.block-aside,
.headline-news__grid-4 {
    padding: 0 0 64px;
}

.cut-str--2,
.cut-str--3,
.cut-str--4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.cut-str--2 {
    -webkit-line-clamp: 2;
}
.cut-str--3 {
    -webkit-line-clamp: 3;
}
.cut-str--4 {
    -webkit-line-clamp: 4;
}

.sticky-wrap {
    display: flex;
    flex-direction: column;
    gap: 64px;
    position: relative;
}
.border-top {
    border-top: 1px solid var(--color-grey);
}

.hero-block__main {
    font-family: var(--font-secondary);
}
.block-label,
.block-sublabel {
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.block-label h2,
.block-label {
    color: var(--color-grey);
    font-weight: 600;
    font-size: 16px;
    line-height: 90%;
    text-transform: uppercase;
    margin: 13px 0;
}
.block-label h2 {
    margin: 0;
    transition: .3s;
}
.block-label a h2:hover {
    color: var(--text-text-active);
}
.block-sublabel.urgent::before,
.block-label.urgent::before {
    content: "";
    display: inline-flex;
    width: 6px;
    height: 6px;
    background-color: var(--color-urgent);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}
.block-label.arrow::after {
    content: "";
    display: inline-flex;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid var(--color-grey);
    border-right: 1.5px solid var(--color-grey);
    transform: rotate(45deg);
    /* треугольник
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-left: 9px solid black; */
}
.block-sublabel {
    font-size: 13px;
    color: var(--color-secondary-text);
    margin: 0 0 8px;
}
.block-sublabel.fresh::before {
    content: "";
    display: inline-flex;
    width: 6px;
    height: 6px;
    background-color: var(--color-fresh);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}
.trending {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trending__by-days__wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trending__by-days {
    text-transform: none;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
.trending__by-days.active {
    color: var(--text-text-active);
}
.hero-block__live {
    margin: 0 0 24px;
}
.hero-block__headlines {
    transition: opacity 0.3s ease;
    position: relative;
}
.loading {
    text-align: center;
    padding: 20px;
    color: #666;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-block__headlines h2,
.hero-block__headlines h5 {
    color: var(--color-primary);
}

.hero-block__live img {
    width: 100%;
    height: auto;
}

/* headlines */
.headline-news {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}
.headline-news__grid-2 .headline-news__title {
    width: 255px;
    font-size: 20px;
}
.headline-news__grid-2 .headline-news__grid-2-item__img .headline-news__title {
    width: unset;
}
.headline-news__grid-2 .headline-news__grid-2-item__img img {
    max-height: 260px;
    object-fit: cover;
}
.headline-news__title {
    margin: 0 0 10px;
}
.headline-news__title h3 {
    font-size: 16px;
    line-height: 130%;
}
.hero-block__headlines-wrap h3.headline-news__title {
    font-size: 16px;
}
.headline-news img {
    width: 100%;
    height: auto;
}
.headline-news__title:has(+ .headline-news__summary) {
    margin: 0 0 8px;
}
.headline-news__summary {
    font-family: var(--font-secondary);
    line-height: 130%;
    color: var(--color-font);
}
.headline-news__title:has(+ .headline-news__small-description),
.headline-news__summary:has(+ .headline-news__small-description) {
    margin: 0 0 16px;
}
.more-news {
    position: relative;
}
.more-news::before {
    content: '';
    position: absolute;
    width: 100%;
    z-index: 1;
    bottom: 0;
    height: 139px;
    background: linear-gradient(180deg, rgba(255, 249, 244, 0) 0%, #FFF9F4 54.5%);
}
.more-news-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.more-news .refresh {
    min-width: 48px;
    height: 48px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}
.more-news .refresh svg {
    width: 16px;
    height: 16px;
}
.more-news-btn {
    white-space: nowrap;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-font);
    width: 212px;
    height: 53px;
    border: 1px solid var(--color-grey);
}
/**/

/* trending */
.trending-card {
    display: flex;
    gap: 16px;
    padding: 16px 0;
}
.trending-card:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}
.trending-card-index {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
}
.trending-card__title {
    margin: 0 0 24px;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
}
.headline-news__small-description--point-wrap {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;

}
.headline-news__small-description {
    white-space: nowrap;
}
.headline-news__small-description,
figcaption {
    font-weight: 400;
    font-size: 13px;
    font-family: var(--font-secondary);
    color: var(--color-secondary-text);
}
figure picture:has(+ figcaption) {
    display: block;
    margin: 0 0 8px;
}
.headline-news__small-description-point {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--color-secondary-text);
}
/**/

/* Latest news */
.latest-news__main {
    margin: 0 0 45px;
}
@media (min-width: 960px) {
    .latest-news__main {
        margin: 0;
    }
}
.latest-news__main .headline-news.feature {
    padding: 0 0 16px;
}
.headline-news.feature .headline-news__small-description {
    margin: 0 0 25px;
}
.latest-news__main figure {
    margin: 0 0 8px;
}

.points-of-view .headline-news__title {
    margin: 0 0 16px;
}
.headline-news-with-img__wrap,
.social-item {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}
.headline-news-with-img__wrap:last-child {
    border-bottom: 0;
} 
.headline-news-with-img__aside {
    flex-shrink: 0;
}
.points-of-view .headline-news-with-img__aside img {
    border-radius: 50%;
}
/**/

.asidebar-wrap {
    position: sticky;
    top: 20px;
}

.advertising {
    height: 250px;
    background-color: var(--color-border);
}

/* podcast */
.block-label.podcast {
    font-weight: 400;
    color: var(--color-font);
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 24px;
    width: fit-content;
}
/**/

.headline-news.society {
    padding: 16px 0 24px;
}

/* Обязательно к прочтению */
.headline-news__grid-4 {
    margin: -6px 0 0;
}
.headline-news__grid-item {
    padding: 16px 0;
}
.headline-news__grid-4 .headline-news__title {
    margin: 0 0 16px;
}
/**/
.grid-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 0 54px;
}
.post-tags {
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.post-tags span {
    padding: 5px 8px;
    border-radius: 14px;
    background-color: #959393;
    color: #ffffff;
    font-size: 14px;
}


/* свайпер */
.swiper-news__wrap {
    position: relative;
    padding: 0 0 13px;
    margin: 0 0 60px;
}
.swiper-news {
    padding: 0 0 46px;
}
.swiper-news .swiper-slide {
    padding: 16px 0;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
.headline-news-card img {
    margin: 0 0 5px;
    height: 225px;
    object-fit: cover;
}
.headline-news-card picture,
.swiper-news .swiper-slide picture {
    display: block;
    margin: 0 0 16px;
}
.headline-news-card .headline-news__small-description--point-wrap,
.swiper-news .swiper-slide .headline-news__small-description--point-wrap {
    margin: 0 0 8px;
}

.swiper-navigation-wrap {
    position: relative;
    z-index: 30;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next, 
.swiper-rtl .swiper-button-prev {
    width: 48px;
    height: 32px;
    border-radius: 8px;
    background-color: var(--color-border);
}
.swiper-button-prev {
    transform: rotate(180deg);
}
.swiper-button-next svg,
.swiper-button-prev svg {
    width: 13px;
    height: 16px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0;
}
.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
}
.swiper-pagination-bullet-active {
    background: #111;
}
/**/

/* subscribe */
.subscribe-section {
    background-color: var(--color-yellow);
    text-align: center;
    padding: 40px 0 46px;
    margin: 0 0 64px;
}
.subscribe-section h4 {
    margin: 0 0 8px;
    font-size: 18px;
}
.subscribe-descr {
    font-family: var(--font-secondary);
    color: var(--color-font);
    font-size: 16px;
    line-height: 130%;
    margin: 0 0 24px;
}
/**/

/* video swiper */
.swiper-video__wrap {
    position: relative;
    padding: 0 0 13px;
    margin: 0 0 60px;
}
.swiper-video {
    padding: 0 0 62px;
}
.swiper-video .video-tile {
    border-radius: 8px;
    overflow: hidden;
    max-width: 280px;
}
.swiper-video .video-tile::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(42, 42, 42, 0) 50%, #2A2A2A 100%);
}
.swiper-video .video-tile img {
    border-radius: 8px;
}
.video-tile__descr {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 0 16px 16px;
    color: #fff;
}
.video-tile__descr h5 {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    margin: 0 0 8px;
}
.time-duration {
    display: flex;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 1;
}
.time-duration::before {
    content: '';
    display: inline-flex;
    /* треугольник */
    border-top: 6.5px solid transparent;
    border-bottom: 5.5px solid transparent;
    border-left: 10px solid #fff;
}
/**/

/* socials */
.social-item {
    align-items: center;
    font-weight: 500;
font-size: 16px;
line-height: 130%;
}
.social-item__round {
    background-color: var(--color-border);
    border-radius: 50%;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}
.social-item .icon {
    max-width: 16px;
}
.social-item .tg {
    width: 14px;
    height: 16px;
}
.social-item .tiktok {
    width: 13px;
    height: 12px;
}
.social-item .fb {
    width: 7px;
    height: 13px;
}
.social-item .x {
    width: 16px;
    height: 15px;
}
.social-item .in {
    width: 13px;
    height: 12px;
}
.social-item .ok {
    width: 8px;
    height: 13px;
}
.social-item .vk {
    width: 14px;
    height: 8px;
}
/**/

.headline-news__grid-2-item {
    padding: 0 0 64px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(255, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(255, 0, 0, 0.5);
    }
}

@media (min-width: 960px) {
    .hidden-mobile {
        display: block;
    }
    .view-mobile {
        display: none;
    }
    .headline-news__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 10px; /* Расстояние между элементами */
    }
    
    .headline-news__grid :first-child {
        grid-column: 1 / 2; /* Первый элемент занимает первую колонку */
        grid-row: 1 / span 5; /* Остается в первой строке */
    }
    
    .headline-news__grid :nth-child(n+2) {
        grid-column: 2 / 3; /* Остальные идут во вторую колонку */
    }
}



@media (min-width: 1216px) {

    .hero-block__headlines-wrap {
        display: flex;
        flex-direction: row-reverse;
        gap: 17px;
        justify-content: space-between;
    }
    .border-right {
        margin: 0 14px 0 0;
        position: relative;
        width: -webkit-fill-available;
    }
    .border-right::after {
        content: '';
        border-right: 1px solid var(--color-border);
        position: absolute;
        z-index: 1;
        top: 0;
        right: -14px;
        height: 100%;
    }
    .hero-block__live picture {
        width: max-content;
        display: block;
    }
    .hero-block__live .wp-caption-text {
        margin: 0 !important;
    }
    .podcast__main-item {
        display: flex;
        border: none;
    }
    .podcast__main-descr__wrap {
        /* display: flex; */
        display: grid;
        grid-template-columns: 3.5fr 1fr;
        max-width: 516px;
        margin: 0 0 0 18px;
    }
    .podcast__main-descr__wrap .headline-news__summary {
        max-width: 407px;
    }
    .podcast__main-descr__wrap .headline-news__small-description {
        margin: 0 0 0 18px;
    }

    .latest-news__main-inner {
        padding: 0 0 64px;
    }

    .swiper-video__wrap {
        margin: 0;
    }

    .swiper-news__wrap,
    .swiper-video__wrap {
        padding: 10px 0 13px;
    }
    .swiper-news .swiper-slide {
        padding: 0 0 16px;
    }
    .swiper-news__wrap .swiper-slide {
        height: 325px;
    }

    .block-label__wrap.video {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    div.block-label__video {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-secondary);
        color: var(--color-grey);
        font-weight: 600;
    }
    .block-label__video::after {
        content: '';
        display: inline-flex;
        border-top: 6.5px solid transparent;
        border-bottom: 5.5px solid transparent;
        border-left: 10px solid var(--color-grey);
    }

    .headline-news__grid-4 {
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0 16px;
    }
    .headline-news__grid-4::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        width: 2px;
        height: 100%;
        background: #FFF9F4;
    }
    .headline-news__grid-4::after {
        content: '';
        position: absolute;
        bottom: 64px;
        width: 100%;
        height: 2px;
        background: #FFF9F4;
    }
    .headline-news__grid-item {
        /* margin: 0 18px 0 0; */
    }
    .headline-news__grid-item.border-right {
        margin: 0 16px 0 0;
    }
    .headline-news__grid-item.border-right::after {
        height: 101%;
        right: -16px;
    }
    .headline-news-with-img__main {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .subscribe-section {
        margin: 0 0 56px;
    }
    .subscribe-section h4 {
        font-size: 20px;
    }
    .subscribe-descr {
        max-width: 410px;
        margin: 0 auto 24px;
    }

    .headline-news__grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 16px 0 0;
    }
    .headline-news__grid-2-item {
        padding: 0;
    }
    .headline-news__grid-2-item__inner {
        display: flex;
        gap: 16px;
    }
    .headline-news__grid-2-item:first-child,
    .headline-news__grid-2-item__img {
        margin: 0 16px 0 0;
        position: relative;
    }
    .headline-news__grid-2-item:first-child::after,
    .headline-news__grid-2-item__img::after {
        content: '';
        border-right: 1px solid var(--color-border);
        position: absolute;
        z-index: 1;
        top: 0;
        right: -16px;
        height: 100%;
    }
    .headline-news__grid-2-item__img {
        border-bottom: 0;
        padding: 0;
    }
    .headline-news__grid-2-item__img .headline-news__title {
        margin: 16px 0 10px;
    }
    .headline-news__grid-2-item__list .headline-news:first-child {
        padding: 0 0 16px;
    }
    .headline-news__grid-2-item__list .headline-news:last-child {
        border-bottom: 0;
    }
}

@media (min-width: 768px) {

    .grid-wrapper {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }
    .hero-block__live img {
        width: revert-layer;
    }
    .hero-block__headlines {
        position: relative;
    }
    .more-news {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    h2 {
        font-size: 28px;
    }

    .block-sublabel {
        font-size: 14px;
    }

    .sticky-wrap {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 17px;   
    }
    .block-aside {
        width: 100%;
    }

    .hero-block__live {
        /* order: 2; */
        max-width: 517px;
    }
    /* .hero-block__headlines-wrap .headline-news:first-child {
        padding: 0 0 16px;
    } */
    .hero-block__headlines-wrap {
        padding: 0 0 64px;
    }
    .trending-card-index {
        font-size: 40px;
    }

}


/* news row v2 */
.headline-new__title h3 {
    margin: 0 0 8px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: var(--color-font);
    transition: .3s;
}
.headline-new__title:hover h3 {
    color: var(--text-text-active);
}
.headline-new.general .headline-new__title h3 {
    font-size: 24px;
}
.headline-new .headline-new__title h3 {
    font-size: 16px;
}
.headline-new__content {
    margin: 0 0 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--color-font);
}
.headline-news__wrapper {
    /*margin: 0 0 56px;*/
}
.headline-new {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 16px 0;
    border-bottom: 1px solid #e5dfd6;
}
.headline-new:last-child {
    border: none;
}
.headline-new.general {
    flex-direction: column-reverse;
    gap: 15px;
}
.headline-new.general img {
    width: 100%;
    height: auto;
}
.headline-new__meta {
    display: flex;
    align-items: center;
    gap: 5px;
}
.headline-new__meta span {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #938f8f;
}
.headline-new__general-image {
    display: none;
}
@media (min-width: 860px) {
    .headline-new.general {
        flex-direction:row;
        gap: 30px;
    }
    .headline-new.general .headline-new__title h3 {
        font-size: 21px;
    }
    .headline-new .headline-new__title h3 {
        font-size: 18px;
    }
    .headline-news__wrapper {
        display: flex;
        justify-content: space-between;
        gap: 17px;
        padding: 0 0 56px;
    }
    .headline-new__general-image {
        display: block;
        max-width: 540px;
        width: 100%;
        padding: 0 0 0 17px;
        margin: 0 0 17px;
        border-left: 1px solid #e5dfd6;
    }
    .headline-new__general-image img {
        width: 100% !important;
        height: auto !important;
    }
    .headline-new.general img {
        display: none;
    }
}

@media (min-width: 1200px) {
    .headline-new {
        max-width: 400px;
    }
}
/* END news row v2 */


/* виджет погоды */
.weather-current {
    margin:  35px 0;
    max-width: 418px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    justify-content: space-between;
}
.weather-current__info {
    display: flex;
    flex-direction: column;
    grid-column: 1;
}
.weather-current__location {
    margin: 0 0 8px;
    font-family: 'IBM Plex Serif';
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0%;
    color: #333;
    font-size: 16px;
}
.weather-current__value {
    font-family: 'IBM Plex Serif';
    font-weight: 500;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333;
}
.weather-current__temp {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    text-align: right;
    align-items: flex-end;
    width: 100%;
    flex-direction: column;
}
.weather-current__description {
    margin: 0 0 8px;
    font-family: 'IBM Plex Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #333;
}
.weather-current__icon {
    width: 54px;
    height: 48px;
}
.weather-current__details {
    display: flex;
    flex-direction: column;
    grid-column: 1 / 3;
    gap: 8px;
    font-size: 14px;
    color: #666;
    width: 100%;
}
.weather-current__detail {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: end;
    font-size: 14px;
    color: #666;
    font-family: 'IBM Plex Sans';
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0%;
    position: relative;
}
.weather-current__detail::before {
    content: "";
    height: 1px;
    border-bottom: 1px dashed #E5DFD6;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
}
.weather-current__detail span:first-of-type {
    font-family: 'IBM Plex Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #949291;
}
.weather-current__detail span:last-of-type {
    font-family: 'IBM Plex Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: right;
    color: #333;
}

.weather-forecast {
    margin: 20px 0 40px;
}
.weather-forecast__title {
    font-family: 'IBM Plex Serif';
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    margin-bottom: 16px;
}
.weather-forecast__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
}
.weather-forecast__item {
    display: grid;
    grid-template-columns: 32px 24px 1fr;
    align-items: center;
    gap: 8px;
}
.weather-forecast__temp {
    width: 32px;
    font-family: 'IBM Plex Serif';
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: right;
    color: #333;
}
.weather-forecast__city {
    font-family: 'IBM Plex Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #333;
}
.weather-forecast__icon {
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px) {
    .weather-widget {
        display: flex;
        justify-content: space-between;
    }
    .weather-current {
        flex: 1;
        margin: 0 20px 0 0;
        padding: 0 20px 0 0;
        border-right: 1px solid #e5dfd6;
    }
    .weather-current__temp {
        justify-content: flex-start;
    }
    .weather-forecast {
        flex: 1;
        margin-top: 0;
    }
    .weather-forecast__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .weather-widget {
        padding: 25px 25px 59px 0;
    }
    .weather-current__location {
        font-size: 16px;
    }
    .weather-current__value {
        font-size: 48px;
    }
    .weather-current__details {
        font-size: 16px;
    }
    .weather-forecast__title {
        font-size: 18px;
        margin-bottom: 32px;
    }
    .weather-forecast__item {
        font-size: 16px;
    }
    .weather-forecast__list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
/* END виджет погоды */
