:root {
    --primary-bg-color: #f2f4f7;

    --primary-block-color: #ffffff;
    --secondary-block-color: #eaeaea;
    --active-block-color: #0070f0;
    --special-block-color: #202021;

    --primary-text-color: #000000;
    --secondary-text-color: #656565;
    --active-text-color: #0070f0;
    --active-block-text-color: #ffffff;

    --primary-element-color: #c7c7c7;
    --primary-border-round: 20px;
}

body {
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    font-family: "Liter", sans-serif;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
}
header {
    height: 160px;
    background-color: var(--primary-block-color);
}
nav {
    padding-top: 20px;
    padding-bottom: 20px;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu {
    display: flex;
    gap: 10px;
}
.menu-item {
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
}
.menu-item a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
}
.menu-item a:hover {
    background-color: var(--active-block-color);
    color: var(--active-block-text-color);
}
.active-menu a {
    background-color: var(--active-block-color);
    color: var(--active-block-text-color);
}
.nav-social {
    display: flex;
    gap: 10px;
}
.nav-social-item {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background-color: var(--primary-element-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.nav-social-item:hover {
    background-color: var(--active-block-color);
}
.nav-social-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.nav-social-item img {
    width: 20px;
    height: 20px;
}
.featured {
    display: grid;
    grid-template-columns: 1fr 452px;
    gap: 20px;
}
.featured-lent {
    column-count: 2;
    column-gap: 20px;
    column-fill: auto;
    padding: 20px;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    height: 640px;
    box-shadow: 0px 0px 8px 0px rgba(31, 11, 11, 0.02);
}
.featured-lent-hero {
    break-inside: avoid;
    border-bottom: 1px solid var(--primary-element-color);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}
.featured-lent-hero:hover {
    transform: translateY(-2px);
}
.featured-lent-hero:hover .featured-lent-article-title {
    color: var(--active-text-color);
}
.featured-lent-hero-image {
    width: 100%;
    height: 280px;
    background-color: var(--primary-element-color);
    margin-bottom: 10px;
    border-radius: var(--primary-border-round);
    transition: all 0.3s ease;
}
.featured-bg-image {
    background-size: cover;
    background-position: center;
}
.featured-lent-hero:hover .featured-lent-hero-image {
    background-color: var(--active-block-color);
}
.featured-lent-article {
    break-inside: avoid;
    padding-top: 10px;
    border-bottom: 1px solid var(--primary-element-color);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}
.featured-lent-article:hover {
}
.featured-lent-article:hover .featured-lent-article-title {
    color: var(--active-text-color);
}
.featured-lent-article-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}
.featured-lent-article-date {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
    padding-bottom: 10px;
}
.featured-side {
    display: grid;
    grid-template-rows: 1fr 146px;
    gap: 20px;
}
.featured-side-articles {
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}
.featured-side-article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.news-category {
    display: none;
}
.news-category-active {
    display: block;
}
.news-category-hidden {
    display: none;
}
.featured-side-meteo {
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
    padding: 20px;
}
.featured-side-controller {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--primary-border-round);
    border: 1px solid var(--active-block-color);
    margin-bottom: 20px;
}
.featured-side-controller-item {
    background-color: var(--primary-block-color);
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.featured-side-controller-item:first-child {
    border-right: 1px solid var(--active-block-color);
    border-radius: calc(var(--primary-border-round) - 1px) 0 0
        calc(var(--primary-border-round) - 1px);
}
.featured-side-controller-item:last-child {
    border-radius: 0 calc(var(--primary-border-round) - 1px)
        calc(var(--primary-border-round) - 1px) 0;
}
.featured-side-controller-item a {
    text-decoration: none;
    color: var(--active-block-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 16px;
    transition: all 0.3s ease;
}
.featured-side-controller-item:hover {
    background-color: var(--active-block-color);
}
.featured-side-controller-item:hover a {
    color: var(--active-block-text-color);
}
.active-controller {
    background-color: var(--active-block-color);
}
.active-controller a {
    color: var(--active-block-text-color);
}
.radio-lent {
    margin-top: 20px;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
    padding: 20px;
    box-sizing: border-box;
}
.radio-lent-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.radio-lent-list-wrapper {
    overflow: hidden;
    width: 100%;
    cursor: pointer;
}
.radio-lent-list {
    display: flex;
    white-space: nowrap;
    box-sizing: border-box;
    animation: scroll-infinite 40s linear infinite;
    gap: 0;
}
.radio-lent-list-set {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
}
.radio-lent-list-item {
    font-size: 20px;
    flex-shrink: 0;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
}
.radio-lent-list-item::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--active-block-color);
    border-radius: 50%;
}
.radio-lent-list-item:first-child {
    padding-left: 20px;
}
.radio-lent-controller-button {
    background-color: var(--active-block-color);
    color: var(--active-block-text-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    padding: 8px 24px;
    border-radius: var(--primary-border-round);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.radio-lent-controller-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 112, 240, 0.3);
}

