/* =========================================================
   СТИЛЬ КНОПКИ "ЗАГРУЗИТЬ ЕЩЁ" (ЗОЛОТО + ТЕКСТУРА)
   ========================================================= */

/* Центрируем кнопку под каталогом */
ul[data-drupal-views-infinite-scroll-pager] {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin: 60px 0 !important;
    padding: 0 !important;
}

ul[data-drupal-views-infinite-scroll-pager] li.pager__item {
    display: inline-block !important;
    list-style: none !important;
}

/* Сама кнопка - копия стиля из .videoblog .more a.button */
ul[data-drupal-views-infinite-scroll-pager] .button {
    font-size: 18px !important;
    display: inline-block !important;
    height: 41px !important;
    line-height: 26px !important; /* Центровка текста по высоте */
    padding: 7px 40px 1px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;

    /* Фон и текстура из твоего файла */
    background-color: #d0b483 !important;
    background-image: url(/img/texture-small-light.svg) !important;
    background-position: center center !important;
    background-repeat: repeat !important;

    /* Анимация и тень */
    box-shadow: 0 0 0 0 #a38d68;
    filter: contrast(1.0);
    transition: box-shadow .25s ease-in, filter .25s ease-in !important;
}

/* Эффект при наведении */
ul[data-drupal-views-infinite-scroll-pager] .button:hover {
    filter: contrast(1.1) !important;
    box-shadow: 0 4px 15px rgba(163, 141, 104, 0.5) !important;
    color: #fff !important;
}