/* CSS Reset */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background-color: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

/* Гарантируем корректное отображение мультимедиа */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Наследование шрифтов для элементов формы */
input,
button,
textarea,
select {
    font: inherit;
}

/* Предотвращаем перенос слов внутри элементов */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Опционально: создаём новый контекст наложения для корневого элемента приложения */
#root,
#__next {
    isolation: isolate;
}

a {
    color: #3061CD;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}













body,
html {
    font-family: "Inter", serif;
    scroll-behavior: smooth;
}

section {
    max-width: 1440px;
    margin: 0 auto;
}

section.hero,
section.contacts {
    max-width: 100%;
}

/* Хедер */
header {
    position: absolute;
    z-index: 999;
    top: 0;
    width: 100%;
    padding: 35px 90px;
}

.pc-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #FFFFFF80;

    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-header .logo-block {
    width: 180px;
}

.pc-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.main-navigation ul {
    justify-content: flex-end;
    gap: 30px;
}

ul.sub-menu {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    top: 30px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.sub-menu::before {
    content: '';
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    min-height: 20px;
    width: 100%;
}

ul.sub-menu a {
    color: #000;
}

ul.sub-menu li a {
    width: fit-content;
}

.pc-nav a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    color: #fff;
}

header nav li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

header .current-menu-item a {
    border-bottom: 1px solid #fff;
}

header nav li a {
    border-bottom: 1px solid transparent;
}

header nav li a:hover {
    text-decoration: none !important;
    border-bottom: 1px solid #fff;
}


/* 1 секция главной */
section.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    background-image: url(./img/home-hero-bcg.webp);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background-image: url(https://ips.web-perfomance.uz/wp-content/uploads/2025/02/bcg-overlay-scaled.webp);
    background-size: cover;
    background-position: top right;
    padding: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay-inner {
    display: flex;
    align-items: center;
    max-width: 1260px;
    width: 100%;
}

.hero-content {
    color: #fff;

    display: flex;
    align-items: center;
    gap: 90px;
}

.hero-content .text-info {
    max-width: 420px;
}

.hero-content .heading h1 {
    width: fit-content;
    max-width: 550px;

    text-transform: uppercase;
    font-size: 48px;
    font-weight: 800;
    line-height: 58px;
}

.abs-socials {
    position: absolute;
    bottom: 60px;
    right: 90px;
}

.social-items {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* .social-items a {
    display: block;
    padding: 1px;
} */

footer .social-items {
    margin-bottom: 20px;
}

.social-items svg {
    width: 27px;
    height: 28px;

    transition: all 0.3s;
}

.social-items svg:hover {
    transform: scale(1.1);
}


/* 2 секция главной */
.monitoring {
    padding: 90px;
}

.monitoring .section-heading {
    display: flex;
    justify-content: space-between;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43px;
}

.section-heading .more-info-block {
    max-width: 430px;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
}

.more-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;

    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.more-link svg {
    height: 17px;
    width: 12px;

    transition: all 0.3s;
}

.more-link:hover svg {
    margin-bottom: 3px;
    margin-top: -3px;
}

.accordion {
    margin-top: 50px;
}

.accordion-item {
    box-shadow: 3px 3px 18.8px 0px #00000014;
    margin-bottom: 20px;
    border: 2px solid #E1DEDE;
    border-radius: 20px;
    overflow: hidden;
}

.accordion-header {
    padding: 30px;
    width: 100%;
    border: none;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    /* background-color: #f9fafb; */
}

.accordion-title {
    color: #3061CD;
    text-align: left;

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

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion-content-inner {
    padding: 30px;
    padding-top: 0px;
}

.accordion.inner-accordion {
    margin-top: 0px;
}

/* .accordion.inner-accordion { */
.inner-accordion .accordion-item {
    margin: 0px;
    box-shadow: none;
    border-radius: 6px;
    border: 1px solid #C5C4C4;
    margin-bottom: 20px;
}

.inner-accordion .accordion-header span {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000;
}

.inner-accordion .accordion-header {
    padding: 20px;
}

.inner-accordion .accordion-item {
    box-shadow: none;
}

.inner-accordion .accordion-content-inner {
    padding: 20px;
    padding-top: 0px;
}

.inner-accordion .accordion-header:hover {
    background: #fff;
}

/* .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
} */

/* Для внешнего аккордеона */
.outer-accordion>.accordion-item.active>.accordion-header .accordion-icon {
    transform: rotate(180deg);
}

/* Для внутреннего аккордеона */
.inner-accordion>.accordion-item.active>.accordion-header .accordion-icon {
    transform: rotate(180deg);
}

/* Сброс поворота для неактивных вложенных аккордеонов */
.accordion-item.active .accordion-item:not(.active) .accordion-icon {
    transform: rotate(0);
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}


/* Стили для внешнего аккордеона */
.outer-accordion>.accordion-item.active>.accordion-content {
    max-height: 1000px;
    /* или другое подходящее значение */
}

/* Стили для внутреннего аккордеона */
.inner-accordion>.accordion-item.active>.accordion-content {
    max-height: 1000px;
}

/* Сброс стандартного поведения */
.accordion-item.active .accordion-item .accordion-content {
    max-height: 0;
}

.accordion-item.inner-accordion-item:nth-last-child(1) {
    margin-bottom: 0px !important;
}


/* 3 секция главной */
section.contacts {
    background-image: url(https://ips.web-perfomance.uz/wp-content/uploads/2025/02/cantact-img.webp);
    background-size: cover;
    background-position: center;
}

.contacts-overlay {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    background-color: #3061CDB2;
    padding: 60px 90px;
}

.contacts-overlay-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1260px;
    width: 100%;
}

.contacts .info-block h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43px;

    margin-bottom: 30px;
    color: #FFF;
}

.contacts .info-block .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    color: #FFF;

    max-width: 550px;
}

.contacts .links-block,
footer .links-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .links-block {
    gap: 10px;
}

.contacts .links-block span,
footer .links-block span {
    display: block;
    padding-left: 15px;
    border-left: 3px solid #fff;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    color: #fff;
}

.contacts .links-block span a,
footer .links-block span a {
    color: #fff;
}

/* 4 секция новости */
.news-section {
    padding: 50px 90px;
    overflow: hidden;
    position: relative;
}

.news-section h2 {
    margin-bottom: 60px;
}

.news-item {
    display: block;

    border: 2px solid #E1DEDE;
    border-radius: 10px;
    padding: 15px;
}

.news-item .news-banner {
    min-height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #dcdcdc;
    user-select: none;
    /* Отключает выделение */
    -webkit-user-select: none;
    /* Для Safari */
    -moz-user-select: none;
    /* Для Firefox */
    -ms-user-select: none;
    /* Для Internet Explorer/Edge */
}

.news-name-link {
    display: block;
    margin-bottom: 15px;

    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: #000;
}

.news-item .short-info,
.news-item a.news-name-link {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item.swiper-slide.swiper-slide-active {
    margin-top: -50px;
    margin-bottom: 50px;
}

.news-item.swiper-slide {
    transition: all 0.6s;
}

.swiper-news-container {
    margin-left: -10%;
    padding-top: 60px;
}

.news-section-buttons-nav {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 90px;
    top: 50px;
    cursor: pointer;
}

.news-section-buttons-nav div {
    transition: all 0.3s;
}

.news-section-buttons-nav div:hover {
    transform: scale(1.05);
}



/* Новости */
section.post-content {
    padding: 50px 90px;
}

section.post-content h2 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 20px;
}

section.post-content img {
    border-radius: 10px;
}

/* Компонент - отчеты */
.report-section .report-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #3061CD;
}

.report-section h3.report-title {
    margin-bottom: 15px;
}

.report-section .report-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 50%;
    margin-bottom: 30px;
}

