/* ==========================================================
   HOME
   ========================================================== */

.home-page {
    background: #f4f6f8;
}

.home-page .container {
    max-width: 1240px;
}


/* ==========================================================
   ОБЩИЕ ЗАГОЛОВКИ
   ========================================================== */

.home-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.home-section-title h2 {
    margin: 0;

    color: #072746;

    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
}

.home-section-title a {
    color: #eb7424;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.home-section-title a:hover {
    color: #f58a3c;
}


/* ==========================================================
   БАННЕР
   ========================================================== */

.home-hero {
    margin: 20px auto 30px;

    max-width: 1200px;

    overflow: hidden;

    border-radius: 14px;

    background: #072746;
}

.home-hero .carousel-inner {
    overflow: hidden;
}

.home-hero .carousel-inner .item {
    width: 100%;
}

.home-hero .carousel-inner .item img {
    display: block;

    width: 100%;
    height: auto;

    /*
       Не растягиваем.
    */

    object-fit: contain;
}

.home-hero .carousel-indicators {
    bottom: 8px;
}

.home-hero .carousel-indicators li {
    width: 8px;
    height: 8px;

    margin: 0 3px;

    border: 0;

    background: rgba(255,255,255,.55);
}

.home-hero .carousel-indicators .active {
    width: 24px;

    border-radius: 8px;

    background: #fff;
}


/* ==========================================================
   ИГРЫ
   ========================================================== */

.home-games {
    margin-bottom: 38px;
}

.home-games-widget {
    padding: 15px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(7,39,70,.07);
}


/* ==========================================================
   НОВОСТИ
   ========================================================== */

.home-news {
    margin-bottom: 42px;
}

.home-news-layout {
    display: grid;

    grid-template-columns: 330px minmax(0, 1fr);

    gap: 25px;

    align-items: start;
}


/* ==========================================================
   ЛЕВАЯ КОЛОНКА
   ========================================================== */

.home-news-latest {
    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(7,39,70,.07);

    overflow: hidden;
}

.home-news-latest-title {
    padding: 15px 18px;

    color: #fff;

    background: #072746;

    font-size: 17px;
    font-weight: 800;
}

.home-news-latest-list {
    padding: 7px 15px;
}

.latest-news-item {
    display: grid;

    grid-template-columns: 45px minmax(0,1fr);

    gap: 12px;

    padding: 3px 0;

    border-bottom: 1px solid #e8edf1;

    color: #17212b;

    text-decoration: none;
}

.latest-news-item:last-child {
    border-bottom: 0;
}

.latest-news-item:hover {
    color: #eb7424;
}

.latest-news-image {
    width: 40px;
    height: 40px;

    overflow: hidden;

    border-radius: 7px;

    background: #eef2f5;
}

.latest-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.latest-news-content {
    min-width: 0;
}

.latest-news-date {
    margin-bottom: 1px;

    color: #8b98a5;

    font-size: 11px;
}

.latest-news-title {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.home-news-all {
    display: block;

    padding: 13px 18px;

    color: #eb7424;

    border-top: 1px solid #e8edf1;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

/* ==========================================================
   ОСНОВНЫЕ НОВОСТИ
   ========================================================== */

.home-news-main {
    min-width: 0;
}

.home-news-main-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* ==========================================================
   КАРТОЧКА
   ========================================================== */

.main-news-card {
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 4px 16px rgba(7,39,70,.07);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.main-news-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(7,39,70,.11);
}


/* ==========================================================
   КАРТИНКИ ОБЫЧНЫХ НОВОСТЕЙ
   ========================================================== */

.main-news-card:not(:first-child) .main-news-image {
    display: block;

    width: 100%;

    height: 150px;

    aspect-ratio: auto;

    overflow: hidden;

    background: #eef2f5;
}

.main-news-card:not(:first-child) .main-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* ==========================================================
   ТЕКСТ ОБЫЧНЫХ НОВОСТЕЙ
   ========================================================== */

.main-news-card:not(:first-child) .main-news-content {
    padding: 9px 12px 11px;
}

.main-news-card:not(:first-child) .main-news-date {
    margin-bottom: 3px;

    font-size: 10px;
}

.main-news-card:not(:first-child) .main-news-title {
    font-size: 14px;

    line-height: 1.2;
}

.main-news-card:not(:first-child) .main-news-text {
    margin-top: 4px;

    font-size: 11px;

    line-height: 1.25;
}


/* ==========================================================
   ПЕРВАЯ НОВОСТЬ
   ========================================================== */

.main-news-card:first-child {
    grid-column: 1 / -1;
}


/* картинка первой новости */

.main-news-card:first-child .main-news-image {
    display: block;

    width: 100%;

    height: 210px;

    aspect-ratio: auto;

    overflow: hidden;

    background: #eef2f5;
}

.main-news-card:first-child .main-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* текст первой новости */

.main-news-card:first-child .main-news-content {
    padding: 11px 15px 13px;
}

.main-news-card:first-child .main-news-date {
    margin-bottom: 4px;

    font-size: 10px;
}

.main-news-card:first-child .main-news-title {
    font-size: 20px;

    line-height: 1.2;
}

.main-news-card:first-child .main-news-text {
    max-width: 800px;

    margin-top: 5px;

    font-size: 12px;

    line-height: 1.3;
}


/* ==========================================================
   АНОНСЫ
   ========================================================== */

.home-anons {
    margin-bottom: 45px;
}

.home-anons-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.anons-card {
    display: grid;

    grid-template-columns: 65px minmax(0,1fr);

    min-height: 65px;

    overflow: hidden;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 4px 16px rgba(7,39,70,.06);

    color: #17212b;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.anons-card:hover {
    color: #17212b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(7,39,70,.10);
}

.anons-date {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #072746;
}


.anons-date-single {
    display: flex;
    align-items: center;
    justify-content: center;
}


.anons-date-single strong {
    font-size: 21px;
    line-height: 1;

    font-weight: 800;

    white-space: nowrap;
}


.anons-date-range {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 2px;
}


.anons-date-range strong {
    font-size: 18px;
    line-height: 1.1;

    font-weight: 800;

    white-space: nowrap;
}


.anons-date-range span {
    margin: 0;

    font-size: 14px;
    line-height: 1;

    font-weight: 700;
}

.anons-content {
    padding: 13px 14px;
}

.anons-title {
    margin-bottom: 6px;

    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.anons-description {
    color: #687684;

    font-size: 12px;
    line-height: 1.35;
}

.home-news-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 25px;
    align-items: stretch;
}

.home-news-latest {
    height: 100%;
}

.home-news-main {
    min-width: 0;
}


/* ==========================================================
   VK
   ========================================================== */

.home-vk {
    margin-bottom: 40px;
}

.home-vk-widget {
    display: flex;

    justify-content: center;

    padding: 15px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(7,39,70,.07);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .home-news-layout {
        grid-template-columns: 270px minmax(0,1fr);

        gap: 18px;
    }

    .latest-news-item {
        grid-template-columns: 45px minmax(0,1fr);
    }

    .latest-news-image {
        width: 40px;
        height: 40px;
    }

    .latest-news-title {
        font-size: 13px;
    }

    .main-news-title {
        font-size: 15px;
    }

    .main-news-card:first-child .main-news-title {
        font-size: 21px;
    }

    .home-anons-list {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }
}


/* ==========================================================
   МОБИЛЬНЫЙ
   ========================================================== */

@media (max-width: 650px) {

    .home-hero {
        margin-top: 10px;

        border-radius: 8px;
    }

    .home-section-title h2 {
        font-size: 22px;
    }

    .home-news-layout {
        grid-template-columns: 1fr;
    }

    .home-news-main {
        order: 1;
    }

    .home-news-latest {
        order: 2;
    }

    .home-news-main-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .main-news-card:first-child {
        grid-column: 1 / -1;
    }

    .main-news-card:first-child .main-news-image {
        aspect-ratio: 1 / 1;
    }

    .main-news-card:first-child .main-news-title {
        font-size: 20px;
    }

    .home-anons-list {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   МАЛЕНЬКИЙ ТЕЛЕФОН
   ========================================================== */

@media (max-width: 420px) {

    .home-news-main-grid {
        grid-template-columns: 1fr;
    }

    .main-news-card:first-child {
        grid-column: auto;
    }

    .main-news-card:first-child .main-news-image {
        aspect-ratio: 1 / 1;
    }

    .main-news-card:first-child .main-news-title {
        font-size: 19px;
    }

}
/* ==========================================================
   HOME
   ========================================================== */

.home-page {
    background: #f4f6f8;
}

.home-page .container {
    max-width: 1240px;
}


/* ==========================================================
   ОБЩИЕ ЗАГОЛОВКИ
   ========================================================== */

.home-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.home-section-title h2 {
    margin: 0;

    color: #072746;

    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
}

.home-section-title a {
    color: #eb7424;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.home-section-title a:hover {
    color: #f58a3c;
}


/* ==========================================================
   БАННЕР
   ========================================================== */

.home-hero {
    margin: 20px auto 30px;

    max-width: 1200px;

    overflow: hidden;

    border-radius: 14px;

    background: #072746;
}

.home-hero .carousel-inner {
    overflow: hidden;
}

.home-hero .carousel-inner .item {
    width: 100%;
}

.home-hero .carousel-inner .item img {
    display: block;

    width: 100%;
    height: auto;

    /*
       Не растягиваем.
    */

    object-fit: contain;
}

.home-hero .carousel-indicators {
    bottom: 8px;
}

.home-hero .carousel-indicators li {
    width: 8px;
    height: 8px;

    margin: 0 3px;

    border: 0;

    background: rgba(255,255,255,.55);
}

.home-hero .carousel-indicators .active {
    width: 24px;

    border-radius: 8px;

    background: #fff;
}


/* ==========================================================
   ИГРЫ
   ========================================================== */

.home-games {
    margin-bottom: 38px;
}

.home-games-widget {
    padding: 15px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(7,39,70,.07);
}





/* ==========================================================
   VK
   ========================================================== */

.home-vk {
    margin-bottom: 40px;
}

.home-vk-widget {
    display: flex;

    justify-content: center;

    padding: 15px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(7,39,70,.07);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .home-news-layout {
        grid-template-columns: 270px minmax(0,1fr);

        gap: 18px;
    }

    .latest-news-item {
        grid-template-columns: 65px minmax(0,1fr);
    }

    .latest-news-image {
        width: 65px;
        height: 65px;
    }

    .latest-news-title {
        font-size: 13px;
    }

    .main-news-title {
        font-size: 15px;
    }

    .main-news-card:first-child .main-news-title {
        font-size: 21px;
    }

    .home-anons-list {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }
}


/* ==========================================================
   МОБИЛЬНЫЙ
   ========================================================== */

@media (max-width: 650px) {

    .home-hero {
        margin-top: 10px;

        border-radius: 8px;
    }

    .home-section-title h2 {
        font-size: 22px;
    }

    .home-news-layout {
        grid-template-columns: 1fr;
    }

    .home-news-main {
        order: 1;
    }

    .home-news-latest {
        order: 2;
    }

    .home-news-main-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .main-news-card:first-child {
        grid-column: 1 / -1;
    }

    .main-news-card:first-child .main-news-image {
        aspect-ratio: 1 / 1;
    }

    .main-news-card:first-child .main-news-title {
        font-size: 20px;
    }

    .home-anons-list {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   МАЛЕНЬКИЙ ТЕЛЕФОН
   ========================================================== */

@media (max-width: 420px) {

    .home-news-main-grid {
        grid-template-columns: 1fr;
    }

    .main-news-card:first-child {
        grid-column: auto;
    }

    .main-news-card:first-child .main-news-image {
        aspect-ratio: 1 / 1;
    }

    .main-news-card:first-child .main-news-title {
        font-size: 19px;
    }

}






/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
    position: relative;
    width: 100%;

    background: #fff;
    border-bottom: 1px solid #dfe5ea;

    z-index: 1000;
}

.site-header-inner {
    max-width: 1240px;

    margin: 0 auto;
    padding: 0 20px;
}

.site-header-main {
    width: 100%;
}


/* ==========================================================
   ВЕРХНЯЯ ЧАСТЬ
   ========================================================== */

.site-header-top {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 125px;

    padding: 10px 0;
}


/* ==========================================================
   ЛОГОТИП
   ========================================================== */

.site-logo {
    flex: 0 0 120px;

    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 25px;

    text-decoration: none;
}

.site-logo img {
    display: block;

    width: 120px;
    height: 120px;

    object-fit: contain;
}


/* ==========================================================
   НАЗВАНИЕ
   ========================================================== */

.site-header-title {
    flex: 1;

    color: #072746;

    font-size: 24px;
    line-height: 1.15;

    font-weight: 800;
}


/* ==========================================================
   ПОИСК
   ========================================================== */

.site-search {
    flex: 0 0 250px;
    width: 200px;
    margin-left: 10px;
}

/* Форма */
.site-search form.searh {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
}

/* Убираем fieldset */
.site-search fieldset {
    display: flex;

    width: 100%;
    height: 40px;

    margin: 0;
    padding: 0;

    border: 0;

    gap: 0;
}

/* Поле поиска */
.site-search input#search {
    flex: 1 1 auto;

    width: auto;
    height: 40px;

    margin: 0;
    padding: 0 12px;

    box-sizing: border-box;

    background: #f4f6f8;

    border: 1px solid #d8e0e6;
    border-right: 0;

    border-radius: 6px 0 0 6px;

    color: #17212b;

    font-size: 14px;

    outline: none;
}

.site-search input#search:focus {
    background: #fff;

    border-color: #072746;
}


/* ==========================================================
   КНОПКА ПОИСКА
   ========================================================== */

.site-search input.btn-searh {
    position: relative;

    flex: 0 0 42px;

    width: 42px;
    height: 40px;

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    background-color: #072746;

    border: 1px solid #072746;
    border-radius: 0 6px 6px 0;

    cursor: pointer;

    /* Убираем текст */
    font-size: 0;

    /* Лупа */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'%3E%3C/circle%3E%3Cline x1='16.5' y1='16.5' x2='22' y2='22'%3E%3C/line%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px 17px;
}

.site-search input.btn-searh:hover {
    background-color: #223e5a;

    border-color: #223e5a;
}


/* ==========================================================
   MENU
   ========================================================== */

.site-navigation {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}


/* ==========================================================
   ОСНОВНОЕ МЕНЮ
   ========================================================== */

.site-menu {
    display: flex !important;

    align-items: center;

    flex-wrap: wrap;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.site-menu li {
    position: relative;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.site-menu li a {
    text-decoration: none !important;
}


/* ==========================================================
   ПУНКТЫ ПЕРВОГО УРОВНЯ
   ========================================================== */

.site-menu > li > a {
    display: block;

    padding: 9px 12px;

    color: #072746;

    font-size: 14px;
    line-height: 20px;
    font-weight: 700;

    background: transparent;

    border-radius: 5px;

    cursor: pointer;

    transition:
        color .2s ease,
        background-color .2s ease;
}

.site-menu > li > a:hover,
.site-menu > li.active > a {
    color: #fff;

    background: #223e5a;
}


/* ==========================================================
   ВЫПАДАЮЩИЕ ПУНКТЫ — DESKTOP
   ========================================================== */

.site-menu > li > .site-menu-sub {
    position: absolute;

    top: 100%;
    left: 0;

    display: none;

    min-width: 240px;

    margin: 0 !important;
    padding: 6px 0 !important;

    list-style: none !important;

    background: #fff;

    border: 0;

    border-radius: 0 0 7px 7px;

    box-shadow:
        0 8px 25px rgba(7,39,70,.18);

    z-index: 9999;
}


/* На компьютере открытие по наведению */

@media (min-width: 768px) {

    .site-menu > li:hover > .site-menu-sub {
        display: block;
    }

}


/* ==========================================================
   ПУНКТЫ ПОДМЕНЮ
   ========================================================== */

.site-menu-sub li {
    display: block;

    width: 100%;
}

.site-menu-sub li a {
    display: block;

    width: 100%;

    padding: 9px 15px;

    color: #072746;

    background: #fff;

    font-size: 14px;

    line-height: 1.3;

    box-sizing: border-box;
}

.site-menu-sub li a:hover,
.site-menu-sub li.active > a {
    color: #fff;

    background: #223e5a;
}


/* ==========================================================
   BOOTSTRAP НЕ ДОЛЖЕН ЛОМАТЬ МЕНЮ
   ========================================================== */

.site-navigation .navbar-nav,
.site-navigation .nav {
    float: none !important;

    margin: 0 !important;
}

.site-navigation ul {
    margin-top: 0;
    margin-bottom: 0;
}


/* ==========================================================
   НОВОЕ КОМПАКТНОЕ МОБИЛЬНОЕ МЕНЮ
   ========================================================== */

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 767px) {

    /* Кнопка МЕНЮ */

    .site-navigation .mobile-menu-toggle {
        display: flex !important;

        align-items: center;

        width: 100%;
        height: 42px;

        margin: 0 !important;
        padding: 0 12px !important;

        color: #fff !important;
        background: #072746 !important;

        border: 0 !important;
        border-radius: 5px !important;

        font-size: 14px !important;
        font-weight: 700 !important;

        cursor: pointer;
    }

    .mobile-menu-icon {
        margin-right: 9px;

        font-size: 20px;
        line-height: 1;
    }


    /* Контейнер меню ЗАКРЫТ */

    .site-navigation .mobile-menu-container {
        display: none !important;

        width: 100% !important;
    }


    /* Контейнер ОТКРЫТ */

    .site-navigation .mobile-menu-container.is-open {
        display: block !important;
    }


    /* Само меню */

    .site-navigation .mobile-menu-container .site-menu {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .site-navigation .mobile-menu-container .site-menu > li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .site-navigation .mobile-menu-container .site-menu > li > a {
        display: block !important;

        width: 100% !important;

        padding: 10px 12px !important;

        box-sizing: border-box;

        color: #072746 !important;
        background: #fff !important;

        border-bottom: 1px solid #e5e9ed !important;

        border-radius: 0 !important;
    }


    /* Подменю закрыто */

    .site-navigation .mobile-menu-container .site-menu > li > .site-menu-sub {
        position: static !important;

        display: none !important;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #f5f7f9 !important;

        box-shadow: none !important;
    }


    /* Подменю открыто */

    .site-navigation .mobile-menu-container
    .site-menu > li.menu-open > .site-menu-sub {
        display: block !important;
    }


    /* Подпункты */

    .site-navigation .mobile-menu-container .site-menu-sub li {
        display: block !important;

        width: 100% !important;
    }

    .site-navigation .mobile-menu-container .site-menu-sub li a {
        display: block !important;

        width: 100% !important;

        padding: 9px 12px 9px 28px !important;

        box-sizing: border-box;

        color: #072746 !important;
        background: #f5f7f9 !important;

        border-bottom: 1px solid #e5e9ed !important;

        font-size: 13px !important;
    }

}

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
    width: 100%;

    margin-top: 50px;

    background: #fff;
    color: #17212b;
}


/* ==========================================================
   ОСНОВНОЙ БЛОК
   ========================================================== */

.site-footer-inner {
    display: grid;

    grid-template-columns:
        260px
        minmax(0, 1fr)
        minmax(280px, 360px);

    gap: 35px;

    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
    padding: 40px 20px;

    box-sizing: border-box;

    border-top: 1px solid #e3e8ec;
}


/* ==========================================================
   КОНТАКТЫ
   ========================================================== */

.site-footer-contacts {
    min-width: 0;
}

.site-footer-logo {
    display: block;

    width: 70px;
    height: 70px;

    margin-bottom: 15px;
}

.site-footer-logo img {
    display: block;

/*    width: 70px;*/
    height: 70px;

    object-fit: contain;
}

.site-footer-contacts p {
    margin: 0 0 8px;

    color: #687684;

    font-size: 12px;
    line-height: 1.4;
}

.site-footer-contacts strong {
    color: #17212b;
}

.site-footer-contacts a {
    color: #eb7424;

    text-decoration: none;
}

.site-footer-contacts a:hover {
    color: #f58a3c;
}


/* ==========================================================
   СОЦИАЛЬНЫЕ СЕТИ
   ========================================================== */

.site-footer-social {
    display: flex;

    gap: 8px;

    margin-top: 18px;
}

.site-footer-social a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 0;

    background: #f1f4f6;

    border-radius: 6px;

    transition:
        background .2s ease,
        transform .2s ease;
}

.site-footer-social a:hover {
    background: #e5eaee;

    transform: translateY(-2px);
}

.site-footer-social img {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;
}


/* ==========================================================
   ОСНОВНОЕ МЕНЮ
   ========================================================== */

.site-footer-menu {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    align-content: start;

    gap: 14px 30px;

    min-width: 0;

    padding-top: 4px;
}

.site-footer-menu a {
    display: block;

    min-width: 0;

    color: #072746;

    font-size: 13px;
    line-height: 1.3;

    font-weight: 800;

    text-decoration: none;

    transition: color .2s ease;
}

.site-footer-menu a:hover {
    color: #eb7424;
}


/* ==========================================================
   VK
   ========================================================== */

.site-footer-vk {
    width: 100%;
    min-width: 0;
}

.site-footer-vk h4 {
    margin: 0 0 12px;

    color: #072746;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 800;
}

#vk_groups_footer {
    display: block;

    width: 100%;
    max-width: 100%;

    min-width: 0;

    overflow: hidden;
}

#vk_groups_footer iframe {
    display: block;

    max-width: 100% !important;
}


/* ==========================================================
   НИЖНЯЯ СТРОКА
   ========================================================== */

.site-footer-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    padding: 15px 20px;

    box-sizing: border-box;

    border-top: 1px solid #e3e8ec;

    color: #8b98a5;

    font-size: 11px;
    line-height: 1.4;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

    .site-footer-inner {
        grid-template-columns:
            230px
            minmax(0, 1fr)
            minmax(240px, 300px);

        gap: 25px;
    }

}


