@media (max-width: 480px) {
  .mobile-menu__trigger {
    display: inline-block;
    z-index: 101;
  }

  .default-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .default-header .default-logo img {
    width: 150px;
    height: inherit;
  }

  .default-header .link-text {
    display: none;
  }

  .default-header .default-navigation {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #13A6EB;
    z-index: 100;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .default-header .default-navigation.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
  }

  .default-header .default-navigation .navigation-item {
    margin-right: 0;
    color: #fff;
    margin-bottom: 30px;
  }

  .categories-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .video-container .video-block .video-placeholder .icon {
    width: 10vw;
    height: 10vw;
  }
}

/* Пример CSS для адаптации картинки под мобильный вид */
@media (max-width: 767px) {
  /* Укажите селектор картинки */
  .article-content img {
    /* Устанавливаем максимальную ширину для картинки */
    max-width: 100%;
    /* Центрируем картинку по горизонтали */
    margin-left: auto;
    margin-right: auto;
    /* Опционально, добавляем отступы сверху и снизу для визуальной привлекательности */
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

