/* ============================================
   CSS для сайту Слави Мостового
   ОПТИМІЗОВАНА ВЕРСІЯ - Mobile LCP/CLS
   ============================================ */

/* ✅ ВИПРАВЛЕНО: font-display для зменшення CLS */
@font-face {
  font-family: 'Georgia';
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: #f5f5f5 url('https://s1.hostingkartinok.com/uploads/images/2024/06/f1c0b6d6eb074470c17b4362cd757fd2.jpg') center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #333;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 50px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  /* ✅ ВИПРАВЛЕНО: мінімальна висота для стабільного LCP */
  min-height: 400px;
}

h1 {
  font-size: clamp(24px, 5vw, 36px); /* ✅ Адаптивний розмір без reflow */
  color: #333;
  margin-bottom: 20px;
  font-weight: normal;
  cursor: pointer;
  user-select: none;
  line-height: 1.2; /* ✅ Фіксований line-height */
}

.subtitle {
  font-size: clamp(14px, 3vw, 18px);
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.news-ticker {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  /* ✅ ВИПРАВЛЕНО: резервуємо мінімальну висоту */
  min-height: 120px;
}

.news-ticker h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  line-height: 1.4;
}

.news-ticker h3::before {
  content: "✨";
  font-size: 20px;
}

.news-item {
  font-size: 14px;
  line-height: 2;
  padding-left: 20px;
  position: relative;
  opacity: 0.95;
  animation: fadeInUp 0.3s ease-out;
}

.news-item::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.news-item a {
  color: white;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.news-item a:hover {
  opacity: 0.8;
}

.news-date {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  margin-right: 8px;
  font-size: 14px;
}

/* ✅ ВИПРАВЛЕНО: Skeleton loader для новин */
.news-skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
}

.news-skeleton-line {
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  animation: skeleton-loading 1.5s infinite;
}

.news-skeleton-line:nth-child(2) {
  width: 80%;
}

.news-skeleton-line:nth-child(3) {
  width: 90%;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.lang-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  /* ✅ ВИПРАВЛЕНО: резервуємо висоту для запобігання CLS */
  min-height: 48px;
}

/* ✅ НОВИЙ: Skeleton для кнопок мов */
.lang-btn-skeleton {
  width: 140px;
  height: 44px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

.lang-btn {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #007bff;
  color: white;
  transition: all 0.3s;
  font-family: 'Georgia', serif;
  /* ✅ ВИПРАВЛЕНО: фіксована висота */
  min-height: 44px;
  line-height: 1.2;
}

.lang-btn.active {
  background: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.lang-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.section {
  margin: 40px 0;
  text-align: left;
}

.section[dir="rtl"],
body[dir="rtl"] .section {
  text-align: right;
}

.section h2 {
  font-size: clamp(20px, 4vw, 24px);
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.section a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}

.section a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.view-all-link, .btn-view-all {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  background: #007bff;
  color: white !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-weight: 500;
  /* ✅ ВИПРАВЛЕНО: фіксована висота */
  min-height: 40px;
  line-height: 1.2;
}

.view-all-link:hover, .btn-view-all:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  text-decoration: none;
}

.footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #666;
}

/* ============================================
   МОДАЛЬНІ ВІКНА
   ============================================ */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  backdrop-filter: blur(3px);
  /* ✅ ВИПРАВЛЕНО: content-visibility для performance */
  content-visibility: auto;
}

.modal-content {
  background: white;
  max-width: 700px;
  margin: 50px auto;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease-out;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  /* ✅ ВИПРАВЛЕНО: contain для ізоляції layout */
  contain: layout style paint;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 15px;
}

.modal-header h2 {
  font-size: clamp(22px, 4vw, 28px);
  color: #333;
  line-height: 1.2;
}

.close-btn {
  padding: 10px 24px;
  background: #666;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  font-family: 'Georgia', serif;
  min-height: 40px;
}

.close-btn:hover {
  background: #555;
}