/* ==========================================================
   TABLET / МАЛЕНЬКИЙ НОУТБУК
   ========================================================== */

@media (max-width: 850px) {

    .site-footer-inner {
        grid-template-columns:
            230px
            minmax(0, 1fr);

        gap: 30px;
    }

    .site-footer-vk {
        grid-column: 1 / -1;
    }

    #vk_groups_footer {
        max-width: 420px;
    }

}


/* ==========================================================
   МОБИЛЬНЫЙ
   ========================================================== */

@media (max-width: 600px) {

    .site-footer {
        margin-top: 35px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px 15px;
    }

    .site-footer-vk {
        grid-column: auto;
    }

    #vk_groups_footer {
        max-width: 100%;
    }

    .site-footer-menu {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px 20px;
    }

    .site-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 15px;
    }

}


/* ==========================================================
   МАЛЕНЬКИЙ ТЕЛЕФОН
   ========================================================== */

@media (max-width: 420px) {

    .site-footer-menu {
        grid-template-columns: 1fr;
    }

}





/* ==========================================================
   ЗАЩИТА ОТ ВЫЛЕЗАНИЯ ЗА КОНТЕЙНЕР
   ========================================================== */

/* ==========================================================
   GALLERY PAGE
   ========================================================== */

.gallery-page {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 30px 0 50px;
}


/* ==========================================================
   HEADER
   ========================================================== */

.gallery-page-header {
    margin-bottom: 30px;
}

.gallery-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 15px;

    color: #7a8794;

    font-size: 13px;
}

.gallery-breadcrumbs a {
    color: #7a8794;
    text-decoration: none;
}

.gallery-breadcrumbs a:hover {
    color: #072746;
}

.gallery-breadcrumbs span {
    color: #b5bec7;
}

.gallery-page-header h1 {
    margin: 0;

    color: #072746;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.gallery-page-content {
    width: 100%;

    margin-bottom: 40px;

    color: #333;

    font-size: 15px;
    line-height: 1.6;
}

.gallery-page-content img {
    max-width: 100%;
    height: auto;
}


/* ==========================================================
   GALLERY
   ========================================================== */

.gallery-section {
    width: 100%;

    margin-top: 35px;
}

.gallery-section h2 {
    margin: 0 0 20px;

    color: #072746;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}


/* ==========================================================
   SLIDER
   ========================================================== */

.gallery-slider {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 12px;

    background: #f1f4f7;
}

.gallery-slider .swiper-wrapper {
    height: 100%;
}

.gallery-slider .swiper-slide {
    width: auto;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider .swiper-slide img {
    display: block;

    max-width: 100%;
    max-height: 460px;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;
}


/* ==========================================================
   ARROWS
   ========================================================== */

.gallery-slider-prev,
.gallery-slider-next {
    width: 45px;
    height: 45px;

    margin-top: -22px;

    border-radius: 50%;

    background: #072746;

    transition: background .2s ease;
}

.gallery-slider-prev:hover,
.gallery-slider-next:hover {
    background: #223e5a;
}

.gallery-slider-prev:after,
.gallery-slider-next:after {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .gallery-page {
        padding: 20px 15px 40px;
        box-sizing: border-box;
    }

    .gallery-page-header h1 {
        font-size: 27px;
    }

    .gallery-page-content {
        font-size: 14px;
    }

    .gallery-section h2 {
        font-size: 21px;
    }

    .gallery-slider {
        height: 350px;
    }

    .gallery-slider .swiper-slide img {
        max-height: 320px;
    }

    .gallery-slider-prev,
    .gallery-slider-next {
        width: 38px;
        height: 38px;

        margin-top: -19px;
    }

}

/* ==========================================================
   DIRECTORY PAGE
   ========================================================== */

.directory-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 0 50px;
}


/* ==========================================================
   HEADER
   ========================================================== */

.directory-header {
    margin-bottom: 30px;
}

.directory-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 15px;

    color: #7a8794;
    font-size: 13px;
}

.directory-breadcrumbs a {
    color: #7a8794;
    text-decoration: none;
}

.directory-breadcrumbs a:hover {
    color: #072746;
}

.directory-breadcrumbs span {
    color: #b5bec7;
}

.directory-header h1 {
    margin: 0;

    color: #072746;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}


/* ==========================================================
   FILTER
   ========================================================== */

.directory-filter {
    width: 100%;
    margin-bottom: 30px;

    padding: 25px;

    background: #fff;

    border: 1px solid #e1e6eb;
    border-radius: 12px;

    box-sizing: border-box;

    box-shadow: 0 5px 20px rgba(7, 39, 70, .06);
}


/* ==========================================================
   FILTER SECTION
   ========================================================== */

.directory-filter-section {
    margin-bottom: 24px;
}

.directory-filter-section:last-of-type {
    margin-bottom: 20px;
}

.directory-filter-title {
    margin-bottom: 12px;

    color: #072746;

    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}


/* ==========================================================
   WHO
   ========================================================== */

.directory-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.directory-option {
    position: relative;

    cursor: pointer;
}

.directory-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.directory-option span {
    display: block;

    padding: 9px 18px;

    color: #072746;
    background: #f1f4f7;

    border: 1px solid #dce3e9;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.directory-option:hover span {
    background: #e7edf2;
}

.directory-option input:checked + span {
    color: #fff;
    background: #072746;
    border-color: #072746;
}


/* ==========================================================
   ALPHABET
   ========================================================== */

.directory-alphabet {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.directory-alphabet-group {
    width: 100%;
}

.directory-alphabet-label {
    margin-bottom: 8px;

    color: #7a8794;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.directory-alphabet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}


/*
   Скрываем настоящие radio.
*/

.directory-alphabet-list label {
    position: relative;

    display: block;

    cursor: pointer;
}

.directory-alphabet-list input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/*
   Буква / цифра.
*/

.directory-alphabet-list label span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    box-sizing: border-box;

    color: #072746;
    background: #f1f4f7;

    border: 1px solid #dce3e9;
    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .15s ease;
}

.directory-alphabet-list label:hover span {
    background: #e4eaf0;
    border-color: #cbd5de;
}

.directory-alphabet-list input:checked + span {
    color: #fff;
    background: #072746;
    border-color: #072746;
}

.directory-alphabet-list label:active span {
    transform: scale(.95);
}


/* ==========================================================
   FILTER BUTTONS
   ========================================================== */

.directory-filter-actions {
    display: flex;
    align-items: center;
    gap: 15px;

    padding-top: 5px;
}

.directory-button {
    padding: 11px 28px;

    border: 0;
    border-radius: 6px;

    color: #fff;
    background: #f0811a;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .15s ease;
}

.directory-button:hover {
    background: #d96f0d;
}

.directory-button:active {
    transform: translateY(1px);
}

.directory-reset {
    color: #7a8794;

    font-size: 14px;
    text-decoration: none;
}

.directory-reset:hover {
    color: #072746;
    text-decoration: underline;
}


/* ==========================================================
   YEAR FILTER
   ========================================================== */

.directory-year-filter {
    width: 100%;
    margin-bottom: 30px;
}

.directory-year-slider {
    position: relative;

    width: 100%;
    height: 55px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e1e6eb;
    border-radius: 10px;

    box-shadow: 0 4px 15px rgba(7, 39, 70, .05);
}

.directory-year-slider .swiper-wrapper {
    height: 100%;
}

.directory-year-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 55px;
}


/* ==========================================================
   YEAR NAVIGATION
   ========================================================== */

.directory-year-prev,
.directory-year-next {
    position: absolute;

    top: 0;

    width: 45px;
    height: 55px;

    z-index: 10;

    background-color: #072746;

    cursor: pointer;
}

.directory-year-prev {
    left: 0;
}

.directory-year-next {
    right: 0;
}

.directory-year-prev:after,
.directory-year-next:after {
    position: absolute;

    top: 50%;

    width: 9px;
    height: 9px;

    border-top: 2px solid #fff;
    border-right: 2px solid #fff;

    content: "";
}

.directory-year-prev:after {
    left: 19px;

    transform: translateY(-50%) rotate(-135deg);
}

.directory-year-next:after {
    right: 19px;

    transform: translateY(-50%) rotate(45deg);
}

.directory-year-prev:hover,
.directory-year-next:hover {
    background: #223e5a;
}


/* ==========================================================
   RESULTS
   ========================================================== */

.directory-results {
    width: 100%;
}

.directory-results > * {
    box-sizing: border-box;
}


/*
   Если alley_row создаёт старые блоки —
   оставляем им ширину контейнера.
*/

.directory-results .block-news {
    width: 100%;
}

.directory-results img {
    max-width: 100%;
}


/* ==========================================================
   PAGINATION
   ========================================================== */

.directory-pagination {
    margin-top: 30px;

    display: flex;
    justify-content: center;
}

.directory-pagination .pagination {
    display: flex;
    align-items: center;
    gap: 5px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.directory-pagination .pagination li {
    margin: 0;
    padding: 0;
}

.directory-pagination .pagination a,
.directory-pagination .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    padding: 0 10px;

    box-sizing: border-box;

    color: #072746;
    background: #f1f4f7;

    border: 1px solid #dce3e9;
    border-radius: 5px;

    font-size: 13px;
    text-decoration: none;
}

.directory-pagination .pagination a:hover {
    color: #fff;
    background: #072746;
    border-color: #072746;
}

.directory-pagination .pagination .active a,
.directory-pagination .pagination .active span {
    color: #fff;
    background: #072746;
    border-color: #072746;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .directory-page {
        padding: 20px 15px 40px;
        box-sizing: border-box;
    }

    .directory-header h1 {
        font-size: 27px;
    }

    .directory-filter {
        padding: 18px;
    }

    .directory-filter-options {
        flex-direction: column;
        gap: 7px;
    }

    .directory-option span {
        text-align: center;
    }

    .directory-alphabet-list {
        gap: 4px;
    }

    .directory-alphabet-list label span {
        width: 31px;
        height: 31px;
    }

    .directory-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .directory-button {
        width: 100%;
    }

    .directory-reset {
        text-align: center;
    }

}

/* ==========================================================
   АРХИВ НОВОСТЕЙ
   ========================================================== */

.news-archive {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 0 55px;
}


/* ==========================================================
   ЗАГОЛОВОК
   ========================================================== */

.news-archive-header {
    margin-bottom: 30px;
}

.news-archive-header .bl-breadcrumbs {
    margin-bottom: 15px;

    font-size: 13px;
    color: #7a8792;
}

.news-archive-header .bl-breadcrumbs a {
    color: #072746;
    text-decoration: none;
}

.news-archive-header .bl-breadcrumbs span {
    margin: 0 5px;
    color: #aab2b8;
}

.news-archive-header h1 {
    margin: 0;

    color: #072746;

    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
}


/* ==========================================================
   СПИСОК НОВОСТЕЙ
   ========================================================== */

.news-archive-list {
    width: 100%;
}


/*
   Если arch_list_news_row содержит
   старые классы — этот контейнер всё равно
   задаёт нормальную сетку.
*/

.news-archive-list > * {
    box-sizing: border-box;
}


/* ==========================================================
   ПАГИНАЦИЯ
   ========================================================== */

.news-archive-pagination {
    display: flex;
    justify-content: center;

    width: 100%;

    margin-top: 35px;
}

.news-archive-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.news-archive-pagination .pagination li {
    margin: 0;
    padding: 0;
}

.news-archive-pagination .pagination a,
.news-archive-pagination .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;

    padding: 0 10px;

    border-radius: 6px;

    background: #f1f4f6;

    color: #072746;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.news-archive-pagination .pagination a:hover {
    background: #072746;
    color: #fff;
}

.news-archive-pagination .pagination .active span,
.news-archive-pagination .pagination .active a {
    background: #223e5a;
    color: #fff;
}


/* ==========================================================
   АДАПТИВ
   ========================================================== */

@media (max-width: 768px) {

    .news-archive {
        padding: 25px 15px 40px;
    }

    .news-archive-header h1 {
        font-size: 27px;
    }

    .news-archive-pagination .pagination {
        flex-wrap: wrap;
    }

}

/* ==========================================================
   СТРАНИЦА ДЕЯТЕЛЬНОСТИ
   ========================================================== */

.page-hero {
    margin: 25px 0 30px;
    padding: 25px 30px;

    background: #072746;

    border-radius: 10px;
}

.page-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 12px;

    color: #b6c7ce;

    font-size: 13px;
}

.page-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.page-breadcrumbs a:hover {
    text-decoration: underline;
}

.page-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}


/* ==========================================================
   НАВИГАЦИЯ ПО РАЗДЕЛАМ
   ========================================================== */

.activity-navigation {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 30px;
}

.activity-nav-button {
    display: flex;

    align-items: center;

    width: 100%;
    min-height: 54px;

    padding: 12px 18px;

    border: 1px solid #dfe5ea;
    border-radius: 7px;

    background: #f4f6f8;

    color: #072746;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;

    text-align: left;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.activity-nav-button:hover {
    color: #fff;

    background: #223e5a;

    border-color: #223e5a;

    transform: translateY(-1px);
}


/* ==========================================================
   ДОКУМЕНТ
   ========================================================== */

.activity-documents {
    display: grid;

    grid-template-columns: minmax(0, 1fr) auto;

    align-items: stretch;

    margin-bottom: 30px;

    background: #fff;

    border: 1px solid #dfe5ea;
    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(7,39,70,.06);
}

.activity-documents-title {
    padding: 22px 25px;

    background: #072746;

    color: #fff;
}

.activity-documents-title h2 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.activity-documents-title div {
    color: #b6c7ce;

    font-size: 14px;
}


/* ==========================================================
   СКАЧИВАНИЕ
   ========================================================== */

.activity-download {
    padding: 15px 20px;

    min-width: 330px;
}

.activity-download-title {
    margin-bottom: 8px;

    color: #072746;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.activity-download-list {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;
}

.activity-download-link {
    display: flex;

    align-items: center;
    gap: 6px;

    padding: 7px 10px;

    border-radius: 5px;

    color: #fff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.activity-download-link span {
    opacity: .7;

    font-weight: 400;
}

.activity-download-link.pdf {
    background: #b52b2b;
}

.activity-download-link.xls {
    background: #217346;
}

.activity-download-link.doc {
    background: #2b579a;
}

.activity-download-link.zip,
.activity-download-link.rar {
    background: #6b7280;
}

.activity-download-link.png {
    background: #7c3aed;
}


/* ==========================================================
   КОНТЕНТ
   ========================================================== */

.activity-content {
    margin-bottom: 45px;

    color: #222;

    font-size: 15px;
    line-height: 1.6;
}

.activity-content img {
    max-width: 100%;
    height: auto;
}

.activity-content h2,
.activity-content h3,
.activity-content h4 {
    color: #072746;
}

.activity-content a {
    color: #223e5a;
}

.activity-content a:hover {
    color: #072746;
}


/* ==========================================================
   АДАПТИВ
   ========================================================== */

@media (max-width: 767px) {

    .page-hero {
        padding: 20px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .activity-navigation {
        grid-template-columns: 1fr;
    }

    .activity-documents {
        grid-template-columns: 1fr;
    }

    .activity-download {
        min-width: 0;
    }

}


/* ==========================================================
   СТРАНИЦА НОВОСТИ
   ========================================================== */

.news-page-hero {
    margin: 25px 0 30px;

    padding: 25px 30px;

    background: #072746;

    border-radius: 10px;
}


/* ==========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================== */

.news-page-hero .page-breadcrumbs {
    display: flex;

    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 12px;

    color: #b6c7ce;

    font-size: 13px;
}

.news-page-hero .page-breadcrumbs a {
    color: #fff;

    text-decoration: none;
}

.news-page-hero .page-breadcrumbs a:hover {
    text-decoration: underline;
}


/* ==========================================================
   ЗАГОЛОВОК
   ========================================================== */

.news-page-hero h1 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}


/* ==========================================================
   ДАТА
   ========================================================== */

.news-page-date {
    color: #b6c7ce;

    font-size: 14px;
    line-height: 1.3;
}


/* ==========================================================
   ОСНОВНОЙ БЛОК
   ========================================================== */

.news-page {
    margin-bottom: 45px;
}

.news-page-card {
    width: 100%;

    padding: 30px;

    background: #fff;

    border: 1px solid #dfe5ea;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(7,39,70,.06);
}


/* ==========================================================
   КАРТИНКА
   ========================================================== */

.news-page-image {
    margin: -30px -30px 25px;

    text-align: center;

    overflow: hidden;

    border-radius: 10px 10px 0 0;

    background: #f4f6f8;
}

.news-page-image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 0 auto;
}