.report-table-content {
    border: 1px solid #AEAEAE;
    border-radius: 10px;
}


.document-table {
    width: 100%;
    border-collapse: collapse;
    /* Убирает двойные линии между границами */
    text-align: left;
    overflow: hidden;
    /* Обеспечивает правильное отображение скругленных углов при использовании границ */
    margin: 0px;
}




.document-table th {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.document-table tbody {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
}

.document-table th,
.document-table td {
    padding: 20px;
}

.document-table tr td:nth-child(3) {
    padding-left: 70px;
}

.document-table tbody tr {
    border-top: 1px solid #AEAEAE;
    /* Линия между строками */
}

.document-table tbody tr:last-child {
    border-bottom: none;
    /* Нижняя граница таблицы */
}

.document-table a {
    color: #3061CD;
    text-decoration: none;
}

.document-table a:hover {
    text-decoration: underline;
}

.download-button {
    background-color: #3061CD;
    color: #fff !important;
    border: none;
    padding: 8px 30px;
    border-radius: 10px;
    cursor: pointer;

    font-size: 20px;
    font-weight: 500;
    line-height: 24px;

    transition: all 0.3s;
}

.download-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Страница мониторинга */
section.convention-page {
    max-width: 1440px;
    padding: 40px 90px;
    margin: 0 auto;
}

.convention-section h2 {
    font-weight: 800;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 20px;
}

.chapter-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.chapter-info h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 38.7px;
    margin-bottom: 20px;
}