.radio-lent-controller-button:active {
    transform: scale(0.98);
}

.radio-lent-controller-button.playing {
    background-color: #ff4444;
    animation: glow 2s ease-in-out infinite;
}

.radio-lent-controller-button .radio-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 68, 68, 0.5),
            0 0 10px rgba(255, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.8),
            0 0 30px rgba(255, 68, 68, 0.4);
    }
}

/* Стили для заголовка радио с громкостью */
.radio-lent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Стили для управления громкостью */
.radio-lent-controller {
    display: flex;
    align-items: center;
    gap: 16px;
}

.radio-volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    padding: 4px 6px;
    border-radius: var(--primary-border-round);
}

.radio-volume-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    padding: 4px;
}

.radio-volume-icon:hover {
    transform: scale(1.1);
    color: #333;
}

.radio-volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #666;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #333;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.radio-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #666;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.radio-volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: #333;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.radio-lent-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--primary-text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.title-icon {
    width: 36px;
    height: 36px;

    border-radius: 8px;
    overflow: hidden;
}
.title-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll-infinite {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(var(--scroll-distance, -50%));
    }
}

.vesti-lent-section {
    margin-top: 20px;
    position: relative;
}
.vesti-lent {
    background-color: var(--special-block-color);
    border-radius: var(--primary-border-round);
    padding: 20px;
    box-sizing: border-box;
}
.vesti-lent-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.vesti-lent-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--active-block-text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.vesti-lent-container {
    position: relative;
}
.vesti-lent-list-wrapper {
    overflow: hidden;
}
.vesti-lent-list {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: fit-content;
}
.vesti-lent-list-item {
    width: 454px;
    height: 280px;
    background-color: #282829;
    border-radius: var(--primary-border-round);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
}
.vesti-video-item {
    cursor: pointer;
}
.vesti-lent-button-left {
    position: absolute;
    left: -21px;
    top: 58%;
    transform: translateY(-50%);
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
    z-index: 10;
}
.vesti-lent-button-right {
    position: absolute;
    right: -21px;
    top: 58%;
    transform: translateY(-50%);
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
    z-index: 10;
}
.vesti-lent-button-left svg {
    width: 20px;
    height: 20px;
    display: block;
}
.vesti-lent-button-left svg path {
    stroke: #212223;
}

.vesti-lent-button-left svg {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
}