/* ==========================================================
   ТЕКСТ
   ========================================================== */

.news-page-text {
    color: #222;

    font-size: 16px;
    line-height: 1.65;
}

.news-page-text p {
    margin: 0 0 18px;
}

.news-page-text h2,
.news-page-text h3,
.news-page-text h4 {
    margin-top: 30px;

    color: #072746;
}

.news-page-text img {
    max-width: 100%;
    height: auto;
}

.news-page-text a {
    color: #223e5a;
}

.news-page-text a:hover {
    color: #072746;
}


/* ==========================================================
   ОБЩИЙ ЗАГОЛОВОК ДОПОЛНИТЕЛЬНЫХ БЛОКОВ
   ========================================================== */

.news-page-block-title {
    margin-bottom: 10px;

    color: #072746;

    font-size: 15px;
    font-weight: 800;
}


/* ==========================================================
   ПРОГРАММА
   ========================================================== */

.news-page-program {
    margin-top: 30px;

    padding: 20px;

    background: #f4f6f8;

    border-left: 4px solid #223e5a;

    border-radius: 5px;
}


/* ==========================================================
   ССЫЛКА
   ========================================================== */

.news-page-link {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #dfe5ea;
}

.news-page-link a {
    color: #223e5a;

    word-break: break-word;

    text-decoration: none;
}

.news-page-link a:hover {
    text-decoration: underline;
}


/* ==========================================================
   ПОДЕЛИТЬСЯ
   ========================================================== */

.news-page-share {
    display: flex;

    align-items: center;
    gap: 15px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #dfe5ea;
}

.news-page-share .news-page-block-title {
    margin: 0;
}


/* ==========================================================
   VK LIKE
   ========================================================== */

.news-page-like {
    margin-top: 20px;

    padding-top: 20px;

    border-top: 1px solid #dfe5ea;
}


/* ==========================================================
   АДАПТИВ
   ========================================================== */

@media (max-width: 767px) {

    .news-page-hero {
        margin-top: 15px;

        padding: 20px;
    }

    .news-page-hero h1 {
        font-size: 24px;
    }

    .news-page-card {
        padding: 20px;
    }

    .news-page-image {
        margin: -20px -20px 20px;
    }

    .news-page-text {
        font-size: 15px;
    }

    .news-page-share {
        display: block;
    }

    .news-page-share .news-page-block-title {
        margin-bottom: 10px;
    }

}

/* ==========================================================
   АРХИВ НОВОСТЕЙ
   ========================================================== */

.news-archive {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 35px 0 50px;
}


/* ==========================================================
   ЗАГОЛОВОК
   ========================================================== */

.news-archive-header {
    margin-bottom: 30px;
}

.news-archive-header .bl-breadcrumbs {
    margin-bottom: 12px;
}

.news-archive-header h1 {
    margin: 0;

    color: #072746;

    font-size: 32px;
    line-height: 1.15;

    font-weight: 800;
}


/* ==========================================================
   СПИСОК
   ========================================================== */

.news-archive-list {
    width: 100%;
}


/* ==========================================================
   ПАГИНАЦИЯ
   ========================================================== */

.news-archive-pagination {
    margin-top: 35px;

    text-align: center;
}

.news-archive-pagination .pagination {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 5px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.news-archive-pagination .pagination li {
    margin: 0;
    padding: 0;
}

.news-archive-pagination .pagination a,
.news-archive-pagination .pagination span {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;

    padding: 0 12px;

    border-radius: 5px;

    color: #072746;
    background: #f1f4f6;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease;
}

.news-archive-pagination .pagination a:hover {
    color: #fff;

    background: #223e5a;
}

.news-archive-pagination .pagination .active a,
.news-archive-pagination .pagination .active span {
    color: #fff;

    background: #072746;
}


/* ==========================================================
   AJAX ЗАГРУЗКА
   ========================================================== */

#news-archive {
    position: relative;

    transition: opacity .2s ease;
}

#news-archive.is-loading {
    opacity: .45;

    pointer-events: none;
}

/* ==========================================================
   СТРЕЛКИ ПАГИНАЦИИ
   ========================================================== */

.news-archive-pagination .pagination li:first-child a,
.news-archive-pagination .pagination li:last-child a {
    width: 42px;
    min-width: 42px;
    padding: 0;

    font-size: 0;
    line-height: 38px;
}


/* Назад */

.news-archive-pagination .pagination li:first-child a::before {
    content: "‹";

    display: block;

    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
}


/* Вперёд */

.news-archive-pagination .pagination li:last-child a::before {
    content: "›";

    display: block;

    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
}


/* Неактивная стрелка */

.news-archive-pagination .pagination li.disabled span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    min-width: 42px;
    height: 38px;

    padding: 0;

    color: #aab4bc;
    background: #f1f4f6;

    border-radius: 5px;

    font-size: 0;
}


/* Назад disabled */

.news-archive-pagination .pagination li.disabled:first-child span::before {
    content: "‹";

    font-size: 28px;
    line-height: 36px;
}


/* Вперёд disabled */

.news-archive-pagination .pagination li.disabled:last-child span::before {
    content: "›";

    font-size: 28px;
    line-height: 36px;
}

/* =========================================================
   СПОРТИВНЫЕ ПЛОЩАДКИ
   ========================================================= */

.base-page {
    padding: 35px 0 60px;
}

.base-page-header {
    margin-bottom: 30px;
}

.base-page-header h1 {
    margin: 15px 0 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   РАЙОНЫ + РЕЗУЛЬТАТЫ
   ========================================================= */

.base-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 25px;
    align-items: start;
}


/* =========================================================
   ЛЕВАЯ КОЛОНКА
   ========================================================= */

.base-districts {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.base-districts-header {
    padding: 22px 22px 18px;
    border-bottom: 1px solid #e5e7eb;
}

.base-districts-header h2 {
    margin: 0 0 5px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.base-districts-header span {
    display: block;
    font-size: 13px;
    color: #8a8f98;
}


/* список */

.base-district-list {
    padding: 7px 0;
}


/* кнопка района */

.base-district-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 46px;

    padding: 10px 18px;

    border: 0;
    border-left: 3px solid transparent;

    background: transparent;

    color: #252a30;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;

    cursor: pointer;

    transition:
        background-color .15s ease,
        color .15s ease,
        border-color .15s ease;
}

.base-district-button span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.base-district-button i {
    flex: 0 0 auto;

    margin-left: 10px;

    font-size: 15px;
    color: #a2a7ad;

    transition:
        transform .15s ease,
        color .15s ease;
}


/* hover */

.base-district-button:hover {
    background: #f5f7f9;
    color: #111820;
}

.base-district-button:hover i {
    color: #333b44;
}


/* активный район */

.base-district-button.active {
    border-left-color: #0b3154;
    background: #edf3f8;
    color: #0b3154;
    font-weight: 600;
}

.base-district-button.active i {
    color: #0b3154;
    transform: translateX(2px);
}


/* =========================================================
   ПРАВАЯ КОЛОНКА
   ========================================================= */

.base-info {
    min-width: 0;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;

    overflow: hidden;
}


/* каждый район */

.base-district-result {
    display: none;
}

.base-district-result.active {
    display: block;
}


/* =========================================================
   ЗАГОЛОВОК ПРАВОЙ КОЛОНКИ
   ========================================================= */

.base-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 25px;

    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.base-result-header h2 {
    margin: 0;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;

    color: #20262d;
}

.base-result-header span {
    flex: 0 0 auto;

    font-size: 13px;
    color: #8a8f98;
}


/* =========================================================
   СПИСОК ПЛОЩАДОК
   ========================================================= */

.base-result-list {
    padding: 0;
}


/*
   ВАЖНО:
   base_top_row может иметь собственную разметку.
   Эти правила не ломают его содержимое, а только
   дают аккуратное разделение строк.
*/

.base-result-list > * {
    border-bottom: 1px solid #edf0f2;
}

.base-result-list > *:last-child {
    border-bottom: 0;
}


/* если base_top_row является ссылкой */

.base-result-list a {
    transition: background-color .15s ease;
}

.base-result-list a:hover {
    text-decoration: none;
}


/* =========================================================
   ПОИСК
   ========================================================= */

.base-search {
    margin-top: 35px;

    padding: 28px;

    background: #fff;

    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.base-search-title {
    margin-bottom: 25px;
}

.base-search-title h2 {
    margin: 0 0 7px;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.base-search-title p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
    color: #858b93;
}


/* =========================================================
   ПРОСТОЙ ПОИСК
   ========================================================= */

.base-search-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin-bottom: 25px;
}

.base-search-simple form {
    margin: 0;
}

.base-search-field {
    display: flex;
    align-items: stretch;

    width: 100%;
}

.base-search-field input {
    flex: 1;
    min-width: 0;

    height: 46px;

    padding: 0 15px;

    border: 1px solid #dfe3e7;
    border-right: 0;

    border-radius: 5px 0 0 5px;

    background: #fff;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: border-color .15s ease;
}

.base-search-field input:focus {
    border-color: #0b3154;
}

.base-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border: 0;
    border-radius: 5px;

    background: #0b3154;
    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color .15s ease,
        opacity .15s ease;
}

.base-search-field .base-search-button {
    border-radius: 0 5px 5px 0;
}

.base-search-button i {
    margin-right: 7px;
}

.base-search-button:hover {
    background: #082641;
}


/* =========================================================
   ФИЛЬТРЫ
   ========================================================= */

.base-filters {
    margin: 0;
}

.base-filter-group {
    margin-bottom: 15px;

    border: 1px solid #e5e7eb;
    border-radius: 6px;

    overflow: hidden;
}

.base-filter-title {
    padding: 14px 17px;

    background: #f6f7f8;

    border-bottom: 1px solid #e5e7eb;

    font-size: 15px;
    font-weight: 700;
    color: #252a30;
}

.base-filter-content {
    padding: 14px 17px;
}

.base-filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px 18px;

    min-height: 34px;
}

.base-filter-row + .base-filter-row {
    margin-top: 10px;
}

.base-filter-label {
    flex: 0 0 180px;

    font-size: 14px;
    color: #555c64;
}


/* radio */

.base-filter-row label {
    display: inline-flex;
    align-items: center;

    margin: 0;

    font-size: 14px;
    line-height: 1.3;

    color: #353b42;

    cursor: pointer;
}

.base-filter-row input[type="radio"] {
    margin: 0 7px 0 0;

    cursor: pointer;
}


/* =========================================================
   КНОПКА ФИЛЬТРОВ
   ========================================================= */

.base-filter-submit {
    display: flex;
    justify-content: flex-end;

    padding-top: 5px;
}

.base-filter-submit .base-search-button {
    min-width: 190px;
}


/* =========================================================
   АДАПТИВ
   ========================================================= */

@media (max-width: 991px) {

    .base-layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 18px;
    }

    .base-result-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .base-search-simple {
        grid-template-columns: 1fr;
    }

    .base-filter-label {
        flex-basis: 100%;
    }

}


@media (max-width: 767px) {

    .base-page {
        padding-top: 20px;
    }

    .base-layout {
        display: block;
    }

    .base-districts {
        margin-bottom: 15px;
    }

    .base-district-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .base-district-button {
        border-bottom: 1px solid #edf0f2;
    }

    .base-district-button.active {
        border-left-color: #0b3154;
    }

    .base-info {
        width: 100%;
    }

    .base-result-header {
        padding: 18px;
    }

    .base-result-header h2 {
        font-size: 19px;
    }

    .base-search {
        padding: 20px;
    }

}


@media (max-width: 480px) {

    .base-district-list {
        display: block;
    }

    .base-search-field {
        display: block;
    }

    .base-search-field input {
        display: block;

        width: 100%;

        border-right: 1px solid #dfe3e7;
        border-radius: 5px;
    }

    .base-search-field .base-search-button {
        width: 100%;
        margin-top: 8px;

        border-radius: 5px;
    }

    .base-filter-row {
        display: block;
    }

    .base-filter-row label {
        margin: 5px 15px 5px 0;
    }

    .base-filter-label {
        margin-bottom: 5px;
    }

}

/* =========================================================
   СТРАНИЦА СПОРТИВНОЙ ПЛОЩАДКИ
   ========================================================= */

.base-page {
    width: 100%;
}

.base-page-header {
    margin-bottom: 30px;
}

.base-page-header h1 {
    margin: 15px 0 0;
}


/* =========================================================
   ОСНОВНАЯ КАРТОЧКА
   ========================================================= */

.base-card {
    display: flex;
    gap: 35px;
    width: 100%;
    margin-bottom: 40px;
}


/* =========================================================
   ФОТО
   ========================================================= */

.base-card-image {
    width: 45%;
    flex-shrink: 0;
}

.base-card-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   ИНФОРМАЦИЯ
   ========================================================= */

.base-card-info {
    flex: 1;
    min-width: 0;
}


/* =========================================================
   АДРЕС
   ========================================================= */