.convention-page .text-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    max-width: 620px;
}

.chapter-info .more-link {
    margin-top: 0px;
}

.score-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.score-block {
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #E1DEDE;
    box-shadow: 3px 3px 18.8px 0px #00000014;
}

.score-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #3061CD;
    margin-bottom: 20px;
}

.score-row h4 {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 30px;
}

.law-implimentation {
    display: flex;
    margin-bottom: 28px;
}

.implimentation-item {
    padding-top: 10px;
    font-weight: 400;
    font-size: 9px;
    line-height: 10px;
    position: relative;
}

.implimentation-item.active-imp::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(http://ips.web-perfomance.uz/wp-content/uploads/2025/02/active-item.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -27px;
    left: 48%;
}


/* Мониторинг раздел */
.tabs-container {
    width: 100%;
    margin-bottom: 50px;
}

.tabs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* border-bottom: 2px solid #ddd; */
    margin-bottom: 40px;
}

.tab {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.tab:hover {
    color: #3061CD;
}

.tab.active {
    color: #3061CD;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3061CD;
    transform-origin: left;
    animation: lineGrow 0.3s ease forwards;
}

.tabs-content {
    position: relative;
    min-height: 100px;
}

.tab-content {
    opacity: 0;
    position: absolute;
    width: 100%;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: #fff;
}

.tab-content.table-docs {
    width: 100%;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: all;
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Грид мониторинга */
.practice-grid-section {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 40px;
}

.practive-item {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #E1DEDE;
    box-shadow: 3px 3px 18.8px 0px #00000014;
}

.practive-item .practive-item-title {
    display: flex;
    align-items: center;
    gap: 40px;

    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}


/* Главная страница - раздел мониторинга */
.monitoring-posts-slider-section-parent-wrapper {
    padding: 0 70px;
    position: relative;
}

.monitoring-posts-slider-section {
    padding: 70px 0px !important;
    max-width: 1300px;
    margin: 0 auto;
}

.monitoring-posts-slider-section .swiper-wrapper {
    box-sizing: border-box;
    /* padding: 15px; */
}

.post-item-slider-parent {
    padding: 20px;

    display: flex !important;
    align-items: stretch;
}


.post-item-slider-parent.swiper-slide {
    height: auto !important;
}

.post-item-slider {
    box-shadow: 0px 4px 8px 0px #0000001A;
    border-radius: 10px;
    padding: 20px;
    /* margin: 0 10px; */

    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-razdel-section {
    background: #3061CD;
}

.category-razdel-section h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #fff;
    padding: 20px 90px;
    max-width: 1440px;
    margin: 0 auto;
}

.category-razdel-section h2 a {
    color: #fff;
}

.monitoring-posts-slider-section .post-title {
    color: #3061CD;
    font-weight: 500;
    font-size: 18px;
    line-height: 21.5px;
    margin-bottom: 15px;
}


.monitoring-posts-slider-section .post-short-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 25px;
}

.post-more-link {
    display: flex;
    justify-content: flex-end;
}

.post-more-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    color: #fff;
    background: #3061CD;
    padding: 8px 10px;

    font-weight: 500;
    font-size: 12px;
    line-height: 14.5px;
}