.vesti-lent-button-right svg {
    width: 20px;
    height: 20px;
    display: block;
}
.vesti-lent-button-right svg path {
    stroke: #212223;
}
.vesti-lent-archive a {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--active-block-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.vesti-lent-archive:hover a {
    color: var(--active-block-color);
}
.news-block {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
}
.news-block-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.news-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.news-block-list {
    display: flex;
    flex-direction: column;
}
.news-block-grid-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}
.news-block-grid-item:hover {
    transform: translateY(-2px);
}
.news-block-grid-item:hover .news-block-grid-item-title {
    color: var(--active-text-color);
}
.news-block-grid-item-image {
    width: 100%;
    height: 210px;
    background-color: var(--primary-element-color);
    border-radius: var(--primary-border-round);
    margin-bottom: 10px;
}
.news-bg-image {
    background-size: cover;
    background-position: center;
}
.news-block-grid-item-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}
.news-block-grid-item-date {
    display: flex;
    justify-content: space-between;
}
.news-block-grid-item-date-category {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.news-block-grid-item-date-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.news-block-header {
    margin-bottom: 40px;
    margin-top: 20px;
}
.news-block-button {
    display: flex;
    gap: 10px;
}
.news-block-button-item {
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
}
.news-block-button-item a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-size: 16px;
    padding: 8px 26px;
    background-color: var(--secondary-block-color);
    border-radius: var(--primary-border-round);
}
.news-block-button-active a {
    background-color: var(--active-block-color);
    color: var(--active-block-text-color);
}
.news-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-block-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--primary-element-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px;
}
.news-block-list-item:hover {
}
.news-block-list-item:hover .news-block-list-item-title {
    color: var(--active-text-color);
}
.news-block-list-item-category {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.news-block-list-item-left {
    display: flex;
    gap: 10px;
    align-items: center;
}
.news-block-list-item-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.news-block-list-item-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--primary-text-color);
}
.footer-menu {
    display: flex;
    justify-content: space-between;
}
.footer-menu-nav {
    display: flex;
    gap: 20px;
}
.footer-menu-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.copyright {
    color: var(--secondary-text-color);
}
.copyright-title {
    font-size: 18px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.copyright-text {
    margin-bottom: 40px;
}
.footer-menu-item-title a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-size: 18px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.footer-menu-item-title a:hover {
    color: var(--active-block-color);
}
.footer-menu-social-title {
    font-size: 24px;
    text-align: right;
    margin-bottom: 10px;
}
.footer-menu-social-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-menu-social-item {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--primary-element-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
footer {
    padding-bottom: 80px;
}
.article-container {
    display: grid;
    grid-template-columns: 1fr 452px;
    gap: 20px;
}
.article-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
}
.article-text-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--primary-text-color);
}
.article-sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
}
.article-sidebar-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--primary-text-color);
}
.article-sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.article-sidebar-article {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.article-sidebar-article-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--primary-text-color);
}
.article-sidebar-article {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--primary-element-color);
    padding-bottom: 20px;
    text-decoration: none;
}
.article-sidebar-article-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.article-text-date {
    display: flex;
    gap: 10px;
}
.article-text-date-category {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.article-text-date-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.article-text-image {
    width: 100%;
    height: 380px;
    border-radius: var(--primary-border-round);
    overflow: hidden;
}
.article-text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-text-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    color: var(--primary-text-color);
}
.article-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: var(--primary-bg-color);
    border-radius: 12px;
    width: fit-content;
}
.breadcrumb-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.breadcrumb-link:hover {
    color: var(--active-block-color);
}
.breadcrumb-separator {
    font-size: 14px;
    color: var(--primary-element-color);
    user-select: none;
}
.breadcrumb-current {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--primary-text-color);
}
.vesti-lent-social-items {
    display: flex;
    gap: 20px;
}
.vesti-lent-social-item {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--primary-element-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vesti-lent-social-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.vesti-lent-social-item img {
    width: 20px;
    height: 20px;
}
.vesti-lent-social-lent {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.vesti-lent-social-title {
    font-size: 22px;
}
.article-text-related-articles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.article-text-related-article {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
}
.article-text-related-img {
    width: 100%;
    height: 210px;
    background-color: var(--primary-element-color);
    border-radius: var(--primary-border-round);
    overflow: hidden;
}
.article-text-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-text-related-name {
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
    color: var(--primary-text-color);
    margin-bottom: 10px;
    margin-top: 20px;
}
.article-text-related-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--primary-text-color);
}
.article-text-related-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondary-text-color);
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.video-grid-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}
.video-grid-item-image {
    width: 100%;
    height: 240px;
    margin-bottom: 10px;
}
.video-grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.video-grid-item-title {
    font-size: 18px;
}
.video-grid-item-date {
    font-size: 14px;
    color: var(--secondary-text-color);
}

.video-more {
    margin-top: 20px;
}
.video-more-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
}
.video-more-button a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--primary-block-color);
    border-radius: var(--primary-border-round);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.02);
}
.video-more-button a:hover {
    background-color: var(--active-block-color);
    color: var(--active-block-text-color);
}

/* Стили для видео в ленте */
.vesti-lent-list-item .video-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.vesti-lent-list-item .video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vesti-lent-list-item .video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.vesti-lent-list-item .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vesti-lent-list-item .video-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 3px;
}

.vesti-lent-list-item .video-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vesti-lent-list-item .video-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #fff;
}

.vesti-lent-list-item .video-category {
    font-size: 13px;
    color: var(--primary-accent-color);
}

.vesti-lent-list-item .video-date {
    font-size: 12px;
    color: var(--secondary-text-color);
    margin-top: auto;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.video-modal-close:hover {
    color: #ccc;
}

.video-modal-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