.base-card-address {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.base-card-label {
    margin-bottom: 6px;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
}

.base-card-address-value {
    font-size: 18px;
    line-height: 1.4;
}


/* =========================================================
   ПАРАМЕТРЫ
   ========================================================= */

.base-params {
    width: 100%;
}

.base-param {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

.base-param-name {
    width: 45%;
    padding-right: 15px;
    font-weight: 600;
}

.base-param-value {
    width: 55%;
    color: #555;
}

.base-param-detail {
    color: #777;
}


/* =========================================================
   РЕЙТИНГ
   ========================================================= */

.base-param-rating {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    border-bottom: 0;
}

.base-param-rating .base-param-value {
    font-weight: 600;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .base-card {
        display: block;
    }

    .base-card-image {
        width: 100%;
        margin-bottom: 25px;
    }

    .base-param {
        display: block;
    }

    .base-param-name {
        width: 100%;
        margin-bottom: 4px;
    }

    .base-param-value {
        width: 100%;
    }

}

/* =========================================================
   ПОИСК СПИСОК СПОРТИВНЫХ ПЛОЩАДОК
   ========================================================= */

.base-results {
    width: 100%;
}


/* =========================================================
   КАРТОЧКА ПЛОЩАДКИ
   ========================================================= */

.base-list-item {
    width: 100%;
    margin-bottom: 20px;
}

.base-list-link {
    display: flex;
    width: 100%;
    min-height: 220px;

    text-decoration: none;
    color: inherit;

    background: #fff;
    border: 1px solid #e5e5e5;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.base-list-link:hover {
    color: inherit;
    text-decoration: none;

    border-color: #d0d0d0;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}


/* =========================================================
   ФОТО
   ========================================================= */

.base-list-image {
    width: 300px;
    min-width: 300px;

    background: #f3f3f3;
    overflow: hidden;
}

.base-list-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   ИНФОРМАЦИЯ
   ========================================================= */

.base-list-info {
    flex: 1;
    min-width: 0;

    padding: 25px 30px;
}


/* =========================================================
   НАЗВАНИЕ
   ========================================================= */

.base-list-title {
    margin: 0 0 12px;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;

    color: #222;
}


/* =========================================================
   АДРЕС
   ========================================================= */

.base-list-address {
    margin-bottom: 20px;

    font-size: 15px;
    line-height: 1.4;

    color: #555;
}

.base-list-label {
    font-weight: 600;
    color: #222;
}


/* =========================================================
   ПАРАМЕТРЫ
   ========================================================= */

.base-list-params {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 35px;
    row-gap: 8px;

    max-width: 800px;
}

.base-list-param {
    display: flex;

    min-width: 0;

    font-size: 14px;
    line-height: 1.4;
}

.base-list-param-name {
    margin-right: 8px;

    color: #888;
    white-space: nowrap;
}

.base-list-param-value {
    min-width: 0;

    color: #333;
}


/* =========================================================
   ССЫЛКА "ПОДРОБНЕЕ"
   ========================================================= */

.base-list-more {
    margin-top: 20px;

    font-size: 14px;
    font-weight: 600;

    color: #1b4f72;
}

.base-list-more i {
    margin-left: 5px;

    transition: transform .2s ease;
}

.base-list-link:hover .base-list-more i {
    transform: translateX(4px);
}


/* =========================================================
   ПАГИНАЦИЯ
   ========================================================= */

.base-pagination {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;

    text-align: center;
}

.base-pagination .pagination {
    display: inline-flex;

    margin: 0;
    padding: 0;

    list-style: none;
}

.base-pagination .pagination li {
    margin: 0 3px;
}

.base-pagination .pagination li a,
.base-pagination .pagination li span {
    display: block;

    min-width: 38px;
    padding: 8px 12px;

    text-align: center;

    border: 1px solid #ddd;
    background: #fff;

    color: #333;

    text-decoration: none;
}

.base-pagination .pagination li a:hover {
    background: #f3f3f3;
}

.base-pagination .pagination li.active span {
    background: #333;
    border-color: #333;
    color: #fff;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .base-list-link {
        display: block;
    }

    .base-list-image {
        width: 100%;
        min-width: 0;
        height: 220px;
    }

    .base-list-info {
        padding: 20px;
    }

    .base-list-title {
        font-size: 20px;
    }

    .base-list-params {
        grid-template-columns: 1fr;

        gap: 7px;
    }

}


/* =========================================================
   МАЛЕНЬКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 480px) {

    .base-list-image {
        height: 180px;
    }

    .base-list-info {
        padding: 15px;
    }

    .base-list-title {
        font-size: 18px;
    }

}

/* =========================================================
   СТРАНИЦА БАЗЫ ПЛОЩАДОК
   ========================================================= */

.base-page {
    width: 100%;
    padding: 0 0 50px;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.base-page-header {
    width: 100%;
    margin-bottom: 30px;
}

.base-page-header .bl-breadcrumbs {
    margin-bottom: 15px;

    font-size: 13px;
    line-height: 1.5;

    color: #888;
}

.base-page-header .bl-breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.base-page-header .bl-breadcrumbs a:hover {
    color: #222;
}

.base-page-header h1 {
    margin: 0;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;

    color: #222;
}


/* =========================================================
   РЕЗУЛЬТАТЫ
   ========================================================= */

.base-results {
    width: 100%;
    max-width: 1200px;
}


/* =========================================================
   КАРТОЧКА
   ========================================================= */

.base-list-item {
    width: 100%;
    margin-bottom: 20px;
}

.base-list-link {
    display: flex;

    width: 100%;
    min-height: 220px;

    background: #fff;

    border: 1px solid #e2e2e2;

    color: #333;
    text-decoration: none;

    transition:
        box-shadow .2s ease,
        border-color .2s ease;
}

.base-list-link:hover {
    color: #333;
    text-decoration: none;

    border-color: #ccc;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}


/* =========================================================
   ФОТО
   ========================================================= */

.base-list-image {
    width: 300px;
    min-width: 300px;
    height: 220px;

    overflow: hidden;

    background: #f2f2f2;
}

.base-list-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   ИНФОРМАЦИЯ
   ========================================================= */

.base-list-info {
    flex: 1;

    min-width: 0;

    padding: 25px 30px;
}


/* =========================================================
   НАЗВАНИЕ
   ========================================================= */

.base-list-title {
    margin: 0 0 12px;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    color: #222;
}


/* =========================================================
   АДРЕС
   ========================================================= */

.base-list-address {
    margin-bottom: 20px;

    font-size: 15px;
    line-height: 1.5;

    color: #555;
}

.base-list-label {
    font-weight: 600;
    color: #222;
}


/* =========================================================
   ПАРАМЕТРЫ
   ========================================================= */

.base-list-params {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 40px;
    row-gap: 8px;

    max-width: 850px;
}

.base-list-param {
    display: flex;

    min-width: 0;

    font-size: 14px;
    line-height: 1.4;
}

.base-list-param-name {
    margin-right: 8px;

    color: #888;

    white-space: nowrap;
}

.base-list-param-value {
    min-width: 0;

    color: #333;
}


/* =========================================================
   ПОДРОБНЕЕ
   ========================================================= */

.base-list-more {
    margin-top: 18px;

    font-size: 14px;
    font-weight: 600;

    color: #1b4f72;
}

.base-list-more i {
    margin-left: 5px;

    transition: transform .2s ease;
}

.base-list-link:hover .base-list-more i {
    transform: translateX(4px);
}


/* =========================================================
   ПАГИНАЦИЯ
   ========================================================= */

.base-pagination {
    width: 100%;

    margin-top: 30px;
    margin-bottom: 30px;

    text-align: center;
}

.base-pagination .pagination {
    display: inline-flex;

    margin: 0;
    padding: 0;

    list-style: none;
}

.base-pagination .pagination li {
    margin: 0 3px;
}

.base-pagination .pagination li a,
.base-pagination .pagination li span {
    display: block;

    min-width: 38px;
    padding: 8px 12px;

    border: 1px solid #ddd;

    background: #fff;

    color: #333;

    text-align: center;
    text-decoration: none;
}

.base-pagination .pagination li a:hover {
    background: #f5f5f5;
}

.base-pagination .pagination li.active span {
    background: #333;
    border-color: #333;

    color: #fff;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .base-page-header h1 {
        font-size: 25px;
    }

    .base-list-link {
        display: block;
    }

    .base-list-image {
        width: 100%;
        min-width: 0;
        height: 220px;
    }

    .base-list-info {
        padding: 20px;
    }

    .base-list-title {
        font-size: 20px;
    }

    .base-list-params {
        grid-template-columns: 1fr;

        column-gap: 0;
    }

}


/* =========================================================
   МАЛЕНЬКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 480px) {

    .base-page-header h1 {
        font-size: 22px;
    }

    .base-list-image {
        height: 180px;
    }

    .base-list-info {
        padding: 15px;
    }

    .base-list-title {
        font-size: 18px;
    }

    .base-list-param {
        display: block;
    }

    .base-list-param-name {
        display: block;

        margin-bottom: 2px;
    }

}

/* =========================================================
   СТРАНИЦА СТРУКТУРЫ ФБП
   ========================================================= */

.fbp-structure-page {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   КОНТЕЙНЕР СХЕМЫ
   ========================================================= */

.fbp-structure {
    position: relative;

    width: 100%;
    max-width: 1100px;

    margin: 35px auto 60px;

    padding: 10px 15px 60px;

    box-sizing: border-box;
}


/* =========================================================
   SVG С ЛИНИЯМИ
   ========================================================= */

.fbp-structure-lines {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    overflow: visible;

    pointer-events: none;

    z-index: 1;
}


.fbp-line {
    stroke: #072746;
    stroke-width: 1.5px;

    fill: none;

    vector-effect: non-scaling-stroke;
}


/* =========================================================
   ВСЕ БЛОКИ СХЕМЫ
   ========================================================= */

.fbp-node {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 9px 15px;

    box-sizing: border-box;

    background: #fff;

    border: 1.5px solid #072746;

    border-radius: 3px;

    text-align: center;

    font-size: 14px;

    line-height: 1.2;

    box-shadow: 0 1px 3px rgba(7, 39, 70, 0.08);
}


.fbp-node a {
    display: block;

    width: 100%;

    color: #072746;

    font-weight: 600;

    text-decoration: none;

    line-height: 1.25;
}


.fbp-node a:hover {
    color: #072746;

    text-decoration: underline;
}


/* =========================================================
   КОНФЕРЕНЦИЯ
   ========================================================= */

.fbp-conference {
    width: 360px;

    margin: 0 auto 65px;
}


/* =========================================================
   УНИВЕРСАЛЬНЫЕ УРОВНИ
   ========================================================= */

.fbp-level {
    position: relative;

    z-index: 2;

    display: grid;

    box-sizing: border-box;
}


/* =========================================================
   КРК / СОВЕТ
   ========================================================= */

.fbp-level-2 {
    width: 650px;
    max-width: 100%;

    margin: 0 auto 65px;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}


.fbp-level-2 > .fbp-node {
    width: 100%;
}


/* =========================================================
   ПРЕЗИДЕНТ
   ========================================================= */

.fbp-president {
    width: 300px;
    max-width: 100%;

    margin: 0 auto 65px;
}


/* =========================================================
   ГЕНСЕК / ИСПОЛНИТЕЛЬНЫЙ ДИРЕКТОР
   ========================================================= */

.fbp-level-4 {
    width: 680px;
    max-width: 100%;

    margin: 0 auto 70px;

    grid-template-columns: 1fr 1.2fr;

    gap: 75px;
}


.fbp-level-4 > .fbp-node {
    width: 100%;
}


/* =========================================================
   ИСПОЛНИТЕЛЬНЫЙ ДИРЕКТОР
   ========================================================= */

.fbp-executive {
    min-width: 0;
}


/* =========================================================
   НИЖНИЙ УРОВЕНЬ
   СПОРТДИР / КБА / КОМИССИИ
   ========================================================= */

.fbp-level-5 {
    position: relative;

    z-index: 2;

    width: 100%;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    column-gap: 25px;

    align-items: start;

    box-sizing: border-box;
}


/* =========================================================
   ВЕТВИ
   ========================================================= */

.fbp-branch {
    position: relative;

    min-width: 0;

    box-sizing: border-box;
}


/* =========================================================
   ПОДЧИНЕННЫЕ БЛОКИ
   ========================================================= */

.fbp-subnode {
    width: 100%;

    margin-top: 42px;
}


/* =========================================================
   СПИСКИ
   ========================================================= */

.fbp-list {
    position: relative;

    z-index: 2;

    width: 100%;

    margin: 10px 0 0;

    padding: 0;

    list-style: none;

    box-sizing: border-box;
}


/* =========================================================
   ЭЛЕМЕНТЫ СПИСКА
   ========================================================= */

.fbp-list li {
    position: relative;

    margin: 0;
    padding: 0;

    list-style: none;
}


.fbp-list > li {
    border-left: 1.5px solid #072746;
}


.fbp-list a {
    display: block;

    padding: 5px 9px;

    box-sizing: border-box;

    color: #072746;

    font-size: 12.5px;

    line-height: 1.3;

    text-decoration: none;
}


.fbp-list a:hover {
    color: #072746;

    background: #f3f5f7;
}


/* =========================================================
   ВЛОЖЕННЫЙ СПИСОК
   ========================================================= */

.fbp-list ul {
    margin: 0 0 0 12px;

    padding: 0;

    list-style: none;

    border-left: 1px solid #aeb8c2;
}


.fbp-list ul li {
    border-left: 0;
}


.fbp-list ul a {
    padding: 4px 8px;

    font-size: 11.5px;
}


/* =========================================================
   НЕБОЛЬШИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 1100px) {

    .fbp-structure {
        padding-left: 15px;
        padding-right: 15px;
    }


    .fbp-level-5 {
        column-gap: 18px;
    }


    .fbp-level-2 {
        width: 620px;

        gap: 70px;
    }


    .fbp-level-4 {
        width: 660px;

        gap: 55px;
    }


    .fbp-president {
        margin-left: auto;
        margin-right: auto;
    }

}


/* =========================================================
   ПЛАНШЕТ
   ========================================================= */

@media (max-width: 800px) {

    .fbp-structure {
        margin-top: 25px;

        overflow-x: auto;

        padding-bottom: 50px;
    }


    .fbp-conference {
        width: 330px;
    }


    .fbp-level-2 {
        width: 590px;

        gap: 55px;
    }


    .fbp-president {
        width: 280px;

        margin-left: auto;
        margin-right: auto;
    }


    .fbp-level-4 {
        width: 610px;

        gap: 45px;
    }


    .fbp-level-5 {
        min-width: 700px;

        grid-template-columns:
            1.15fr
            1fr
            1fr;
    }

}


/* =========================================================
   МОБИЛЬНЫЕ
   ========================================================= */

@media (max-width: 600px) {

    .fbp-structure {
        min-width: 700px;

        margin-left: 0;
        margin-right: 0;
    }


    .fbp-structure-page {
        overflow-x: auto;
    }


    .fbp-structure-page .content {
        overflow: visible;
    }


    .fbp-president {
        margin-left: auto;
        margin-right: auto;
    }

}

/* =========================================================
   ЦВЕТА СХЕМЫ ФБП
   Только синяя гамма
   ========================================================= */


/* ---------------------------------------------------------
   КОНФЕРЕНЦИЯ
   --------------------------------------------------------- */

.fbp-conference {
    background: #072746;
    border-color: #072746;
}

.fbp-conference a {
    color: #fff;
}


/* ---------------------------------------------------------
   КРК / СОВЕТ
   --------------------------------------------------------- */

.fbp-level-2 .fbp-node {
    background: #0b3b68;
    border-color: #0b3b68;
}

.fbp-level-2 .fbp-node a {
    color: #fff;
}


/* ---------------------------------------------------------
   ПРЕЗИДЕНТ
   --------------------------------------------------------- */

.fbp-president {
    background: #0b3b68;
    border-color: #0b3b68;

    box-shadow:
        0 2px 6px rgba(7, 39, 70, 0.18);
}

.fbp-president a {
    color: #fff;
}


/* ---------------------------------------------------------
   ГЕНСЕК / ИСПОЛНИТЕЛЬНЫЙ ДИРЕКТОР
   --------------------------------------------------------- */

.fbp-level-4 .fbp-node {
    background: #e8f1f8;
    border-color: #0b3b68;
}

.fbp-level-4 .fbp-node a {
    color: #072746;
}


/* ---------------------------------------------------------
   СПОРТДИР / КБА / КОМИССИИ И ОТДЕЛЫ
   --------------------------------------------------------- */

.fbp-level-5 > .fbp-branch > .fbp-node {
    background: #fff;

    border-color: #0b3b68;

    box-shadow:
        0 2px 5px rgba(7, 39, 70, 0.08);
}


/* ---------------------------------------------------------
   ПОДЧИНЁННЫЕ БЛОКИ
   --------------------------------------------------------- */

.fbp-subnode {
    background: #f4f7fa;

    border-color: #7c9ab3;
}

.fbp-subnode a {
    color: #072746;
}


/* ---------------------------------------------------------
   СПИСКИ
   --------------------------------------------------------- */

.fbp-list > li {
    border-left-color: #0b3b68;
}

.fbp-list a {
    color: #072746;
}


/* ---------------------------------------------------------
   ВЛОЖЕННЫЕ СПИСКИ
   --------------------------------------------------------- */

.fbp-list ul {
    border-left-color: #b7c4cf;
}


/* =========================================================
   НАВЕДЕНИЕ
   ========================================================= */

/* Все блоки */

.fbp-node {
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}


/* ---------------------------------------------------------
   СВЕТЛЫЕ БЛОКИ
   --------------------------------------------------------- */

.fbp-level-4 .fbp-node:hover {
    background: #dce9f3;
    border-color: #0b3b68;
}

.fbp-level-5 > .fbp-branch > .fbp-node:hover,
.fbp-subnode:hover {
    background: #f0f4f7;
    border-color: #315d82;
}


/* ---------------------------------------------------------
   ТЁМНЫЕ БЛОКИ
   --------------------------------------------------------- */

.fbp-conference:hover {
    background: #072746;
    border-color: #072746;
}

.fbp-conference:hover a {
    color: #fff;
}


.fbp-level-2 .fbp-node:hover {
    background: #0b3b68;
    border-color: #0b3b68;
}

.fbp-level-2 .fbp-node:hover a {
    color: #fff;
}


.fbp-president:hover {
    background: #0b3b68;
    border-color: #0b3b68;
}

.fbp-president:hover a {
    color: #fff;
}


/* ---------------------------------------------------------
   ССЫЛКИ В СПИСКАХ
   --------------------------------------------------------- */

.fbp-list a:hover {
    color: #0b3b68;
    background: #eef3f7;
}

/* ---------------------------------------------------------
   ЛИНИИ СХЕМЫ
   --------------------------------------------------------- */

.fbp-line {
    stroke: #0b3b68;
    stroke-width: 1.5px;
}

/* =========================================================
   СТРАНИЦА СОРЕВНОВАНИЙ ФБП
   ========================================================= */

.fbp-tournaments-page {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 0 20px 70px;

    box-sizing: border-box;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-tournaments-header {
    margin-bottom: 35px;
}

.fbp-tournaments-header h1 {
    margin: 20px 0 0;

    text-align: center;

    color: #072746;

    font-size: 30px;
    line-height: 1.2;
}


/* =========================================================
   ОСНОВНАЯ СЕТКА
   ========================================================= */

.fbp-tournaments-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100%;

    box-sizing: border-box;
}


/* =========================================================
   НИЖНЯЯ СЕТКА
   ========================================================= */

.fbp-tournaments-grid-bottom {
    margin-top: 22px;
}


/* =========================================================
   КАРТОЧКА
   ========================================================= */

.fbp-tournament-card {
    width: 100%;
    min-width: 0;

    padding: 18px 18px 20px;

    box-sizing: border-box;

    background: #072746;

    border-radius: 5px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);

    overflow: hidden;
}


/* =========================================================
   ЗАГОЛОВОК КАРТОЧКИ
   ========================================================= */

.fbp-tournament-card h2 {
    margin: 0 0 16px;

    padding-bottom: 11px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    font-size: 18px;
    line-height: 1.25;

    font-weight: 700;
}


.fbp-tournament-card h2 a {
    display: block;

    color: #ffffff;

    text-decoration: none;

    transition: opacity 0.2s ease;
}


.fbp-tournament-card h2 a:hover {
    color: #ffffff;

    opacity: 0.75;

    text-decoration: none;
}


/* =========================================================
   ГРУППЫ
   ========================================================= */

.fbp-tournament-group {
    margin: 0 0 15px;
}


.fbp-tournament-group:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ПОДЗАГОЛОВКИ
   ========================================================= */

.fbp-tournament-group h3 {
    margin: 0 0 5px;

    font-size: 15px;
    line-height: 1.3;

    font-weight: 600;
}


.fbp-tournament-group h3 a {
    color: #ffffff;

    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.fbp-tournament-group h3 a:hover {
    color: #ffffff;

    opacity: 0.7;

    text-decoration: none;
}


/* =========================================================
   СПИСКИ
   ========================================================= */

.fbp-tournament-card ul {
    margin: 0;
    padding: 0 0 0 14px;

    list-style: none;
}


.fbp-tournament-card li {
    position: relative;

    margin: 0;

    padding: 3px 0 3px 11px;

    font-size: 14px;
    line-height: 1.35;
}


.fbp-tournament-card li::before {
    content: "›";

    position: absolute;

    left: 0;
    top: 3px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 15px;
}


.fbp-tournament-card li a {
    color: rgba(255, 255, 255, 0.82);

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.fbp-tournament-card li a:hover {
    color: #ffffff;

    padding-left: 3px;

    text-decoration: none;
}


/* =========================================================
   ПРОСТЫЕ СПИСКИ
   ========================================================= */

.fbp-simple-list {
    padding-left: 0 !important;
}


.fbp-simple-list li {
    padding-left: 16px;
}


/* =========================================================
   КАРТОЧКИ С НЕБОЛЬШИМ КОЛИЧЕСТВОМ ДАННЫХ
   ========================================================= */

.fbp-tournament-card:has(.fbp-simple-list) {
    min-height: 150px;
}


/* =========================================================
   ССЫЛКИ — ЗАЩИТА ОТ СТАРОГО CSS
   ========================================================= */

.fbp-tournaments-page a {
    text-decoration: none;
}


.fbp-tournaments-page a:hover {
    text-decoration: none;
}


/* =========================================================
   ПЛАНШЕТ
   ========================================================= */

@media (max-width: 1000px) {

    .fbp-tournaments-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }

}


/* =========================================================
   МОБИЛЬНЫЙ
   ========================================================= */

@media (max-width: 600px) {

    .fbp-tournaments-page {
        padding-left: 12px;
        padding-right: 12px;
    }


    .fbp-tournaments-header {
        margin-bottom: 25px;
    }


    .fbp-tournaments-header h1 {
        font-size: 25px;
    }


    .fbp-tournaments-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .fbp-tournaments-grid-bottom {
        margin-top: 14px;
    }


    .fbp-tournament-card {
        padding: 16px 16px 18px;
    }


    .fbp-tournament-card h2 {
        font-size: 17px;
    }

}

/* =========================================================
   ОБЩАЯ КОНТЕНТНАЯ СТРАНИЦА
   ========================================================= */

.content-page {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 0 20px 70px;

    box-sizing: border-box;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.content-page-header {
    margin-bottom: 35px;
}


.content-page-header h1 {
    margin: 20px 0 0;

    color: #072746;

    font-size: 30px;
    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   ВСТУПИТЕЛЬНЫЙ ТЕКСТ
   ========================================================= */

.content-page-intro {
    max-width: 850px;

    margin: 20px auto 0;

    color: #555;

    font-size: 16px;
    line-height: 1.55;

    text-align: center;
}


/* =========================================================
   ОСНОВНОЙ КОНТЕНТ
   ========================================================= */

.content-page-body {
    width: 100%;

    box-sizing: border-box;
}


.content-page-body img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   ЗАЩИТА ОТ ПЕРЕПОЛНЕНИЯ
   ========================================================= */

.content-page-body table {
    max-width: 100%;
}


.content-page-body iframe {
    max-width: 100%;
}


/* =========================================================
   МОБИЛЬНЫЕ
   ========================================================= */

@media (max-width: 600px) {

    .content-page {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 50px;
    }


    .content-page-header {
        margin-bottom: 25px;
    }


    .content-page-header h1 {
        font-size: 25px;
    }


    .content-page-intro {
        font-size: 15px;
    }

}

/* =========================================================
   СЕТКА ССЫЛОК НА СОРЕВНОВАНИЯ
   ========================================================= */

.fbp-links-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px 18px;

    width: 100%;
    max-width: 1050px;

    margin: 25px auto 50px;

    box-sizing: border-box;
}


/* =========================================================
   КАРТОЧКА
   ========================================================= */

.fbp-link-card {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 64px;

    padding: 14px 42px 14px 18px;

    box-sizing: border-box;

    background: #072746;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 15px;
    line-height: 1.35;

    font-weight: 600;

    text-decoration: none !important;

    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.12);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   СТРЕЛКА
   ========================================================= */

.fbp-link-card::after {
    content: "›";

    position: absolute;

    right: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(255, 255, 255, 0.55);

    font-size: 27px;
    line-height: 1;

    transition:
        color 0.2s ease,
        right 0.2s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.fbp-link-card:hover {
    background: #0b355d;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}


.fbp-link-card:hover::after {
    right: 13px;

    color: #ffffff;
}


/* =========================================================
   FOCUS
   ========================================================= */

.fbp-link-card:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);

    outline-offset: 2px;
}


/* =========================================================
   ПЛАНШЕТ
   ========================================================= */

@media (max-width: 800px) {

    .fbp-links-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

}


/* =========================================================
   МОБИЛЬНЫЕ
   ========================================================= */

@media (max-width: 600px) {

    .fbp-links-grid {
        margin-top: 20px;
    }


    .fbp-link-card {
        min-height: 58px;

        padding: 13px 38px 13px 15px;

        font-size: 14px;
    }

}

/* =========================================================
   SAINT BASKETBALL
   КАТЕГОРИИ
   ========================================================= */

.fbp-category-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 40px;

    width: 100%;
    max-width: 1000px;

    margin: 30px auto 60px;

    box-sizing: border-box;
}


/* =========================================================
   КОЛОНКА
   ========================================================= */

.fbp-category {
    min-width: 0;

    padding: 24px;

    box-sizing: border-box;

    background: #f4f6f8;

    border-radius: 6px;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-category h2 {
    margin: 0 0 20px;

    color: #072746;

    font-size: 24px;
    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   СПИСОК
   ========================================================= */

.fbp-category-links {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


/* =========================================================
   ССЫЛКА
   ========================================================= */

.fbp-category-link {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 48px;

    padding: 10px 38px 10px 15px;

    box-sizing: border-box;

    background: #072746;

    border-radius: 4px;

    color: #ffffff !important;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 600;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   СТРЕЛКА
   ========================================================= */

.fbp-category-link::after {
    content: "›";

    position: absolute;

    right: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(255, 255, 255, 0.55);

    font-size: 23px;
    line-height: 1;

    transition:
        right 0.2s ease,
        color 0.2s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.fbp-category-link:hover {
    background: #0b355d;

    color: #ffffff !important;

    transform: translateY(-1px);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    text-decoration: none !important;
}


.fbp-category-link:hover::after {
    right: 10px;

    color: #ffffff;
}


/* =========================================================
   АРХИВ
   ========================================================= */

.fbp-category-link-archive {
    margin-top: 8px;

    background: #687583;
}


.fbp-category-link-archive:hover {
    background: #56616c;
}


/* =========================================================
   ПЛАНШЕТ / МОБИЛЬНЫЕ
   ========================================================= */

@media (max-width: 750px) {

    .fbp-category-grid {
        grid-template-columns: 1fr;

        gap: 25px;

        max-width: 600px;
    }

}


@media (max-width: 600px) {

    .fbp-category {
        padding: 18px;
    }

    .fbp-category h2 {
        font-size: 22px;
    }

    .fbp-category-link {
        min-height: 46px;

        font-size: 14px;
    }

}

<style type="text/css">

/* =========================================================
   ЛИГИ
   ========================================================= */

.league-tiles {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    width: 100%;
    max-width: 1100px;

    margin: 30px auto 50px;
    padding: 0;

    box-sizing: border-box;
}


/* =========================================================
   ПЛИТКА
   ========================================================= */

.league-tile {
    position: relative;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 190px;

    padding: 25px 18px;

    box-sizing: border-box;

    background: #072746;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;

    color: #fff;

    text-align: center;
    text-decoration: none;

    gap: 16px;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.12);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   НАВЕДЕНИЕ
   ========================================================= */

.league-tile:hover {
    background: #0a355f;

    color: #fff;
    text-decoration: none;

    transform: translateY(-3px);

    box-shadow:
        0 7px 18px rgba(0,0,0,0.18);
}


/* =========================================================
   ЛОГО
   ========================================================= */

.league-tile img {
    display: block;

    width: 75px;
    height: 75px;

    object-fit: contain;

    flex-shrink: 0;

    transition:
        transform 0.2s ease;
}


.league-tile:hover img {
    transform: scale(1.05);
}


/* =========================================================
   НАЗВАНИЕ
   ========================================================= */

.league-tile span {
    display: block;

    width: 100%;

    color: #fff;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.3;

    text-align: center;
}


/* =========================================================
   МОБИЛЬНЫЕ
   ========================================================= */

@media (max-width: 700px) {

    .league-tiles {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;

        margin-top: 20px;
    }


    .league-tile {
        min-height: 165px;

        padding: 20px 12px;

        border-radius: 14px;

        gap: 12px;
    }


    .league-tile img {
        width: 65px;
        height: 65px;
    }


    .league-tile span {
        font-size: 15px;
    }

}


/* =========================================================
   СОВСЕМ УЗКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 430px) {

    .league-tiles {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .league-tile {
        min-height: 145px;
    }

}

</style>







/* ==========================================================
   FBP NEWS 2
   ========================================================== */

.fbp-news-2 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ==========================================================
   GRID
   ========================================================== */

.fbp-news-2-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}


/* ==========================================================
   CARD
   ========================================================== */

.fbp-news-2-card {
    display: flex;
    align-items: flex-start;

    width: 100%;
    min-width: 0;

    padding: 9px;

    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e1e6eb;
    border-radius: 6px;

    overflow: hidden;
}


/* ==========================================================
   IMAGE CONTAINER
   ========================================================== */

.fbp-news-2-image {
    display: block;

    flex: 0 0 90px;

    width: 90px;
    height: 90px;

    min-width: 90px;
    min-height: 90px;
    max-width: 90px;
    max-height: 90px;

    margin: 0 10px 0 0;

    padding: 0;

    overflow: hidden;

    border-radius: 4px;

    text-decoration: none;
}


/* ==========================================================
   IMAGE
   ========================================================== */

.fbp-news-2-image img {
    display: block;

    width: 90px !important;
    height: 90px !important;

    min-width: 90px !important;
    min-height: 90px !important;

    max-width: 90px !important;
    max-height: 90px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box;

    object-fit: cover;
    object-position: center;

    border: 0;

    border-radius: 4px;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.fbp-news-2-content {
    flex: 1 1 auto;

    min-width: 0;

    margin: 0;
    padding: 0;
}


/* ==========================================================
   DATE
   ========================================================== */

.fbp-news-2-date {
    margin: 0 0 3px;

    color: #7d8790;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
}


/* ==========================================================
   TITLE
   ========================================================== */

.fbp-news-2-name {
    display: block;

    margin: 0 0 5px;

    color: #072746;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;

    text-decoration: none;
}

.fbp-news-2-name:hover {
    color: #ffa568;
}


/* ==========================================================
   INTRO
   ========================================================== */

.fbp-news-2-intro {
    margin: 0 0 5px;

    color: #4e5963;

    font-size: 12px;
    line-height: 1.35;
}


/* ==========================================================
   PROGRAM
   ========================================================== */

.fbp-news-2-program {
    margin: 3px 0 5px;

    color: #4e5963;

    font-size: 11px;
    line-height: 1.3;
}


/* ==========================================================
   EXTERNAL LINK
   ========================================================== */

.fbp-news-2-link {
    display: block;

    max-width: 100%;

    margin: 3px 0;

    overflow: hidden;

    color: #072746;

    font-size: 11px;
    line-height: 1.3;

    text-overflow: ellipsis;
    white-space: nowrap;

    text-decoration: none;
}

.fbp-news-2-link:hover {
    color: #ffa568;
}


/* ==========================================================
   SECTION
   ========================================================== */

.fbp-news-2-section {
    margin-top: 5px;

    color: #7d8790;

    font-size: 10px;
    line-height: 1.2;
}


/* ==========================================================
   AJAX
   ========================================================== */

.fbp-news-2-results {
    position: relative;
}

.fbp-news-2-results-loading {
    opacity: .45;
    pointer-events: none;
}


/* ==========================================================
   LOADER
   ========================================================== */

.fbp-news-2-loader {
    display: none;

    position: fixed;

    top: 50%;
    left: 50%;

    z-index: 9999;

    transform: translate(-50%, -50%);
}

.fbp-news-2-loader-active {
    display: block;
}

.fbp-news-2-spinner {
    width: 28px;
    height: 28px;

    box-sizing: border-box;

    border: 3px solid #dce3e9;
    border-top-color: #072746;

    border-radius: 50%;

    animation: fbp-news-2-spin .7s linear infinite;
}

@keyframes fbp-news-2-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .fbp-news-2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .fbp-news-2-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fbp-news-2-card {
        padding: 8px;
    }

    .fbp-news-2-image {
        flex-basis: 80px;

        width: 80px;
        height: 80px;

        min-width: 80px;
        min-height: 80px;
        max-width: 80px;
        max-height: 80px;

        margin-right: 8px;
    }

    .fbp-news-2-image img {
        width: 80px !important;
        height: 80px !important;

        min-width: 80px !important;
        min-height: 80px !important;

        max-width: 80px !important;
        max-height: 80px !important;
    }

    .fbp-news-2-name {
        font-size: 13px;
    }

    .fbp-news-2-intro {
        font-size: 11px;
    }

}

/* ==========================================================
   ФИЛЬТР НОВОСТЕЙ
   ========================================================== */

.fbp-news-2-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    margin: 0 0 25px;
    padding: 12px 15px;

    box-sizing: border-box;

    background: #f5f7f9;
    border: 1px solid #e1e6eb;
    border-radius: 6px;
}


/* ==========================================================
   ГОД / МЕСЯЦ
   ========================================================== */

.fbp-news-2-period {
    display: flex;
    align-items: center;

    height: 38px;

    background: #fff;
    border: 1px solid #d8e0e7;
    border-radius: 5px;

    overflow: hidden;
}


/* ==========================================================
   СТРЕЛКИ
   ========================================================== */

.fbp-news-2-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 36px;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    color: #072746;

    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.fbp-news-2-arrow:hover {
    background: #072746;
    color: #fff;
}

.fbp-news-2-arrow:focus {
    outline: none;
}


/* ==========================================================
   ЗНАЧЕНИЕ ГОДА / МЕСЯЦА
   ========================================================== */

.fbp-news-2-period-value {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 85px;
    height: 36px;

    padding: 0 8px;

    box-sizing: border-box;

    color: #072746;

    font-size: 14px;
    font-weight: 600;
    line-height: 36px;

    white-space: nowrap;
}


/* Для месяца чуть шире */

#fbp-news-2-month {
    min-width: 105px;
}


/* ==========================================================
   SELECT
   ========================================================== */

.fbp-news-2-select {
    width: 220px;
    height: 38px;

    margin: 0;
    padding: 0 35px 0 12px;

    box-sizing: border-box;

    border: 1px solid #d8e0e7;
    border-radius: 5px;

    background-color: #fff;

    color: #072746;

    font-family: inherit;
    font-size: 13px;

    cursor: pointer;
}

.fbp-news-2-select:focus {
    outline: none;

    border-color: #072746;
}


/* ==========================================================
   КНОПКА ПОИСКА
   ========================================================== */

.fbp-news-2-search {
    height: 38px;

    margin: 0;
    padding: 0 20px;

    box-sizing: border-box;

    border: 1px solid #072746;
    border-radius: 5px;

    background: #072746;
    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.fbp-news-2-search:hover {
    background: #0b3a66;
    border-color: #0b3a66;
}

.fbp-news-2-search:focus {
    outline: none;
}


/* ==========================================================
   СКРЫТЫЕ INPUT
   ========================================================== */

#fbp-news-2-year-input,
#fbp-news-2-month-input,
#fbp-news-2-period-input {
    display: none;
}


/* ==========================================================
   МОБИЛЬНЫЕ
   ========================================================== */

@media (max-width: 767px) {

    .fbp-news-2-filter {
        flex-wrap: wrap;
        justify-content: center;

        gap: 8px;

        padding: 10px;
    }

    .fbp-news-2-period {
        flex: 0 0 auto;
    }

    .fbp-news-2-select {
        width: 200px;
        max-width: 100%;
    }

    .fbp-news-2-search {
        padding: 0 18px;
    }
}


/* ==========================================================
   СОВСЕМ УЗКИЙ ЭКРАН
   ========================================================== */

@media (max-width: 480px) {

    .fbp-news-2-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .fbp-news-2-period {
        width: 100%;
    }

    .fbp-news-2-period-value {
        flex: 1;
    }

    .fbp-news-2-select {
        width: 100%;
        grid-column: 1 / -1;
    }

    .fbp-news-2-search {
        width: 100%;
        grid-column: 1 / -1;
    }
}


/* ==========================================================
   НОВОСТИ 2 — ПАГИНАЦИЯ
   ========================================================== */

#fbp-news-2-pagination {
    width: 100%;
    margin: 28px 0 10px;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    gap: 5px;

    font-size: 0;
}


/* ----------------------------------------------------------
   Элементы
   ---------------------------------------------------------- */

#fbp-news-2-pagination li {
    display: block;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* ----------------------------------------------------------
   Номера страниц
   ---------------------------------------------------------- */

#fbp-news-2-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 0;

    box-sizing: border-box;

    border: 1px solid #d9e0e6;
    border-radius: 5px;

    background: #f3f5f7;
    color: #072746;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 34px;

    text-decoration: none;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


/* ----------------------------------------------------------
   Наведение
   ---------------------------------------------------------- */

#fbp-news-2-pagination li a:hover {
    background: #072746;
    border-color: #072746;
    color: #fff;

    text-decoration: none;
}


/* ----------------------------------------------------------
   Текущая страница
   ---------------------------------------------------------- */

#fbp-news-2-pagination li a.active {
    background: #072746;
    border-color: #072746;
    color: #fff;

    font-weight: 600;

    cursor: default;
}


/* ----------------------------------------------------------
   PREV / NEXT
   ---------------------------------------------------------- */

#fbp-news-2-pagination li.control a {
    position: relative;

    width: 34px;
    height: 34px;

    background: #fff;
    border-color: #d9e0e6;
}


/* ----------------------------------------------------------
   Стрелка НАЗАД
   ---------------------------------------------------------- */

#fbp-news-2-pagination li.control a.prev-page::before {
    content: "";

    width: 8px;
    height: 8px;

    border-left: 2px solid #072746;
    border-bottom: 2px solid #072746;

    transform: rotate(45deg);

    margin-left: 4px;
}


/* ----------------------------------------------------------
   Стрелка ВПЕРЁД
   ---------------------------------------------------------- */

#fbp-news-2-pagination li.control a.next-page::before {
    content: "";

    width: 8px;
    height: 8px;

    border-top: 2px solid #072746;
    border-right: 2px solid #072746;

    transform: rotate(45deg);

    margin-right: 4px;
}