.post-more-link svg {
    width: 10px;
    height: 11px;
}

.post-more-link svg path {
    fill: #fff;
}

.monitors-section-buttons-nav {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    top: 50%;
}

.monitors-section-buttons-nav .news-section-prev,
.monitors-section-buttons-nav .news-section-next {
    position: absolute;
    top: -250px;
    background: #fff;
    transition: all 0.4s;
    cursor: pointer;
}

.monitors-section-buttons-nav .news-section-prev:hover,
.monitors-section-buttons-nav .news-section-next:hover {
    transform: scale(1.1);
}

.monitors-section-buttons-nav .news-section-prev {
    left: -50px;
}

.monitors-section-buttons-nav .news-section-next {
    right: -50px;
}


/* Футер */
footer.bottom-footer {
    padding: 40px 70px;
    margin-top: 50px;
    background-color: #3061CD;
    color: #fff;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
}

.footer-inner {
    max-width: 1260px;
    margin: 0 auto;
}

.footer-about-info {
    width: 40%;
}

.footer-contacts-links {
    width: 33%;
}

footer.bottom-footer a {
    color: #fff;
}

.logo-section {
    border-bottom: 1px solid #FFFFFF80;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.logo-section img {
    width: 180px;
}

.footer-info-section {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-links a {
    white-space: nowrap;
}

.footer-contacts-links {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    align-items: flex-start;
}

.go-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;

    transition: all 0.3s;
}

.go-to-top:hover {
    transform: scale(1.05);
}

.go-to-top .icon-top {
    width: 64px;
    height: 64px;

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

    background-color: #fff;
    border-radius: 10px;
}

.go-to-top .icon-top svg {
    width: 15px;
    height: 15px;
}

.copiright-section {
    margin-top: 50px;
    text-align: center;
}
















