       body { font-family: 'Inter', sans-serif; }
        .news-card { transition: all 0.3s ease; }
        .news-card:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        .nav-link { transition: all 0.2s ease; }
        .nav-link:hover { color: #2563eb; }
        .breaking-news { animation: pulse 2s infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
        .fade-in { opacity: 0; transform: translateY(20px); }
        .weather-widget { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .currency-widget { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .news-image { 
            width: 100%; 
            height: 200px; 
            object-fit: cover; 
            background-color: #f3f4f6; 
        }
        .mobile-menu { display: none; }
        @media (max-width: 1024px) {
            .desktop-nav { display: none; }
            .mobile-menu { display: block; }
        }
		.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Основные стили для контента */
.prose, .content-typography {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.prose, .content-typography a{
    color: #3b82f6;
    font-weight: 800;
}

/* Заголовки */
.prose, .content-typography h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.prose, .content-typography h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #111827;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.prose, .content-typography h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.4;
}

.prose, .content-typography h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 1.5rem 0 0.75rem 0;
    line-height: 1.4;
}

.prose, .content-typography h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 1.25rem 0 0.75rem 0;
    line-height: 1.4;
}

.prose, .content-typography h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.4;
}

/* Параграфы */
.prose, .content-typography p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* Списки */
.prose, .content-typography ul,
.prose, .content-typography ol {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 1rem;
}

.prose, .content-typography li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.prose, .content-typography ul {
    list-style-type: disc;
}

.prose, .content-typography ol {
    list-style-type: decimal;
}

.prose, .content-typography li > ul,
.prose, .content-typography li > ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}


.prose, .content-typography a:hover {
    color: #1d4ed8;
}

/* Цитаты */
.prose, .content-typography blockquote {
    border-left: 4px solid #2563eb;
    background-color: #f8fafc;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #4b5563;
}

.prose, .content-typography blockquote p {
    margin-bottom: 0.5rem;
}

.prose, .content-typography blockquote p:last-child {
    margin-bottom: 0;
}

/* Изображения */
.prose, .content-typography img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.prose, .content-typography figure {
    margin: 2rem 0;
    text-align: center;
}

.prose, .content-typography figcaption {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Таблицы */
.prose, .content-typography table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.prose, .content-typography th,
.prose, .content-typography td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.prose, .content-typography th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.prose, .content-typography tr:nth-child(even) {
    background-color: #f9fafb;
}

/* Код */
.prose, .content-typography code {
    background-color: #f3f4f6;
    color: #dc2626;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
}

.prose, .content-typography pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

.prose, .content-typography pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
}

/* Разделители */
.prose, .content-typography hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 2rem 0;
}

/* Выделение текста */
.prose, .content-typography strong,
.prose, .content-typography b {
    font-weight: 600;
    color: #111827;
}

.prose, .content-typography em,
.prose, .content-typography i {
    font-style: italic;
}

.prose, .content-typography mark {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.125rem 0.25rem;
}

/* Подстрочные и надстрочные */
.prose, .content-typography sub,
.prose, .content-typography sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.prose, .content-typography sup {
    top: -0.5em;
}

.prose, .content-typography sub {
    bottom: -0.25em;
}

/* Аббревиатуры */
.prose, .content-typography abbr[title] {
    border-bottom: 1px dotted #6b7280;
    cursor: help;
    text-decoration: none;
}

/* Адреса */
.prose, .content-typography address {
    font-style: italic;
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8fafc;
    border-left: 3px solid #d1d5db;
}

/* Определения */
.prose, .content-typography dl {
    margin: 1rem 0;
}

.prose, .content-typography dt {
    font-weight: 600;
    color: #111827;
    margin-top: 0.5rem;
}

.prose, .content-typography dd {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* Выравнивание */
.prose, .content-typography .alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.prose, .content-typography .alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.prose, .content-typography .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .prose, .content-typography {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .prose, .content-typography h1 {
        font-size: 1.75rem;
    }
    
    .prose, .content-typography h2 {
        font-size: 1.5rem;
    }
    
    .prose, .content-typography h3 {
        font-size: 1.25rem;
    }
    
    .prose, .content-typography ul,
    .prose, .content-typography ol {
        margin-left: 1rem;
    }
}

/* Утилиты для контента */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Стили для стандартного HTML5 video плеера */
.wp-video-shortcode {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #000;
    margin: 2rem 0;
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.wp-video-shortcode:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Стилизация контролов браузера */
.wp-video-shortcode::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-radius: 0 0 12px 12px;
    padding: 15px;
}

.wp-video-shortcode::-webkit-media-controls-play-button {
    background-color: #3b82f6;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.wp-video-shortcode::-webkit-media-controls-play-button:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

.wp-video-shortcode::-webkit-media-controls-current-time-display,
.wp-video-shortcode::-webkit-media-controls-time-remaining-display {
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.wp-video-shortcode::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 0 15px;
    height: 6px;
}

.wp-video-shortcode::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: #3b82f6;
    border: 2px solid white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.wp-video-shortcode::-webkit-media-controls-timeline::-webkit-slider-thumb:hover {
    background: #2563eb;
    transform: scale(1.2);
}

.wp-video-shortcode::-webkit-media-controls-volume-slider {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    height: 6px;
    margin: 0 10px;
}

.wp-video-shortcode::-webkit-media-controls-volume-slider::-webkit-slider-thumb {
    background: white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.wp-video-shortcode::-webkit-media-controls-mute-button {
    margin-left: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.wp-video-shortcode::-webkit-media-controls-mute-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wp-video-shortcode::-webkit-media-controls-fullscreen-button {
    margin-left: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.wp-video-shortcode::-webkit-media-controls-fullscreen-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Для Firefox */
.wp-video-shortcode::-moz-range-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    height: 6px;
    border: none;
}

.wp-video-shortcode::-moz-range-thumb {
    background: #3b82f6;
    border: 2px solid white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.wp-video-shortcode::-moz-range-thumb:hover {
    background: #2563eb;
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .wp-video-shortcode {
        border-radius: 8px;
        margin: 1.5rem 0;
    }
    
    .wp-video-shortcode::-webkit-media-controls-panel {
        padding: 10px;
    }
    
    .wp-video-shortcode::-webkit-media-controls-timeline {
        margin: 0 10px;
    }
}

/* Дополнительная обертка для лучшего отображения */
.video-container {
    position: relative;
    max-width: 100%;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-container .wp-video-shortcode {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

.video-container .wp-video-shortcode:hover {
    transform: none;
    box-shadow: none;
}

/* Стили для ссылки запасного контента */
.wp-video-shortcode a {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wp-video-shortcode a:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