.media-item {
  padding: 15px;
  margin: 12px 0;
  background: #f9f9f9;
  border-left: 4px solid #007bff;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  /* ✅ ВИПРАВЛЕНО: мінімальна висота */
  min-height: 60px;
}

.media-item:hover {
  background: #e8f4ff;
  transform: translateX(5px);
}

.media-item-title {
  font-size: 17px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

.media-item-link {
  padding: 8px 20px;
  background: #17a2b8;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s;
  white-space: nowrap;
}

.media-item-link:hover {
  background: #138496;
}

/* ============================================
   ФІЛЬТРИ КОЛЕКЦІЙ
   ============================================ */

.collection-filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-family: inherit;
  text-align: left;
  position: relative;
  overflow: hidden;
  /* ✅ ВИПРАВЛЕНО: фіксована висота */
  min-height: 48px;
}

.collection-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.collection-filter-btn:hover::before {
  left: 100%;
}

.collection-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.collection-filter-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.collection-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.collection-name {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

.collection-count {
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.collection-filter-btn.active .collection-count {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   СПИСОК ВІРШІВ
   ============================================ */

.poem-list-item {
  padding: 14px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* ✅ ВИПРАВЛЕНО: мінімальна висота */
  min-height: 50px;
}

.poem-list-item:hover {
  background: #f8f9fa;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.poem-item-title {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-bottom: 4px;
  flex: 1;
  line-height: 1.4;
}

.poem-item-date {
  font-size: 12px;
  color: #888;
  margin-left: 15px;
  white-space: nowrap;
}

.lang-link {
  display: inline-block;
  padding: 8px 15px;
  margin: 5px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

.lang-link:hover {
  background: #5568d3;
  transform: translateY(-2px);
}

#poetrySearchInput {
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  /* ✅ ВИПРАВЛЕНО: фіксована висота */
  min-height: 44px;
}

#poetrySearchInput:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   КОМПАКТНИЙ АУДІОПЛЕЄР (ДЛЯ МУЗИКИ)
   ============================================ */

.audio-compact-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  border: 2px solid #dee2e6;
  margin: 10px 0;
  transition: all 0.3s ease;
  /* ✅ ВИПРАВЛЕНО: мінімальна висота */
  min-height: 68px;
}

.audio-compact-container:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.audio-compact-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.audio-compact-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.5);
}

.audio-compact-btn:active {
  transform: scale(0.95);
}

.audio-compact-btn.playing {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  animation: compactPulse 2s infinite;
}

@keyframes compactPulse {
  0%, 100% {
    box-shadow: 0 3px 10px rgba(240, 147, 251, 0.4);
  }
  50% {
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.6);
  }
}

.audio-compact-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.audio-compact-title {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.audio-compact-progress {
  position: relative;
  width: 100%;
  height: 5px;
  background: #dee2e6;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.audio-compact-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
  transition: width 0.1s linear;
  width: 0%;
}

.audio-compact-time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6c757d;
  font-family: 'Courier New', monospace;
}

/* Кнопка SoundCloud */
.audio-soundcloud-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #ff8800 0%, #ff5500 100%);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 36px;
}

.audio-soundcloud-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.5);
}

.audio-icon {
  font-size: 18px;
  line-height: 1;
}

.audio-label {
  font-size: 13px;
}

/* ============================================
   МІНІМАЛЬНИЙ ПЛЕЄР ДЛЯ ВІРШІВ
   ============================================ */

.poem-audio-inline-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
  border-radius: 8px;
  border: 2px solid #d0d7de;
  margin: 15px 0;
  max-width: 400px;
  /* ✅ ВИПРАВЛЕНО: мінімальна висота */
  min-height: 52px;
}

.poem-audio-btn-mini {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 32px;
}

.poem-audio-btn-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.5);
}

.poem-audio-btn-mini.playing {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  animation: miniPulse 2s infinite;
}

@keyframes miniPulse {
  0%, 100% {
    box-shadow: 0 2px 6px rgba(240, 147, 251, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.6);
  }
}

.poem-audio-icon {
  font-size: 14px;
  line-height: 1;
}

.poem-audio-text {
  font-size: 12px;
}