/* ----------------------------------------------------------
   Hover стрелок
   ---------------------------------------------------------- */

#fbp-news-2-pagination li.control a:hover {
    background: #072746;
    border-color: #072746;
}

#fbp-news-2-pagination li.control a.prev-page:hover::before {
    border-color: #fff;
}

#fbp-news-2-pagination li.control a.next-page:hover::before {
    border-color: #fff;
}


/* ==========================================================
   МОБИЛЬНЫЙ
   ========================================================== */

@media (max-width: 767px) {

    #fbp-news-2-pagination {
        margin-top: 22px;
        gap: 4px;
    }

    #fbp-news-2-pagination li a {
        width: 30px;
        height: 30px;

        font-size: 12px;
    }

    #fbp-news-2-pagination li.control a {
        width: 30px;
        height: 30px;
    }

}

/* =========================================================
   ДОКУМЕНТЫ
   ========================================================= */

.fbp-docs-2 {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================= */

.fbp-docs-2 .bl-breadcrumbs {
    margin: 0 0 12px;
    padding: 0;
    color: #8b9299;
    font-size: 13px;
    line-height: 1.5;
}

.fbp-docs-2 .bl-breadcrumbs a {
    color: #8b9299;
    text-decoration: none;
    transition: color .2s ease;
}

.fbp-docs-2 .bl-breadcrumbs a:hover {
    color: #072746;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-docs-2-title {
    margin: 0 0 30px;
    padding: 0;
    color: #072746;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   КОНТЕНТ СТРАНИЦЫ
   ========================================================= */

.fbp-docs-2-content {
    margin: 0 0 25px;
    color: #333;
    line-height: 1.6;
}

.fbp-docs-2-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ОСНОВНОЙ LAYOUT
   ========================================================= */

.fbp-docs-2 .docs-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: start;
}


/* =========================================================
   ЛЕВАЯ КОЛОНКА
   ========================================================= */

.fbp-docs-2 .sidbar-left-mb {
    width: 220px;
    margin: 0;
    padding: 0;
}


/* =========================================================
   МЕНЮ РАЗДЕЛОВ
   ========================================================= */

.fbp-docs-2 .docs-sidebar-nav {
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.fbp-docs-2 .nav-doc {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fbp-docs-2 .nav-doc li {
    display: block;
    margin: 0;
    padding: 0;
}

.fbp-docs-2 .nav-doc li a {
    display: block;
    width: 100%;
    box-sizing: border-box;

    margin: 0;
    padding: 11px 15px;

    color: #072746;
    background: transparent;

    border-left: 3px solid transparent;

    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.fbp-docs-2 .nav-doc li a:hover {
    color: #072746;
    background: #f3f5f7;
    border-left-color: #072746;
}

.fbp-docs-2 .nav-doc li.active > a,
.fbp-docs-2 .nav-doc li.active a {
    color: #fff;
    background: #072746;
    border-left-color: #072746;
}


/* =========================================================
   ПОИСК
   ========================================================= */

.fbp-docs-2 #form-name {
    display: flex;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
}

.fbp-docs-2 #form-name input[type="text"] {
    display: block;

    width: calc(100% - 42px);
    height: 40px;

    margin: 0;
    padding: 0 11px;

    box-sizing: border-box;

    border: 1px solid #d9dde2;
    border-right: 0;

    border-radius: 0;

    outline: none;

    background: #fff;
    color: #072746;

    font-family: inherit;
    font-size: 12px;
    line-height: 40px;

    transition: border-color .2s ease;
}

.fbp-docs-2 #form-name input[type="text"]::placeholder {
    color: #9aa1a8;
}

.fbp-docs-2 #form-name input[type="text"]:focus {
    border-color: #072746;
}