@media only screen and (max-width: 768px) {

    /* Мобильный оффканванс для меню */

    .menu-menu-1-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        transition: all 0.3s ease-in-out;
        z-index: 9999;
        overflow-y: auto;
        padding: 50px 20px;
    }


    /* Стили для меню */
    .menu-menu-1-container .menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-menu-1-container .menu-item {
        margin: 20px 0;
    }

    .menu-menu-1-container ul.sub-menu .menu-item {
        margin: 0px;
    }

    .menu-menu-1-container ul.sub-menu {
        display: flex;
        gap: 15px;
    }

    .menu-menu-1-container .menu-item a {
        font-size: 18px;
        text-decoration: none;
        color: #333;
        transition: color 0.3s ease;
    }

    .menu-menu-1-container .menu-item a:hover {
        color: #666;
    }

    /* Polylang */
    /* header [class^="menu-m"] .menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    header [class^="menu-m"] .menu-item {
        margin: 20px 0;
    }

    header [class^="menu-m"] ul.sub-menu .menu-item {
        margin: 0px;
    }

    header [class^="menu-m"] ul.sub-menu {
        display: flex;
        gap: 15px;
    }

    header [class^="menu-m"] .menu-item a {
        font-size: 18px;
        text-decoration: none;
        color: #333;
        transition: color 0.3s ease;
    }

    header [class^="menu-m"] .menu-item a:hover {
        color: #666;
    } */





    /* Стили для кнопки закрытия */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 25px;
        height: 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .menu-close::before,
    .menu-close::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: transform 0.3s ease;
    }

    .menu-close::before {
        transform: rotate(45deg);
    }

    .menu-close::after {
        transform: rotate(-45deg);
    }

    .menu-menu-1-container.active {
        right: 0;
        padding: 20px;
        padding-top: 5px;
    }

    .nav-toogle {
        cursor: pointer;
        position: relative;
    }

    /* Мобильный оффканванс для меню */

    header {
        /* display: none; */
        padding: 15px;
    }

    .main-navigation ul {
        display: block;
    }

    ul#primary-menu a {
        color: #000;
        max-width: 80%
    }

    .pc-header {
        padding-bottom: 10px;
    }

    .pc-header svg {
        width: 30px;
    }

    img.header-logo {
        min-width: 200px;
    }


    /* 1 секция главной */
    .hero-overlay {
        padding: 30px 15px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-content .heading h1 {
        font-size: 32px;
        font-weight: 800;
        line-height: 44px;
        max-width: 100%;
    }

    .abs-socials {
        bottom: 40px;
        right: 20px;
    }

    /* 3 секция главной */
    section.monitoring {
        padding: 30px 15px;
    }

    .monitoring .section-heading {
        flex-direction: column;
        gap: 0px;
    }

    .monitoring .accordion {
        /* margin-top: 30px; */
    }

    /* .accordion-content-inner {
        padding-bottom: 0px;
    } */

    .monitoring .accordion-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 25px;
    }

    /* Компонент контакты */
    .contacts-overlay {
        padding: 30px 15px;
        background-color: #1643a5b2;
    }

    .contacts-overlay-inner {
        flex-direction: column;
        gap: 30px;
    }

    /* Блок новостей */
    .news-section {
        padding: 30px 15px;
    }

    .swiper-news-container {
        margin-left: -4%;
    }

    .news-section h2 {
        margin-bottom: 30px;
    }

    .news-section-buttons-nav {
        right: 10px;
        top: 30px;
    }

    .news-item .news-banner {
        min-height: 140px;
        margin-bottom: 20px;
    }

    .news-name-link {
        font-size: 18px;
        font-weight: 600;
        line-height: 21px;
    }

    .news-item.swiper-slide.swiper-slide-active {
        margin-top: -30px;
        margin-bottom: 30px;
    }


    /* Страница мониторинга */
    section.convention-page {
        padding: 30px 15px;
        padding-bottom: 0px;
    }

    .convention-section h2 {
        font-size: 36px;
        font-weight: 700;
        line-height: 43px;
    }

    .chapter-info h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .chapter-info {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .score-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    section.monitoring.inner-page .score-section {
        margin-bottom: 20px;
    }

    .score-block {
        padding: 20px;
    }


    /* Новости - страница */
    section.post-content {
        padding: 30px 15px;
    }

    section.post-content h2 {
        font-size: 34px;
        line-height: 35px;
    }

    .report-section .report-info {
        max-width: 100%;
    }

    .document-table th,
    .download-button {
        font-size: 16px;
        line-height: 19px;
    }

    .document-table th,
    .document-table td {
        padding: 15px;
    }

    .document-table th {
        white-space: nowrap;
        padding: 20px 15px;
    }

    .document-table tr td:nth-child(3) {
        padding-left: 15px;
    }

    .report-table-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }



    /* Мониторинг раздел */
    .tabs-container {
        margin-bottom: 30px;
    }

    .tabs {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 30px;
    }

    .tab-content {
        width: 100%;
    }


    /* Главная страница - раздел мониторинга */
    .category-razdel-section h2 {
        padding: 20px 15px;
    }

    .monitoring-posts-slider-section-parent-wrapper {
        padding: 0 15px;
    }

    .monitoring-posts-slider-section {
        padding: 30px 0 !important;
    }

    .post-item-slider-parent {
        padding: 10px;
    }

    .monitors-section-buttons-nav {
        display: flex;
        justify-content: center;
        padding: 0 15px 20px 15px;
        gap: 30px;
    }

    .monitors-section-buttons-nav .news-section-prev,
    .monitors-section-buttons-nav .news-section-next {
        position: static;
    }


    /* Грид мониторинга */
    .practice-grid-section {
        grid-template-columns: 1fr;
    }

    .practive-item .practive-item-title {
        gap: 20px
    }



    /* Футер */
    footer.bottom-footer {
        padding: 30px 15px;
    }

    .logo-section img {
        width: 200px;
    }

    .footer-info-section {
        flex-direction: column;
        gap: 35px;
    }

    .footer-contacts-links,
    .footer-about-info {
        width: 100%;
    }

    .footer-contacts-links {
        justify-content: flex-start;
    }
}