.poem-audio-progress-mini {
  flex: 1;
  height: 4px;
  background: #d0d7de;
  border-radius: 2px;
  overflow: hidden;
  min-width: 100px;
}

.poem-audio-bar-mini {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: width 0.1s linear;
  width: 0%;
}

.poem-audio-time-mini {
  font-size: 11px;
  color: #6c757d;
  font-family: 'Courier New', monospace;
  min-width: 35px;
  text-align: right;
}

/* Кнопка-посилання на SoundCloud для вірша */
.poem-audio-soundcloud {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #ff8800 0%, #ff5500 100%);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.3);
  margin: 15px 0;
  min-height: 36px;
}

.poem-audio-soundcloud:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.5);
}

/* Помилка аудіо */
.audio-error {
  color: #dc3545;
  font-size: 13px;
  padding: 8px;
  background: #f8d7da;
  border-radius: 6px;
  text-align: center;
}

/* Посилання на аудіо */
.audio-compact-link {
  color: #007bff;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.audio-compact-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* ============================================
   YOUTUBE VIDEO EMBEDS
   ============================================ */

/* Контейнер для звичайних відео 16:9 (розділ Відео) */
.video-container-16-9 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  /* ✅ ВИПРАВЛЕНО: contain для performance */
  contain: layout style paint;
}

.video-container-16-9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Контейнер для вертикальних відео 9:16 (візуалізація віршів) */
.poem-video-container {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 25px auto;
}

.video-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  /* ✅ ВИПРАВЛЕНО: contain для performance */
  contain: layout style paint;
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Сітка відео */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.video-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* ✅ ВИПРАВЛЕНО: contain для performance */
  contain: layout style paint;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Модалка для повноекранного відео */
.video-modal-wide {
  max-width: 1000px;
}

/* ============================================
   ПРОКРУТКА
   ============================================ */

.modal-content::-webkit-scrollbar {
  width: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #5568d3;
}

.modal-content {
  scrollbar-width: thin;
  scrollbar-color: #667eea #f1f1f1;
}

/* ============================================
   RTL ПІДТРИМКА
   ============================================ */

[dir="rtl"] .collection-filter-btn {
  text-align: right;
}

[dir="rtl"] .poem-list-item {
  border-left: none;
  border-right: 4px solid #667eea;
}

[dir="rtl"] .poem-list-item:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .media-item {
  border-left: none;
  border-right: 4px solid #007bff;
}

[dir="rtl"] .media-item:hover {
  transform: translateX(-5px);
}

/* ============================================
   АДАПТИВНІСТЬ
   ============================================ */

@media (max-width: 768px) {
  .collection-filter-btn {
    padding: 10px 12px;
  }
  
  .collection-icon {
    font-size: 18px;
  }
  
  .collection-name {
    font-size: 13px;
  }
  
  .collection-count {
    font-size: 11px;
    padding: 2px 6px;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .video-container-16-9 {
    border-radius: 8px;
  }
  
  .poem-video-container {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .lang-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* ✅ ВИПРАВЛЕНО: Skeleton кнопок на 2 колонки */
  .lang-btn-skeleton {
    width: calc(50% - 8px);
  }

  .modal-content {
    padding: 25px;
  }

  .media-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  /* Компактний плеєр на мобільних */
  .audio-compact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .audio-compact-btn {
    width: 100%;
    height: 50px;
    border-radius: 10px;
  }
  
  .audio-compact-info {
    order: -1;
  }
  
  /* Міні плеєр для віршів на мобільних */
  .poem-audio-inline-player {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-width: 100%;
  }
  
  .poem-audio-btn-mini {
    width: 100%;
    justify-content: center;
  }
  
  .poem-audio-progress-mini {
    order: 1;
  }
  
  .poem-audio-time-mini {
    text-align: center;
  }
}
/* ============================================
   SKELETON FIX - НЕ ПЕРЕХОПЛЮВАТИ КЛІКИ
   ============================================ */
.news-skeleton,
.news-skeleton-line,
.lang-btn-skeleton {
  pointer-events: none !important;
}