/* =========================================================
   КНОПКА ПОИСКА
   ========================================================= */

.fbp-docs-2 #form-name .btn-orang {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 40px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 0;

    background: #072746;
    color: #fff;

    cursor: pointer;

    font-size: 0;

    transition: background .2s ease;
}

.fbp-docs-2 #form-name .btn-orang:hover {
    background: #0d3b68;
}

.fbp-docs-2 #form-name .btn-orang span {
    display: block;
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
}


/* =========================================================
   ПРАВАЯ КОЛОНКА
   ========================================================= */

.fbp-docs-2 .docs-list {
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================================
   КАРТОЧКА ДОКУМЕНТА
   ========================================================= */

.fbp-docs-2 .doc-page-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;

    width: 100%;
    margin: 0 0 15px;
    padding: 20px 22px;

    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e3e7eb;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.fbp-docs-2 .doc-page-row:hover {
    border-color: #cbd2d9;
    box-shadow: 0 5px 18px rgba(7, 39, 70, .07);
}


/* =========================================================
   ЛЕВАЯ ЧАСТЬ КАРТОЧКИ
   ========================================================= */

.fbp-docs-2 .doc-page-content {
    min-width: 0;
    margin: 0;
    padding: 0;
}


/* =========================================================
   ЗАГОЛОВОК ДОКУМЕНТА
   ========================================================= */

.fbp-docs-2 .doc-page-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0 0 10px;
    padding: 0;
}

.fbp-docs-2 .doc-page-title {
    margin: 0;
    padding: 0;

    color: #072746;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.fbp-docs-2 .doc-page-number {
    flex: 0 0 auto;

    color: #8b9299;

    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
}


/* =========================================================
   ОПИСАНИЕ
   ========================================================= */

.fbp-docs-2 .doc-page-description {
    margin: 0 0 12px;

    color: #555e66;

    font-size: 13px;
    line-height: 1.55;
}

.fbp-docs-2 .doc-page-description p {
    margin: 0 0 8px;
}

.fbp-docs-2 .doc-page-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ДАТА
   ========================================================= */

.fbp-docs-2 .doc-page-date {
    margin: 10px 0 0;

    color: #969da4;

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   ПРАВАЯ ЧАСТЬ — ФАЙЛЫ
   ========================================================= */

.fbp-docs-2 .doc-page-files {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.fbp-docs-2 .doc-page-files-title {
    margin: 0 0 10px;

    color: #072746;

    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   СПИСОК СКАЧИВАНИЙ
   ========================================================= */

.fbp-docs-2 .doc-page-downloads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;

    margin: 0;
    padding: 0;
}


/* =========================================================
   ССЫЛКА НА ФАЙЛ
   ========================================================= */

.fbp-docs-2 .doc-page-download {
    display: flex;
    align-items: center;

    min-width: 0;
    min-height: 46px;

    margin: 0;
    padding: 5px 7px;

    box-sizing: border-box;

    border: 1px solid #e1e5e9;

    background: #fafbfc;

    color: #072746;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.fbp-docs-2 .doc-page-download:hover {
    background: #f1f4f6;
    border-color: #cbd2d9;
}


/* =========================================================
   ИКОНКА ФОРМАТА
   ========================================================= */

.fbp-docs-2 .doc-page-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    margin-right: 8px;

    color: #fff;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   ЦВЕТА ФОРМАТОВ
   ========================================================= */

.fbp-docs-2 .doc-page-download-pdf .doc-page-icon {
    background: #c62828;
}

.fbp-docs-2 .doc-page-download-xls .doc-page-icon {
    background: #287b46;
}

.fbp-docs-2 .doc-page-download-doc .doc-page-icon {
    background: #2864a5;
}

.fbp-docs-2 .doc-page-download-zip .doc-page-icon,
.fbp-docs-2 .doc-page-download-rar .doc-page-icon {
    background: #777;
}

.fbp-docs-2 .doc-page-download-png .doc-page-icon {
    background: #7b4fa3;
}


/* =========================================================
   ИНФОРМАЦИЯ О ФАЙЛЕ
   ========================================================= */

.fbp-docs-2 .doc-page-download-info {
    display: flex;
    flex-direction: column;

    min-width: 0;
    flex: 1 1 auto;
}

.fbp-docs-2 .doc-page-download-name {
    overflow: hidden;

    color: #072746;

    font-size: 11px;
    line-height: 1.25;
    font-weight: 600;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.fbp-docs-2 .doc-page-download-size {
    margin-top: 2px;

    color: #969da4;

    font-size: 9px;
    line-height: 1.2;
}


/* =========================================================
   СТРЕЛКА СКАЧИВАНИЯ
   ========================================================= */

.fbp-docs-2 .doc-page-download-arrow {
    flex: 0 0 auto;

    margin-left: 5px;

    color: #072746;

    font-size: 16px;
    line-height: 1;

    transition: transform .2s ease;
}

.fbp-docs-2 .doc-page-download:hover .doc-page-download-arrow {
    transform: translateY(2px);
}


/* =========================================================
   ПАГИНАЦИЯ
   ========================================================= */

/*
   Здесь специально НИЧЕГО не задаём.

   Используется существующий:
   .fbp-news-2-pagination
*/


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 991px) {

    .fbp-docs-2 .docs-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 25px;
    }

    .fbp-docs-2 .sidbar-left-mb {
        width: 190px;
    }

    .fbp-docs-2 .doc-page-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fbp-docs-2 .doc-page-files {
        padding-top: 15px;
        border-top: 1px solid #e5e8eb;
    }

}


@media (max-width: 767px) {

    /* -----------------------------------------
       Заголовок
       ----------------------------------------- */

    .fbp-docs-2-title {
        margin-bottom: 22px;
        font-size: 25px;
    }


    /* -----------------------------------------
       Две колонки превращаем в одну
       ----------------------------------------- */

    .fbp-docs-2 .docs-layout {
        display: block;
        margin: 0;
    }


    /* -----------------------------------------
       Левая колонка
       ----------------------------------------- */

    .fbp-docs-2 .sidbar-left-mb {
        width: 100%;
        margin: 0 0 25px;
    }


    /* -----------------------------------------
       Меню
       ----------------------------------------- */

    .fbp-docs-2 .nav-doc {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;

        margin-bottom: 15px;
    }

    .fbp-docs-2 .nav-doc li {
        width: auto;
    }

    .fbp-docs-2 .nav-doc li a {
        width: auto;
        padding: 8px 11px;

        border-left: 0;
        border-bottom: 2px solid transparent;

        font-size: 12px;
    }

    .fbp-docs-2 .nav-doc li a:hover {
        border-bottom-color: #072746;
    }

    .fbp-docs-2 .nav-doc li.active > a,
    .fbp-docs-2 .nav-doc li.active a {
        border-bottom-color: #072746;
    }


    /* -----------------------------------------
       Поиск
       ----------------------------------------- */

    .fbp-docs-2 #form-name {
        width: 100%;
    }


    /* -----------------------------------------
       Документ
       ----------------------------------------- */

    .fbp-docs-2 .doc-page-row {
        display: block;

        margin-bottom: 12px;
        padding: 15px;
    }


    /* -----------------------------------------
       Файлы
       ----------------------------------------- */

    .fbp-docs-2 .doc-page-files {
        margin-top: 15px;
        padding-top: 15px;
    }

    .fbp-docs-2 .doc-page-downloads {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .fbp-docs-2-title {
        font-size: 22px;
    }

    .fbp-docs-2 .doc-page-title {
        font-size: 15px;
    }

    .fbp-docs-2 .doc-page-row {
        padding: 13px;
    }

}

/* =========================================================
   ПАГИНАЦИЯ ДОКУМЕНТОВ
   ========================================================= */

#fbp-docs-2-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    width: 100%;
    margin-top: 35px;
    padding: 0;
}

#fbp-docs-2-pagination li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

#fbp-docs-2-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0;

    box-sizing: border-box;

    background: #f1f3f5;
    color: #072746;

    text-decoration: none;

    font-size: 13px;
    line-height: 1;

    transition: all .2s ease;
}

#fbp-docs-2-pagination li a:hover {
    background: #072746;
    color: #fff;
}

#fbp-docs-2-pagination li a.active {
    background: #072746;
    color: #fff;
}


/* Следующая страница */

#fbp-docs-2-pagination li.control a {
    font-size: 0;
}

#fbp-docs-2-pagination li.control a::after {
    content: '›';
    font-size: 20px;
    line-height: 1;
}

/* =========================================================
   ГАЛЕРЕЯ 2
   ========================================================= */

.fbp-gallery-2 {
    width: 100%;
}


/* =========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================= */

.fbp-gallery-2-breadcrumbs {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.4;
    color: #8b9299;
}

.fbp-gallery-2-breadcrumbs a {
    color: #072746;
    text-decoration: none;
}

.fbp-gallery-2-breadcrumbs a:hover {
    color: #072746;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-gallery-2-title {
    margin: 0 0 10px;
    padding: 0;
    color: #072746;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
}


/* =========================================================
   ДАТА
   ========================================================= */

.fbp-gallery-2-date {
    margin-bottom: 25px;
    color: #8b9299;
    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   КОНТЕНТ
   ========================================================= */

.fbp-gallery-2-content {
    margin-bottom: 30px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.fbp-gallery-2-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ОСНОВНАЯ ГАЛЕРЕЯ
   ========================================================= */

.fbp-gallery-2-main {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.fbp-gallery-2-main .gallery-top {
    width: 100%;
    height: 600px;
    margin: 0;
    background: #072746;
    overflow: hidden;
}


/* =========================================================
   СЛАЙД
   ========================================================= */

.fbp-gallery-2-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #072746;
    overflow: hidden;
}

.fbp-gallery-2-main .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   СТРЕЛКИ
   ========================================================= */

.fbp-gallery-2-main .swiper-button-next,
.fbp-gallery-2-main .swiper-button-prev {
    width: 48px;
    height: 64px;
    margin-top: -32px;

    background: rgba(7, 39, 70, .65);

    transition:
        background .2s ease,
        opacity .2s ease;
}

.fbp-gallery-2-main .swiper-button-next:hover,
.fbp-gallery-2-main .swiper-button-prev:hover {
    background: rgba(7, 39, 70, .9);
}

.fbp-gallery-2-main .swiper-button-next {
    right: 0;
}

.fbp-gallery-2-main .swiper-button-prev {
    left: 0;
}


/* =========================================================
   МИНИАТЮРЫ
   ========================================================= */

.fbp-gallery-2-thumbs {
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
}

.fbp-gallery-2-thumbs .gallery-thumbs {
    width: 100%;
    height: 100px;
    margin: 0;
}

.fbp-gallery-2-thumbs .swiper-slide {
    width: 140px;
    height: 100px;
    margin-right: 5px;

    opacity: .55;

    cursor: pointer;
    overflow: hidden;

    transition: opacity .2s ease;
}

.fbp-gallery-2-thumbs .swiper-slide:hover {
    opacity: .8;
}

.fbp-gallery-2-thumbs .swiper-slide-active {
    opacity: 1;
}

.fbp-gallery-2-thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   ВСЕ АЛЬБОМЫ
   ========================================================= */

.fbp-gallery-2-all {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e8eb;
}

.fbp-gallery-2-all a {
    display: inline-block;

    padding: 11px 20px;

    background: #072746;
    color: #fff;

    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background .2s ease;
}

.fbp-gallery-2-all a:hover {
    background: #0d3b67;
    color: #fff;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .fbp-gallery-2-title {
        font-size: 24px;
    }

    .fbp-gallery-2-date {
        margin-bottom: 20px;
    }

    .fbp-gallery-2-main .gallery-top {
        height: 400px;
    }

    .fbp-gallery-2-main .swiper-button-next,
    .fbp-gallery-2-main .swiper-button-prev {
        width: 38px;
        height: 50px;
        margin-top: -25px;
    }

    .fbp-gallery-2-thumbs .gallery-thumbs {
        height: 75px;
    }

    .fbp-gallery-2-thumbs .swiper-slide {
        width: 105px;
        height: 75px;
    }

}


/* =========================================================
   МАЛЕНЬКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 480px) {

    .fbp-gallery-2-title {
        font-size: 21px;
    }

    .fbp-gallery-2-main .gallery-top {
        height: 300px;
    }

    .fbp-gallery-2-thumbs .gallery-thumbs {
        height: 60px;
    }

    .fbp-gallery-2-thumbs .swiper-slide {
        width: 85px;
        height: 60px;
    }

    .fbp-gallery-2-all a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

}

/* =========================================================
   Фотогалерея
   ========================================================= */

.fbp-press-2 {
    width: 100%;
}


/* =========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================= */

.fbp-press-2-breadcrumbs {
    margin-bottom: 15px;
    color: #8b9299;
    font-size: 13px;
    line-height: 1.4;
}

.fbp-press-2-breadcrumbs a {
    color: #072746;
    text-decoration: none;
}

.fbp-press-2-breadcrumbs a:hover {
    color: #072746;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-press-2-title {
    margin: 0 0 30px;
    padding: 0;
    color: #072746;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
}


/* =========================================================
   РЕЗУЛЬТАТЫ
   ========================================================= */

.fbp-press-2-results {
    position: relative;
    width: 100%;
}

.fbp-press-2-grid {
    width: 100%;
}


/* =========================================================
   LOADING
   ========================================================= */

.fbp-press-2-results-loading {
    opacity: .45;
    pointer-events: none;
    transition: opacity .2s ease;
}


/* =========================================================
   LOADER
   ========================================================= */

.fbp-press-2-loader {
    position: fixed;
    top: 50%;
    left: 50%;

    z-index: 9999;

    width: 42px;
    height: 42px;

    margin-left: -21px;
    margin-top: -21px;

    display: none;

    align-items: center;
    justify-content: center;
}

.fbp-press-2-loader-active {
    display: flex;
}

.fbp-press-2-spinner {
    width: 32px;
    height: 32px;

    border: 3px solid #e5e8eb;
    border-top-color: #072746;

    border-radius: 50%;

    animation:
        fbp-press-2-spin .7s linear infinite;
}

@keyframes fbp-press-2-spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   ПАГИНАЦИЯ
   ========================================================= */

/*
   Здесь специально НИЧЕГО не задаём для
   .fbp-news-2-pagination.

   Она должна использовать уже существующий
   CSS пагинации news.
*/


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .fbp-press-2-title {
        margin-bottom: 20px;
        font-size: 24px;
    }

}

/* =========================================================
   ВИДЕО
   ========================================================= */

.fbp-video-2 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================= */

.fbp-video-2-breadcrumbs {
    margin-bottom: 18px;
    color: #8b9299;
    font-size: 13px;
    line-height: 1.5;
}

.fbp-video-2-breadcrumbs a {
    color: #072746;
    text-decoration: none;
}

.fbp-video-2-breadcrumbs a:hover {
    text-decoration: underline;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-video-2-title {
    margin: 0 0 12px;
    color: #072746;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   ДАТА
   ========================================================= */

.fbp-video-2-date {
    margin-bottom: 25px;
    color: #8b9299;
    font-size: 14px;
}


/* =========================================================
   КОНТЕНТ
   ========================================================= */

.fbp-video-2-content {
    margin-bottom: 30px;
    color: #333;
    font-size: 15px;
    line-height: 1.65;
}

.fbp-video-2-content p {
    margin-bottom: 15px;
}

.fbp-video-2-content a {
    color: #072746;
}


/* =========================================================
   ВИДЕО
   ========================================================= */

.fbp-video-2-gallery {
    position: relative;
    width: 100%;
    margin: 30px 0 35px;
}


/*
   videoPress может сам создавать swiper-container.
   Ограничиваем только область галереи.
*/

.fbp-video-2-gallery .swiper-container {
    width: 100%;
    overflow: hidden;
}

.fbp-video-2-gallery .swiper-wrapper {
    align-items: center;
}

.fbp-video-2-gallery .swiper-slide {
    position: relative;
}


/* =========================================================
   IFRAME / VIDEO
   ========================================================= */

.fbp-video-2-gallery iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.fbp-video-2-gallery video {
    display: block;
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   КНОПКИ SWIPER
   ========================================================= */

.fbp-video-2-gallery .swiper-button-next,
.fbp-video-2-gallery .swiper-button-prev {
    opacity: .8;
    transition: opacity .2s ease;
}

.fbp-video-2-gallery .swiper-button-next:hover,
.fbp-video-2-gallery .swiper-button-prev:hover {
    opacity: 1;
}


/* =========================================================
   ВСЕ ВИДЕО
   ========================================================= */

.fbp-video-2-all {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e8eb;
}

.fbp-video-2-all a {
    display: inline-block;
    color: #072746;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease;
}

.fbp-video-2-all a:hover {
    color: #f28c28;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .fbp-video-2 {
        max-width: 100%;
    }

    .fbp-video-2-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .fbp-video-2-date {
        font-size: 13px;
    }

    .fbp-video-2-content {
        font-size: 14px;
    }

    .fbp-video-2-gallery {
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .fbp-video-2-gallery .swiper-button-next,
    .fbp-video-2-gallery .swiper-button-prev {
        transform: scale(.7);
    }

}

/* =========================================================
   КАРТА / КОНТАКТЫ
   ========================================================= */

.fbp-map-2 {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    width: 100%;
    min-height: 670px;
    margin: 0;
    background: #072746;
}


/* =========================================================
   ТЕКСТ
   ========================================================= */

.fbp-map-2-content {
    padding: 45px 35px;
    box-sizing: border-box;
    color: #fff;
}

.fbp-map-2-title {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.fbp-map-2-content p {
    margin: 0 0 15px;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.fbp-map-2-content a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.4);
}

.fbp-map-2-content a:hover {
    border-bottom-color: #fff;
}


/* =========================================================
   КАРТА
   ========================================================= */

.fbp-map-2-map {
    position: relative;
    min-width: 0;
    height: 670px;
    overflow: hidden;
}

.fbp-map-2-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 670px;
    border: 0;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 991px) {

    .fbp-map-2 {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .fbp-map-2-content {
        padding: 30px 25px;
    }

    .fbp-map-2-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .fbp-map-2-map {
        height: 500px;
    }

    .fbp-map-2-map iframe {
        min-height: 500px;
    }

}


@media (max-width: 767px) {

    .fbp-map-2-content {
        padding: 25px 20px;
    }

    .fbp-map-2-title {
        font-size: 24px;
    }

    .fbp-map-2-map {
        height: 400px;
    }

    .fbp-map-2-map iframe {
        min-height: 400px;
    }

}

/* =========================================================
   СТРАНИЦА НОВОСТИ
   ========================================================= */

.fbp-news-page-2 {
    width: 100%;
    margin: 0 auto;
}


/* =========================================================
   ИЗОБРАЖЕНИЕ
   ========================================================= */

.fbp-news-page-2-image {
    width: 100%;
    height: 420px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    margin-bottom: 40px;
}


/* =========================================================
   КОНТЕНТ
   ========================================================= */

.fbp-news-page-2-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-news-page-2-title {
    margin: 0 0 15px;

    color: #072746;

    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   ДАТА
   ========================================================= */

.fbp-news-page-2-date {
    margin-bottom: 30px;

    color: #8b9299;

    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   ОСНОВНОЙ ТЕКСТ
   ========================================================= */

.fbp-news-page-2-text {
    color: #333;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   ЗАГОЛОВКИ В КОНТЕНТЕ
   ========================================================= */

.fbp-news-page-2-text h2,
.fbp-news-page-2-text h3,
.fbp-news-page-2-text h4 {
    color: #072746;
    line-height: 1.3;
}


/* =========================================================
   ССЫЛКИ
   ========================================================= */

.fbp-news-page-2-text a,
.fbp-news-page-2-link a {
    color: #072746;
    text-decoration: underline;
    transition: color .2s ease;
}

.fbp-news-page-2-text a:hover,
.fbp-news-page-2-link a:hover {
    color: #c89211;
}


/* =========================================================
   ПРОГРАММА
   ========================================================= */

.fbp-news-page-2-program {
    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid #e5e8eb;

    color: #333;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   ВНЕШНЯЯ ССЫЛКА
   ========================================================= */

.fbp-news-page-2-link {
    margin-top: 25px;
    padding: 18px 20px;

    background: #f5f7f9;

    border-left: 4px solid #072746;

    overflow-wrap: anywhere;
}

.fbp-news-page-2-link a {
    font-size: 14px;
}


/* =========================================================
   ИЗОБРАЖЕНИЯ В ТЕКСТЕ
   ========================================================= */

.fbp-news-page-2-text img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   ТАБЛИЦЫ
   ========================================================= */

.fbp-news-page-2-text table {
    max-width: 100%;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .fbp-news-page-2-image {
        height: 250px;
        margin-bottom: 25px;
    }

    .fbp-news-page-2-content {
        padding: 0 15px 40px;
    }

    .fbp-news-page-2-title {
        font-size: 26px;
    }

    .fbp-news-page-2-date {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .fbp-news-page-2-text {
        font-size: 15px;
        line-height: 1.55;
    }

}

/* =========================================================
   ПОИСК
   ========================================================= */

.fbp-search-2 {
    padding-top: 40px;
    padding-bottom: 60px;
}


/* =========================================================
   ОПИСАНИЕ
   ========================================================= */

.fbp-search-2-intro {
    margin: -10px 0 30px;

    color: #555;
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   ФОРМА
   ========================================================= */

.fbp-search-2-form {
    width: 100%;
    max-width: 800px;
    margin: 0 0 40px;
}


/* =========================================================
   SIMPLE SEARCH
   ========================================================= */

.fbp-search-2-form form {
    display: flex;
    width: 100%;
}

.fbp-search-2-form input[type="text"],
.fbp-search-2-form input[type="search"] {
    flex: 1;
    height: 44px;
    padding: 0 15px;

    box-sizing: border-box;

    border: 1px solid #d9dde2;
    border-right: 0;

    background: #fff;
    color: #072746;

    font-size: 14px;
    outline: none;
}

.fbp-search-2-form input[type="text"]:focus,
.fbp-search-2-form input[type="search"]:focus {
    border-color: #072746;
}

.fbp-search-2-form input[type="submit"] {
    width: 100px;
    height: 44px;

    padding: 0;

    border: 0;

    background: #072746;
    color: #fff;

    font-size: 14px;

    cursor: pointer;

    transition: background .2s ease;
}

.fbp-search-2-form input[type="submit"]:hover {
    background: #0b355e;
}


/* =========================================================
   РЕЗУЛЬТАТЫ
   ========================================================= */

.fbp-search-2-results {
    width: 100%;
    max-width: 1000px;
}


/* =========================================================
   СТАНДАРТНЫЕ РЕЗУЛЬТАТЫ SIMPLESEARCH
   ========================================================= */

.fbp-search-2-results ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fbp-search-2-results li {
    margin: 0;
    padding: 18px 0;

    border-bottom: 1px solid #e5e8eb;
}

.fbp-search-2-results a {
    color: #072746;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.fbp-search-2-results a:hover {
    text-decoration: underline;
}

.fbp-search-2-results p {
    margin: 7px 0 0;

    color: #777;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    .fbp-search-2 {
        padding-top: 25px;
        padding-bottom: 40px;
    }

    .fbp-search-2-form {
        margin-bottom: 30px;
    }

    .fbp-search-2-form form {
        display: flex;
    }

    .fbp-search-2-form input[type="submit"] {
        width: 80px;
    }

    .fbp-search-2-results a {
        font-size: 15px;
    }

}

@media (max-width: 767px) {

    .site-header-top {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .site-logo {
        flex: 0 0 auto;
    }

    .site-logo img {
        width: 70px;
        height: auto;
        max-width: 70px;
    }

    .site-header-title {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: 12px;

        font-size: 17px;
        line-height: 1.15;

        white-space: normal;
    }

    .site-search {
        display: none;
    }

}

/* =========================================================
   ФОРМА ПОИСКА
   ========================================================= */

.fbp-search-2-form .searh-max {
    width: 100%;
    margin: 0 0 30px;
}


.fbp-search-2-form .searh-max fieldset {
    display: flex;
    align-items: stretch;

    width: 100%;
    margin: 0;
    padding: 0;

    border: 0;
}


.fbp-search-2-form .searh-max label {
    display: none;
}


.fbp-search-2-form .searh-max input[type="text"] {
    flex: 1 1 auto;

    min-width: 0;
    height: 44px;

    margin: 0;
    padding: 0 14px;

    border: 1px solid #d0d0d0;
    border-right: 0;
    border-radius: 6px 0 0 6px;

    background: #fff;
    color: #333;

    font-size: 16px;

    box-sizing: border-box;

    outline: none;
}


.fbp-search-2-form .searh-max input[type="text"]:focus {
    border-color: #072746;
}


.fbp-search-2-form .searh-max input[type="submit"] {
    flex: 0 0 auto;

    width: auto;
    height: 44px;

    margin: 0;
    padding: 0 24px;

    border: 0;
    border-radius: 0 6px 6px 0;

    background: #072746;
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.fbp-search-2-form .searh-max input[type="submit"]:hover {
    background: #0b3b69;
}


/* =========================================================
   РЕЗУЛЬТАТЫ ПОИСКА — КОМПАКТНЫЙ ВИД
   ========================================================= */

.fbp-search-2-results .sisea-results-list {
    margin: 0;
    padding: 0;
}

.fbp-search-2-results .sisea-result {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #e5e8eb;
}

.fbp-search-2-results .sisea-result h4 {
    margin: 2px 0 4px;
    padding: 0;
    line-height: 1.3;
}

.fbp-search-2-results .sisea-result h4 a {
    font-size: 16px;
    font-weight: 600;
    color: #072746;
    text-decoration: none;
}

.fbp-search-2-results .sisea-result h4 a:hover {
    text-decoration: underline;
}


/* ДАТА */

.fbp-search-2-results .sisea-result-meta {
    margin: 0 0 3px;

    color: #999;
    font-size: 12px;
    line-height: 1.2;
}


/* ОПИСАНИЕ */

.fbp-search-2-results .sisea-result .extract {
    margin: 0;

    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.fbp-search-2-results .sisea-result .extract p {
    margin: 0;
}


/* РАЗДЕЛ */

.fbp-search-2-results .sisea-result .link-parent {
    display: inline-block;

    margin-top: 5px;

    color: #999;
    font-size: 11px;
    font-weight: 400;
    text-decoration: none;
}

.fbp-search-2-results .sisea-result .link-parent:hover {
    color: #072746;
}


/* УБИРАЕМ ЛИШНИЕ HR */

.fbp-search-2-results .sisea-results-list + hr,
.fbp-search-2-results hr {
    display: none;
}

.sisea-highlight {
    font-size: inherit;
    font-weight: 600;
    color: #072746;
    background: rgba(7, 39, 70, 0.08);
    padding: 1px 3px;
    border-radius: 2px;
}

/* =========================================================
   ФОРМА ПОИСКА
   ========================================================= */

.fbp-search-2-form .searh-max {
    width: 100%;
    margin: 0 0 30px;
}

.fbp-search-2-form .searh-max fieldset {
    display: flex;
    align-items: stretch;

    width: 100%;
    margin: 0;
    padding: 0;

    border: 0;
}

.fbp-search-2-form .searh-max label {
    display: none;
}

.fbp-search-2-form .searh-max input[type="text"] {
    flex: 1 1 auto;

    min-width: 0;
    height: 44px;

    margin: 0;
    padding: 0 14px;

    border: 1px solid #d0d0d0;
    border-right: 0;
    border-radius: 6px 0 0 6px;

    background: #fff;
    color: #333;

    font-size: 16px;

    box-sizing: border-box;

    outline: none;
}

.fbp-search-2-form .searh-max input[type="text"]:focus {
    border-color: #072746;
}

.fbp-search-2-form .searh-max input[type="submit"] {
    flex: 0 0 auto;

    width: auto;
    height: 44px;

    margin: 0;
    padding: 0 24px;

    border: 0;
    border-radius: 0 6px 6px 0;

    background: #072746;
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.fbp-search-2-form .searh-max input[type="submit"]:hover {
    background: #0b3b69;
}

/* ==========================================================
   ЛИСТ НАЗНАЧЕНИЙ
   ========================================================== */

.fio-page {
    width: 100%;
    margin: 0;
    padding: 0;
}

.fio-page-title {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;

    font-size: 24px;
    line-height: 1.2;
}


/* ==========================================================
   СПИСОК
   ========================================================== */

.fio-list {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    column-gap: 10px;
    row-gap: 2px;

    width: 100%;
    margin: 0;
    padding: 0;
}


/* ==========================================================
   ЭЛЕМЕНТ
   ========================================================== */

.fio-list .list-news {
    display: block;

    min-width: 0;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;
}


/* Убираем огромные отступы старого list-news */

.fio-list .list-news-content {
    display: block;

    margin: 0 !important;
    padding: 3px 6px !important;

    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 500;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ==========================================================
   ССЫЛКИ
   ========================================================== */

.fio-list .list-news-content a {
    display: block;

    color: #072746;

    text-decoration: none;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.fio-list .list-news-content a:hover {
    color: #fff;

    background: #223e5a;

    border-radius: 3px;
}


/* ==========================================================
   AJAX-КНОПКА
   ========================================================== */

.fio-load-more {
    display: block;

    width: 100%;
    margin: 18px 0 0 0;
    padding: 8px 15px;

    color: #fff;

    font-size: 14px;
    line-height: 18px;
    font-weight: 600;

    text-align: center;

    background: #223e5a;

    border: 0;
    border-radius: 4px;

    cursor: pointer;

    transition:
        background-color .15s ease,
        opacity .15s ease;
}

.fio-load-more:hover {
    background: #072746;
}

.fio-load-more.loading {
    opacity: .6;
    cursor: wait;
}


/* ==========================================================
   СТАРУЮ ПАГИНАЦИЮ СКРЫВАЕМ
   ========================================================== */

.fio-list .paginat {
    display: none !important;
}


/* ==========================================================
   ПЛАНШЕТ
   ========================================================== */

@media (max-width: 991px) {

    .fio-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        column-gap: 8px;
        row-gap: 2px;
    }

}


/* ==========================================================
   МОБИЛЬНЫЕ
   ========================================================== */

@media (max-width: 767px) {

    .fio-page-title {
        margin-bottom: 10px !important;

        font-size: 20px;
    }

    .fio-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 6px;
        row-gap: 1px;
    }

    .fio-list .list-news-content {
        padding: 4px 5px !important;

        font-size: 13px !important;
        line-height: 16px !important;
    }

}


/* ==========================================================
   СОВСЕМ УЗКИЙ ЭКРАН
   ========================================================== */

@media (max-width: 420px) {

    .fio-list {
        grid-template-columns: 1fr 1fr;
    }

}

/* ==========================================================
   СТРАНИЦА ПРЕЗИДЕНТА
   ========================================================== */

.president-page {
    width: 100%;
}

.president-photo {
    float: right;

    width: 320px;
    height: 420px;

    margin: 0 0 20px 30px;

    overflow: hidden;
}

.president-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


/* чтобы после обтекания контейнер нормально закрывался */

.president-page::after {
    content: "";
    display: table;
    clear: both;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .president-photo {
        float: none;

        width: 100%;
        max-width: 320px;
        height: 380px;

        margin: 0 auto 20px;
    }

}

.sovet-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.sovet-list > li {
    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: #fff;
    border: 1px solid #e5e9ee;
    border-radius: 10px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .06);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.sovet-list > li:hover {
    transform: translateY(-3px);

    box-shadow: 0 7px 20px rgba(0, 0, 0, .10);
}

.sovet-list > li > img {
    width: 170px;
    height: 220px;

    flex-shrink: 0;

    object-fit: cover;
}

.sovet-list > li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 10px);
}

.sovet-people {
    display: flex;
    flex-direction: column;

    padding: 22px 25px;
}

.sovet-people h3 {
    margin: 0 0 8px;

    font-size: 20px;
    line-height: 1.25;
}

.sovet-people span {
    display: block;

    margin-bottom: 15px;

    font-size: 14px;
    line-height: 1.4;

    opacity: .65;
}

.sovet-people p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;
}


/* Планшет */

@media (max-width: 900px) {

    .sovet-list {
        grid-template-columns: 1fr;
    }

}


/* Телефон */

@media (max-width: 600px) {

    .sovet-list > li {
        display: block;
    }

    .sovet-list > li > img {
        width: 100%;
        height: 280px;
    }

    .sovet-people {
        padding: 20px;
    }

}

/* =====================================================
   ПРЕДСЕДАТЕЛЬ КБА
   ===================================================== */

.kba-chair {
    margin: 40px 0 60px;
}

.kba-chair > h2 {
    margin-bottom: 25px;
    text-align: center;
}

.kba-presidium > h2 {
    margin-bottom: 25px;
    text-align: center;
}


/* Карточка */

.kba-chair-card {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 35px;

    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.kba-chair-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kba-chair-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

/* Фото */

.kba-chair-card img {
    display: block;

    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 8px;
    flex-shrink: 0;
}


/* Информация */

.kba-chair-info {
    padding-left: 35px;
}

.kba-chair-info h3 {
    margin: 0 0 10px;

    font-size: 26px;
    line-height: 1.25;
    font-weight: 600;
}

.kba-chair-info span {
    display: block;

    font-size: 16px;
    line-height: 1.5;
    color: #777;
}

/* =========================================================
   VK АЛЬБОМЫ
   ========================================================= */

#vk-albums {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}


/* =========================================================
   КАРТОЧКА
   ========================================================= */

.vk-album-card {
    min-width: 0;
    margin: 0;
    padding: 0;
}


/* =========================================================
   ССЫЛКА
   ========================================================= */

.vk-album-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vk-album-card-link:hover {
    color: inherit;
    text-decoration: none;

    transform: translateY(-4px);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   ИЗОБРАЖЕНИЕ
   ========================================================= */

.vk-album-image {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #e9edf2;
}


.vk-album-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.3s ease;
}


.vk-album-card-link:hover .vk-album-image img {
    transform: scale(1.04);
}


/* =========================================================
   КОЛИЧЕСТВО ФОТО
   ========================================================= */

.vk-album-count {
    position: absolute;

    right: 12px;
    bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 26px;

    padding: 0 8px;

    box-sizing: border-box;

    color: #fff;
    background: rgba(0, 0, 0, 0.72);

    border-radius: 13px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    backdrop-filter: blur(4px);
}


/* =========================================================
   НАЗВАНИЕ
   ========================================================= */

.vk-album-info {
    padding: 16px 18px 18px;
}


.vk-album-info h3 {
    margin: 0;

    color: #072746;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


/* =========================================================
   КНОПКА "ЗАГРУЗИТЬ ЕЩЁ"
   ========================================================= */

#vk-albums-more {
    display: block;

    margin: 32px auto 0;
    padding: 12px 30px;

    border: 0;
    border-radius: 8px;

    color: #fff;
    background: #072746;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}


#vk-albums-more:hover {
    background: #0b3b69;
    transform: translateY(-1px);
}


#vk-albums-more:disabled {
    cursor: wait;
    opacity: 0.6;
    transform: none;
}


/* =========================================================
   ПЛАНШЕТ
   ========================================================= */

@media (max-width: 1100px) {

    #vk-albums {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

}


/* =========================================================
   ПЛАНШЕТ / МАЛЕНЬКИЙ ЭКРАН
   ========================================================= */

@media (max-width: 800px) {

    #vk-albums {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .vk-album-info {
        padding: 13px 14px 15px;
    }

    .vk-album-info h3 {
        font-size: 13px;
    }

}


/* =========================================================
   ТЕЛЕФОН
   ========================================================= */

@media (max-width: 500px) {

    #vk-albums {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vk-album-image {
        aspect-ratio: 16 / 10;
    }

}
.vk-album-date {
    margin-top: 4px;

    color: #8a949e;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
}

/* =========================================================
   VK ВИДЕО
   ========================================================= */

#vk-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}


/* =========================================================
   КАРТОЧКА
   ========================================================= */

.vk-video-card {
    min-width: 0;
    margin: 0;
    padding: 0;
}


/* =========================================================
   ССЫЛКА
   ========================================================= */

.vk-video-card-link {
    display: block;
    height: 100%;

    color: inherit;
    text-decoration: none;

    background: #fff;

    border-radius: 12px;
    overflow: hidden;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.vk-video-card-link:hover {
    color: inherit;
    text-decoration: none;

    transform: translateY(-4px);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   ПРЕВЬЮ
   ========================================================= */

.vk-video-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #e9edf2;
}


.vk-video-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.3s ease;
}


.vk-video-card-link:hover .vk-video-image img {
    transform: scale(1.04);
}


/* =========================================================
   ДЛИТЕЛЬНОСТЬ
   ========================================================= */

.vk-video-duration {
    position: absolute;

    right: 10px;
    bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 26px;

    padding: 0 8px;

    box-sizing: border-box;

    color: #fff;
    background: rgba(0, 0, 0, 0.72);

    border-radius: 13px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    backdrop-filter: blur(4px);
}


/* =========================================================
   ИНФОРМАЦИЯ
   ========================================================= */

.vk-video-info {
    padding: 13px 16px 15px;
}


/* =========================================================
   НАЗВАНИЕ
   ========================================================= */

.vk-video-info h3 {
    margin: 0;

    color: #072746;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


/* =========================================================
   ДАТА / ПРОСМОТРЫ
   ========================================================= */

.vk-video-meta {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 7px;

    color: #7a8794;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
}


.vk-video-date,
.vk-video-views {
    white-space: nowrap;
}


/* =========================================================
   КНОПКА
   ========================================================= */

#vk-videos-more {
    display: block;

    margin: 32px auto 0;
    padding: 12px 30px;

    border: 0;
    border-radius: 8px;

    color: #fff;
    background: #072746;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}


#vk-videos-more:hover {
    background: #0b3b69;
    transform: translateY(-1px);
}


#vk-videos-more:disabled {
    cursor: wait;
    opacity: 0.6;
    transform: none;
}


/* =========================================================
   ТЕЛЕФОН
   ========================================================= */

@media (max-width: 600px) {

    #vk-videos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vk-video-info {
        padding: 11px 13px 13px;
    }

    .vk-video-info h3 {
        font-size: 14px;
    }

    .vk-video-meta {
        font-size: 10px;
    }

}

/* ==========================================================
   WIDGETS — ОБЩИЕ
   ========================================================== */

.widgets-tournaments,
.widgets-games {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.widgets-tournament-panel .InfoBasketWidget.CalendarCarousel {
    padding-top: 0 !important;
}

.widgets-games-title {
    width: 100%;
    box-sizing: border-box;

    margin: 0;
    padding: 10px 16px;

    background: #072746;
    color: #fff;

    font-family: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;

    text-align: center;
}


/* ==========================================================
   1. КАРУСЕЛИ ТУРНИРОВ
   ========================================================== */

.widgets-tournaments {
    margin: 0 0 30px 0;
}


/* ==========================================================
   ВКЛАДКИ ТУРНИРОВ
   ========================================================== */

.widgets-tournament-tabs {
    display: flex;
    width: 100%;

    margin: 0;
    padding: 0;

    background: #072746;

    border-radius: 10px 10px 0 0;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: thin;
}


.widgets-tournament-tab {
    flex: 1 1 0;

    min-width: 150px;

    margin: 0;
    padding: 12px 14px;

    border: 0;
    border-right: 1px solid rgba(255,255,255,.15);

    background: transparent;

    color: rgba(255,255,255,.65);

    font-family: inherit;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;

    text-align: center;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}


.widgets-tournament-tab:last-child {
    border-right: 0;
}


.widgets-tournament-tab:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}


.widgets-tournament-tab.is-active {
    background: #223e5a;
    color: #fff;
}


/* ==========================================================
   ПАНЕЛИ ТУРНИРОВ
   ========================================================== */

.widgets-tournament-panel {
    display: none;

    width: 100%;
    box-sizing: border-box;

    margin: 0;
    padding: 0;

    background: transparent;
}


.widgets-tournament-panel.is-visible {
    display: block;
}


/* ==========================================================
   НАЗВАНИЕ ТУРНИРА
   ========================================================== */

.widgets-tournament-panel > .widgetheader {
    display: block;

    width: 100%;
    box-sizing: border-box;

    margin: 0;
    padding: 10px 16px;

    background: #223e5a;
    color: #fff;

    border-radius: 0;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;

    text-decoration: none;

    text-align: left;

    transition: background .2s ease;
}


.widgets-tournament-panel > .widgetheader:hover {
    background: #2d4e6e;
    color: #fff;
}


/* ==========================================================
   КОНТЕЙНЕР КАРУСЕЛИ
   ========================================================== */

.widgets-tournament-panel > .CalendarCarousel {
    width: 100%;
    max-width: 100%;

    box-sizing: border-box;

    margin: 0;
    padding: 4px 0;

    background: transparent;

    overflow: hidden;
}


/*
   НЕ ТРОГАЕМ:
   .owl-wrapper
   .owl-item
   .owl-carousel
   transform
*/


/* ==========================================================
   2. ИГРЫ ГОРОДА / РОССИИ
   ========================================================== */

.widgets-games {
    margin: 0 0 35px 0;

    background: #fff;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 4px 18px rgba(7,39,70,.08);
}


/* ==========================================================
   ВКЛАДКИ ИГР
   ========================================================== */

.widgets-games .tab-buttons {
    display: flex;

    width: 100%;

    margin: 0;
    padding: 0;

    background: #072746;

    border-radius: 10px 10px 0 0;
}


.widgets-games .tab-button {
    flex: 1 1 0;

    min-width: 0;

    margin: 0;
    padding: 13px 16px;

    border: 0;
    border-right: 1px solid rgba(255,255,255,.15);

    background: #072746;

    color: rgba(255,255,255,.65);

    font-family: inherit;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;

    text-align: center;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}


.widgets-games .tab-button:last-child {
    border-right: 0;
}


.widgets-games .tab-button:hover {
    background: #173957;
    color: #fff;
}


.widgets-games .tab-button.active {
    background: #223e5a;
    color: #fff;
}


/* ==========================================================
   СОДЕРЖИМОЕ ВКЛАДОК ИГР
   ========================================================== */

.widgets-games .tab-content {
    width: 100%;
    max-width: 100%;

    box-sizing: border-box;

    margin: 0;
    padding: 0;

    background: #fff;

    overflow-x: auto;
}


/* ==========================================================
   ИГРЫ СЕГОДНЯ
   ========================================================== */

.today-games-widget {
    width: 100%;
    margin: 0;

    background: #fff;
}


/* ==========================================================
   ЗАГОЛОВОК "ИГРЫ СЕГОДНЯ"
   ========================================================== */

.today-games-header {
    width: 100%;
    box-sizing: border-box;

    margin: 0;
    padding: 10px 16px;

    background: #223e5a;
    color: #fff;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;

    text-align: left;
}


/* ==========================================================
   ЕСЛИ ИГР НЕТ
   ========================================================== */

.today-games-empty {
    width: 100%;
    box-sizing: border-box;

    padding: 24px 16px;

    background: #fff;

    color: #6b7785;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;

    text-align: center;
}


/* ==========================================================
   КОНТЕЙНЕР ТАБЛИЦЫ
   ========================================================== */

.today-games-table-wrapper {
    width: 100%;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
}


/* ==========================================================
   ТАБЛИЦА
   ========================================================== */

.today-games-table {
    width: 100%;
    min-width: 650px;

    margin: 0;
    padding: 0;

    border-collapse: collapse;
    border-spacing: 0;

    font-family:
        "Lucida Sans Unicode",
        "Lucida Grande",
        Arial,
        sans-serif;

    font-size: 11px;

    text-align: center;
}


/* ==========================================================
   ЗАГОЛОВКИ ТАБЛИЦЫ
   ========================================================== */

.today-games-table th {
    padding: 8px 6px;

    background: #072746;
    color: #fff;

    border: 1px solid #fff;

    font-weight: 700;

    text-align: center;

    white-space: nowrap;
}


/* ==========================================================
   ЯЧЕЙКИ
   ========================================================== */

.today-games-table td {
    padding: 7px 6px;

    background: #fff;
    color: #17212b;

    border-top: 1px solid #e1e6ea;
    border-bottom: 1px solid #e1e6ea;

    text-align: center;
}


/* ==========================================================
   ВРЕМЯ
   ========================================================== */

.today-games-table .today-games-time {
    width: 60px;

    background: #072746;
    color: #fff;

    font-weight: 700;

    white-space: nowrap;
}


/* ==========================================================
   ТУРНИР
   ========================================================== */

.today-games-table .today-games-league {
    width: 70px;

    font-weight: 700;
}


/* ==========================================================
   КОМАНДЫ
   ========================================================== */

.today-games-table .today-games-team {
    font-weight: 600;
}


/* ==========================================================
   АРЕНА
   ========================================================== */

.today-games-table .today-games-arena {
    color: #4f5d6b;
}


/* ==========================================================
   ССЫЛКА "ИГРА"
   ========================================================== */

.today-games-table .today-games-link {
    width: 75px;

    white-space: nowrap;
}


.today-games-table .today-games-link a {
    color: #072746;

    font-size: inherit;
    font-weight: 700;

    text-decoration: none;
}


.today-games-table .today-games-link a:hover {
    color: #eb7424;
}


/* ==========================================================
   LIVE
   ========================================================== */

.today-games-live {
    width: 20px !important;
    height: auto;

    display: inline-block;

    margin-left: 3px;

    vertical-align: middle;
}


/* ==========================================================
   ЧЁТНЫЕ СТРОКИ
   ========================================================== */

.today-games-table tbody tr:nth-child(even) td {
    background: #f6f8fa;
}


.today-games-table tbody tr:nth-child(even) .today-games-time {
    background: #223e5a;
}


/* ==========================================================
   HOVER
   ========================================================== */

.today-games-table tbody tr:hover td {
    background: #eef3f6;
}


.today-games-table tbody tr:hover .today-games-time {
    background: #223e5a;
}


/* ==========================================================
   3. ОБЩАЯ ТАБЛИЦА РОССИИ
   ========================================================== */

.widgets-games #rusGamesToday {
    width: 100%;
    box-sizing: border-box;
}


/*
   Оставляем возможность использовать старый
   .widgetheader внутри вкладки России.
*/

.widgets-games #rusGamesToday > .widgetheader {
    display: block;

    width: 100%;
    box-sizing: border-box;

    margin: 0;
    padding: 10px 16px;

    background: #223e5a;
    color: #fff;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;

    text-align: left;
}


/* ==========================================================
   ТАБЛИЦА РОССИИ
   ОФОРМЛЕНИЕ ТОЧНО КАК TODAY-GAMES-TABLE
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table {
    width: 100%;
    min-width: 650px;

    margin: 0;
    padding: 0;

    border-collapse: collapse;
    border-spacing: 0;

    font-family:
        "Lucida Sans Unicode",
        "Lucida Grande",
        Arial,
        sans-serif;

    font-size: 11px;

    text-align: center;
}


/* ==========================================================
   ЗАГОЛОВКИ
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table th {
    padding: 8px 6px;

    background: #072746;
    color: #fff;

    border: 1px solid #fff;

    font-weight: 700;

    text-align: center;

    white-space: nowrap;
}


/* ==========================================================
   ЯЧЕЙКИ
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table td {
    padding: 7px 6px;

    background: #fff;
    color: #17212b;

    border-top: 1px solid #e1e6ea;
    border-bottom: 1px solid #e1e6ea;

    text-align: center;
}


/* ==========================================================
   ВРЕМЯ — ПЕРВЫЙ СТОЛБЕЦ
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table .today-games-time {
    width: 60px;

    background: #072746;
    color: #fff;

    font-weight: 700;

    white-space: nowrap;
}


/* ==========================================================
   ТУРНИР
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table .today-games-league {
    width: 70px;

    font-weight: 700;
}


/* ==========================================================
   КОМАНДЫ
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table .today-games-team {
    font-weight: 600;
}


/* ==========================================================
   АРЕНА
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table .today-games-arena {
    color: #4f5d6b;
}


/* ==========================================================
   ИГРА
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table .today-games-link {
    width: 75px;

    white-space: nowrap;
}


/* ==========================================================
   ЧЁТНЫЕ СТРОКИ
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table tbody tr:nth-child(even) td {
    background: #f6f8fa;
}


/* ==========================================================
   ЧЁТНЫЕ СТРОКИ — ПЕРВЫЙ СТОЛБЕЦ
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table tbody tr:nth-child(even) .today-games-time {
    background: #223e5a;
}


/* ==========================================================
   HOVER
   ========================================================== */

.widgets-games #rusGamesToday .today-games-table tbody tr:hover td {
    background: #eef3f6;
}


.widgets-games #rusGamesToday .today-games-table tbody tr:hover .today-games-time {
    background: #223e5a;
}

/* ==========================================================
   ВЕРТИКАЛЬНЫЙ СКРОЛЛ ТАБЛИЦЫ ИГР
   ========================================================== */

.today-games-table-wrapper {
    max-height: 300px;

    overflow-y: auto;
    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
}


/* ==========================================================
   ФИКСИРОВАННАЯ ШАПКА
   ========================================================== */

.today-games-table thead th {
    position: sticky;
    top: 0;

    z-index: 2;
}


/* ==========================================================
   МОБИЛЬНЫЕ
   ========================================================== */

@media (max-width: 650px) {

    .today-games-table-wrapper {
        max-height: 500px;
    }

}

/* ==========================================================
   СТРАНИЦА ВИДЖЕТА
   ========================================================== */

.widget-page {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    background: #fff;
}


/* ==========================================================
   HEADER
   ========================================================== */

.widget-page__header {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* ==========================================================
   ОСНОВНОЙ КОНТЕНТ
   ========================================================== */

.widget-page__main {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* ==========================================================
   КОНТЕЙНЕР
   ========================================================== */

.widget-page__container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 0 20px;

    box-sizing: border-box;
}


/* ==========================================================
   СТРАНИЦА
   ========================================================== */

.widget-page__article {
    width: 100%;
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* ==========================================================
   ЗАГОЛОВОК
   ========================================================== */

.widget-page__title {
    width: 100%;

    margin: 0;
    padding: 20px 0;
}


.widget-page__title-text {
    margin: 0;
    padding: 0;

    color: #072746;

    font-family: inherit;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}


/* ==========================================================
   КОНТЕНТ ВИДЖЕТА
   ========================================================== */

.widget-page__content {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    color: #17212b;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================
   КАРТИНКИ В КОНТЕНТЕ
   ========================================================== */

.widget-page__content img {
    max-width: 100%;
    height: auto;
}


/* ==========================================================
   ТАБЛИЦЫ В КОНТЕНТЕ
   ========================================================== */

.widget-page__content table {
    max-width: 100%;
}


/* ==========================================================
   SHARE
   ========================================================== */

.widget-page__share {
    width: 100%;

    margin: 25px 0 20px 0;
    padding: 20px 0 0 0;

    border-top: 1px solid #e1e6ea;

    box-sizing: border-box;
}


.widget-page__share-title {
    margin: 0 0 8px 0;

    color: #17212b;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   VK LIKE
   ========================================================== */

.widget-page__vk {
    width: 100%;

    margin: 20px 0 30px 0;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.widget-page__footer {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .widget-page__container {
        padding: 0 12px;
    }


    .widget-page__title {
        padding: 15px 0;
    }


    .widget-page__title-text {
        font-size: 22px;
    }


    .widget-page__content {
        font-size: 13px;
    }


    .widget-page__share {
        margin-top: 20px;
        padding-top: 15px;
    }

}

/* ==========================================================
   ВИДЖЕТЫ РФБ НА MOBILE FIX WIDTH
   ========================================================== */
@media (max-width: 767px) {

    .container:has(competition-profile) {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .container:has(competition-profile) competition-profile {
        font-size: 75% !important;
    }
/*
    .container:has(competition-profile) competition-profile h1,
    .container:has(competition-profile) competition-profile h2,
    .container:has(competition-profile) competition-profile h3,
    .container:has(competition-profile) competition-profile h4,
    .container:has(competition-profile) competition-profile p,
    .container:has(competition-profile) competition-profile span,
    .container:has(competition-profile) competition-profile li,
    .container:has(competition-profile) competition-profile td,
    .container:has(competition-profile) competition-profile th,
    .container:has(competition-profile) competition-profile button,
    .container:has(competition-profile) competition-profile input,
    .container:has(competition-profile) competition-profile select {
        font-size: 75% !important;
    }
*/
}

@media (max-width: 767px) {

    .container:has(competition-profile) {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

}

/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.fbp-games-table th {
    padding: 12px 15px;

    background: #072746;

    color: #ffffff;

    font-weight: 600;
    line-height: 1.3;

    border: 0;
}


/* =========================================================
   ЯЧЕЙКИ
   ========================================================= */

.fbp-games-table td {
    padding: 10px 15px;

    background: #ffffff;

    color: #072746;

    border: 0;
    border-bottom: 1px solid #e3e8ed;

    vertical-align: middle;
}


/* =========================================================
   ПЕРВАЯ КОЛОНКА
   ========================================================= */

.fbp-games-table td:first-child {
    background: #f3f6f8;

    color: #072746;

    font-weight: 600;
}


/* =========================================================
   ЧЕРЕДОВАНИЕ СТРОК
   ========================================================= */

.fbp-games-table tbody tr:nth-child(even) td {
    background: #f8fafb;
}


.fbp-games-table tbody tr:nth-child(even) td:first-child {
    background: #eef2f5;
}


/* =========================================================
   НАВЕДЕНИЕ НА СТРОКУ
   ========================================================= */

.fbp-games-table tbody tr:hover td {
    background: #eef4f8;
}


.fbp-games-table tbody tr:hover td:first-child {
    background: #e5edf3;
}


/* =========================================================
   ПОСЛЕДНЯЯ СТРОКА
   ========================================================= */

.fbp-games-table tbody tr:last-child td {
    border-bottom: 0;
}


/* =========================================================
   ССЫЛКИ
   ========================================================= */

.fbp-games-table a,
.fbp-games-table a:visited {
    color: #072746;

    text-decoration: none;

    transition: color 0.2s ease;
}


.fbp-games-table a:hover,
.fbp-games-table a:focus {
    color: #0a355f;

    text-decoration: underline;
}


/* =========================================================
   ССЫЛКИ В ПЕРВОЙ КОЛОНКЕ
   ========================================================= */

.fbp-games-table td:first-child a,
.fbp-games-table td:first-child a:visited {
    color: #072746;
}


.fbp-games-table td:first-child a:hover,
.fbp-games-table td:first-child a:focus {
    color: #0a355f;
}


/* =========================================================
   МОБИЛЬНЫЕ
   ========================================================= */

@media (max-width: 700px) {

    .widgets-games .tab-buttons {
        border-radius: 0;
    }


    .widgets-games .tab-button {
        padding: 11px 8px;

        font-size: 12px;
    }


    .fbp-games-table {
        width: 100%;

        margin-top: 20px;
        margin-bottom: 30px;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }


    .fbp-games-table table {
        min-width: 650px;
    }


    .fbp-games-table th,
    .fbp-games-table td {
        padding: 9px 10px;

        font-size: 13px;
    }

}


.shortcomps-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 25px;
}

.shortcomp-item {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 18px 22px;

    background: #fff;
    border: 1px solid #e5e9ee;
    border-radius: 10px;

    color: #072746;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;

    text-decoration: none;

    box-shadow: 0 2px 8px rgba(7, 39, 70, 0.05);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.shortcomp-item:hover {
    color: #072746;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: #cbd5df;
    box-shadow: 0 6px 18px rgba(7, 39, 70, 0.10);
}

.shortcomp-item::before {
    content: "›";

    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin-right: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #072746;
    color: #fff;

    font-size: 22px;
    line-height: 1;
}

/* BR не должен становиться отдельной ячейкой grid */
.shortcomps-list br {
    display: none;
}

@media (max-width: 767px) {

    .shortcomps-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .shortcomp-item {
        min-height: auto;
        padding: 15px 16px;
        font-size: 15px;
        line-height: 1.4;
    }

    .shortcomp-item::before {
        width: 26px;
        height: 26px;
        margin-right: 11px;
        font-size: 19px;
    }

}

/* =========================================================
   FIX карусель
   ========================================================= */

.owl-item {
    width: 160px !important;
}

/* =========================================================
   404
   ========================================================= */

.error-404 {
    text-align: center;
    width: 100%;
}

.error-404 img {
    display: block;
    margin: 20px auto;
}

.error-404-home {
    display: inline-block;
}