/* ================================================================
   SYABRY 2002 — Полный CSS темы
   ================================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#site-main {
    flex: 1 0 auto;
}

#site-footer {
    flex-shrink: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #006837;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .5em;
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    border-bottom: 2px solid #006837;
}

.header-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
    text-decoration: none;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-logo-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #006837;
    text-decoration: none;
    white-space: nowrap;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header-nav ul li {
    position: relative;
}

.header-nav ul li a {
    display: flex;
    align-items: center;
    height: 61px;
    padding: 0 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color .2s;
}

.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #006837;
    transition: left .25s, right .25s;
}

.header-nav ul li a:hover,
.header-nav ul li.current-menu-item > a,
.header-nav ul li.current-page-ancestor > a {
    color: #006837;
}

.header-nav ul li a:hover::after,
.header-nav ul li.current-menu-item > a::after,
.header-nav ul li.current-page-ancestor > a::after {
    left: 0;
    right: 0;
}

.header-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    z-index: 500;
    flex-direction: column;
}

.header-nav ul li:hover > ul {
    display: flex;
}

.header-nav ul li ul li a {
    height: auto;
    padding: 11px 18px;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
}

.header-nav ul li ul li a::after {
    display: none;
}

.header-btn-wrap {
    flex-shrink: 0;
}

.header-btn {
    display: inline-block;
    background: #006837;
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}

.header-btn:hover {
    background: #004d29;
    color: #fff;
}

.header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.header-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: .3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    padding: 110px 20px 20px;
    flex-direction: column;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    line-height: 1;
    margin-bottom: 20px;
}

.mobile-nav ul {
    flex-direction: column;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li a:hover {
    color: #006837;
}

.mobile-nav-btn {
    margin-top: 20px;
    background: #006837;
    color: #fff;
    border: none;
    padding: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    width: 100%;
}

@media (max-width: 1050px) {
    .header-nav {
        display: none;
    }

    .header-burger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .header-btn-wrap {
        display: none;
    }
}

#page-wrap {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-row {
    background: url('/wp-content/uploads/2018/09/0002.jpg') no-repeat 38% 50% / cover;
    min-height: 500px;
}

.hero-row--custom {
    background-size: cover !important;
    background-position: 50% 0% !important;
}

@media (max-width: 800px) {
    .hero-row {
        background-image: url('/wp-content/uploads/2018/09/web2.jpg');
        background-position: center center;
        min-height: 280px;
    }
}

.mainheader, .mainheadergallery {
    text-transform: uppercase;
    font-size: 36px;
    text-align: center;
    line-height: 43px;
    color: #000;
    padding-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.maininfoheader a {
    color: #006837;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-decoration: none;
    transition: .3s;
    display: block;
}

.maininfoheader a:hover {
    text-decoration: underline;
}

.maininfotext {
    color: #000;
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
}

.maininfoblock1, .maininfoblock2, .maininfoblock3, .maininfoblock4, .maininfoblock5 {
    padding-left: 50px;
    position: relative;
    min-height: 55px;
}

.maininfoblock1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 39px;
    height: 50px;
    background: url('/wp-content/uploads/2018/09/greek9-u336.png') no-repeat center/contain;
}

.maininfoblock2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 39px;
    height: 50px;
    background: url('/wp-content/uploads/2018/09/diploma20-u287.png') no-repeat center/contain;
}

.maininfoblock3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 39px;
    height: 50px;
    background: url('/wp-content/uploads/2018/09/gas-industry-u281.png') no-repeat center/contain;
}

.maininfoblock4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 39px;
    height: 50px;
    background: url('/wp-content/uploads/2018/09/019-gps-u359.png') no-repeat center/contain;
}

.maininfoblock5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 39px;
    height: 50px;
    background: url('/wp-content/uploads/2018/09/1439835989_untitled-2-34-u365.png') no-repeat center/contain;
}

.maininfoheader2 {
    color: #fff;
    font-size: 36px;
    line-height: 43px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

.maininfotext2 {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}

.maininfoblock6link {
    text-decoration: none;
    display: block;
}

.maininfoimg {
    position: absolute;
    top: -30px;
    left: -50px;
    z-index: 1;
}

@media (max-width: 1000px) {
    .maininfoimg {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1040px) {
    .maininfoheader2 {
        font-size: 20px;
        line-height: 30px;
    }

    .maininfotext2 {
        font-size: 14px;
        line-height: 18px;
    }
}

.mainrowimp {
    background: url('/wp-content/uploads/2018/09/c3fc4983ac899791fd1445112c81a94eb1275dc8.jpg') no-repeat center center/cover;
}

.mainheaderimp {
    color: #fff;
    font-size: 36px;
    line-height: 43px;
    text-transform: uppercase;
    padding-bottom: 30px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.maintextimp {
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    padding-bottom: 15px;
}

.mainblockimp {
    padding: 20px 80px;
}

@media (max-width: 1000px) {
    .mainheaderimp {
        font-size: 26px;
    }

    .mainblockimp {
        padding: 20px;
    }
}

.syabry-news-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

@media (max-width: 1024px) {
    .syabry-news-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .syabry-news-grid {
        grid-template-columns:1fr;
    }
}

.syabry-news-card {
    border: 1px solid #c9ddd1;
    background: #fff;
    overflow: hidden;
    border-radius: 8px;
    transition: box-shadow .3s, transform .3s;
}

.syabry-news-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.syabry-news-card__img {
    height: 160px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syabry-news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.syabry-news-card__img-no {
    font-size: 40px;
    color: #ccc;
}

.syabry-news-card__body {
    padding: 14px;
}

.syabry-news-card__meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.syabry-news-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.syabry-news-card__title a {
    color: #222;
    text-decoration: none;
}

.syabry-news-card__title a:hover {
    color: #006837;
}

.syabry-news-card__excerpt {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.syabry-news-card__link {
    font-size: 13px;
    font-weight: 700;
    color: #006837;
    text-decoration: none;
}

.syabry-btn-all-news {
    display: table;
    margin: 0 auto;
    background: #006837;
    color: #fff;
    padding: 11px 28px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-decoration: none;
    border-radius: 8px;
    transition: background .2s;
}

.syabry-btn-all-news:hover {
    background: #004d29;
    color: #fff;
}

.rowgallery {
    background: url('/wp-content/uploads/2018/09/005-min.png') center center/cover;
}

.mainheadergallery {
    transform: translateY(200px);
    color: #fff;
}

.syabry-gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.syabry-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.syabry-gallery-item:hover img {
    transform: scale(1.08);
}

.contactdolg {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.contactname {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
}

.contacttel {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #000;
}

.conatactblock {
    background: #eee;
    padding: 20px;
}

.contactimg1, .contactimg2 {
    font-size: 13px;
    font-weight: 600;
    color: #105b39;
    padding-left: 40px;
    position: relative;
    display: block;
    margin-top: 10px;
    text-decoration: none;
}

.contactimg1 a, .contactimg2 a {
    text-decoration: none;
}

.syabry-contacts-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

@media (max-width: 900px) {
    .syabry-contacts-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .syabry-contacts-grid {
        grid-template-columns:1fr;
    }
}

#site-footer {
    background: #111;
    padding: 16px 0;
}

.footer-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    flex-direction: row !important;
}

.footer-nav ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.footer-nav ul li {
    display: inline-block;
}

.footer-nav a, .footer-nav ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 10px;
    transition: color .2s;
    white-space: nowrap;
}

.footer-nav a:hover, .footer-nav ul li a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    white-space: nowrap;
}

.footer-copy a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
}

.syabry-page-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
    padding: 28px 30px 20px;
}

.syabry-page-header-inner {
    max-width: 1340px;
    margin: 0 auto;
}

.syabry-page-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 6px;
}

.syabry-breadcrumb {
    font-size: 13px;
    color: #999;
}

.syabry-breadcrumb a {
    color: #999;
    text-decoration: none;
}

.syabry-breadcrumb a:hover {
    color: #006837;
}

.syabry-page-content {
    max-width: 1340px;
    margin: 0 auto;
    padding: 40px 30px 60px;
}

.syabry-post-content {
    font-size: 16px;
    line-height: 1.8;
}

.syabry-post-content p {
    margin-bottom: 1em;
}

.syabry-post-content h2 {
    font-size: 24px;
    margin: 1.4em 0 .5em;
}

.syabry-post-content h3 {
    font-size: 20px;
    margin: 1.2em 0 .4em;
}

.syabry-post-content img {
    max-width: 100%;
    margin: 1em 0;
}

.syabry-post-content ul, .syabry-post-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.syabry-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.syabry-post-content th, .syabry-post-content td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    font-size: 14px;
}

.syabry-post-content th {
    background: #006837;
    color: #fff;
    font-weight: 700;
}

.syabry-post-content tr:nth-child(even) td {
    background: #f9f9f9;
}

.syabry-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.syabry-pagination a, .syabry-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all .2s;
}

.syabry-pagination a:hover {
    border-color: #006837;
    color: #006837;
}

.syabry-pagination .current {
    background: #006837;
    color: #fff;
    border-color: #006837;
}

.syabry-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.syabry-modal-overlay.is-open {
    display: flex;
}

.syabry-modal {
    background: #fff;
    border-radius: 3px;
    width: 100%;
    max-width: 520px;
    padding: 36px 40px;
    position: relative;
    animation: syabryIn .2s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes syabryIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.syabry-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.syabry-modal__close:hover {
    color: #333;
}

.syabry-modal__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006837;
    margin-bottom: 4px;
}

.syabry-modal__sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.syabry-form__group {
    margin-bottom: 14px;
}

.syabry-form__row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

@media (max-width: 480px) {
    .syabry-form__row {
        grid-template-columns:1fr;
    }
}

.syabry-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.syabry-form__input, .syabry-form__textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.syabry-form__input:focus, .syabry-form__textarea:focus {
    border-color: #006837;
}

.syabry-form__textarea {
    min-height: 100px;
    resize: vertical;
}

.syabry-form__submit {
    width: 100%;
    background: #006837;
    color: #fff;
    border: none;
    padding: 13px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s;
    margin-top: 6px;
}

.syabry-form__submit:hover {
    background: #004d29;
}

.syabry-form__submit:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.syabry-form__error {
    color: #c00;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.syabry-form__success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.syabry-form__success-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.syabry-form__success-text {
    font-size: 18px;
    font-weight: 700;
    color: #006837;
}

.syabry-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 99998;
    align-items: center;
    justify-content: center;
}

.syabry-lightbox.is-open {
    display: flex;
}

.syabry-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.syabry-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.syabry-archive-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .syabry-archive-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .syabry-archive-grid {
        grid-template-columns:1fr;
    }
}

.syabry-btn {
    display: inline-block;
    background: #006837;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.syabry-btn:hover {
    background: #004d29;
    color: #fff;
}

.syabry-btn--outline {
    background: transparent;
    color: #006837;
    border: 2px solid #006837;
}

.syabry-btn--outline:hover {
    background: #006837;
    color: #fff;
}

/* -- УНИВЕРСАЛЬНАЯ СТРАНИЦА -- */
.univ-page-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 28px 0 18px;
}

.univ-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.univ-page-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin: 0 0 6px;
    letter-spacing: .02em;
}

.univ-body {
    padding: 40px 0 60px;
}

.univ-section {
    padding-bottom: 36px;
}

.univ-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.univ-section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #006837;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.univ-rich-text {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}

.univ-rich-text p {
    margin: 0 0 .9em;
}

.univ-rich-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 1.4em 0 .5em;
    color: #222;
}

.univ-rich-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 1.2em 0 .4em;
    color: #222;
}

.univ-rich-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 1em 0 .3em;
    color: #222;
}

.univ-rich-text ul {
    list-style: disc;
    padding-left: 1.4em;
    margin: 0 0 .9em;
}

.univ-rich-text ol {
    list-style: decimal;
    padding-left: 1.4em;
    margin: 0 0 .9em;
}

.univ-rich-text li {
    margin-bottom: .3em;
}

.univ-rich-text a {
    color: #006837;
}

.univ-rich-text a:hover {
    text-decoration: underline;
}

.univ-rich-text img {
    max-width: 100%;
    height: auto;
    margin: .8em 0;
    border-radius: 3px;
}

.univ-rich-text strong, .univ-rich-text b {
    font-weight: 700;
}

.univ-rich-text blockquote {
    border-left: 4px solid #006837;
    margin: 1em 0;
    padding: 10px 18px;
    background: #f9fafb;
    color: #555;
    font-style: italic;
}

.univ-rich-text table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.univ-rich-text th, .univ-rich-text td {
    border: 1px solid #ddd;
    padding: 9px 12px;
    font-size: 14px;
}

.univ-rich-text th {
    background: #006837;
    color: #fff;
    font-weight: 700;
}

.univ-rich-text tr:nth-child(even) td {
    background: #f9f9f9;
}

.univ-contacts-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin: 16px 0;
}

@media (max-width: 900px) {
    .univ-contacts-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .univ-contacts-grid {
        grid-template-columns:1fr;
    }
}

.univ-tabs {
    margin: 0;
}

.univ-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #ddd;
    margin-bottom: 0;
    gap: 0;
}

.univ-tabs__btn {
    padding: 11px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #777;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.univ-tabs__btn:hover, .univ-tabs__btn.active {
    color: #006837;
    border-bottom-color: #006837;
}

.univ-tabs__pane {
    display: none;
    padding: 24px 0 0;
}

.univ-tabs__pane.active {
    display: block;
}

.univ-docs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.univ-docs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.univ-docs li:last-child {
    border-bottom: none;
}

.univ-docs a {
    color: #333;
    text-decoration: none;
    flex: 1;
}

.univ-docs a:hover {
    color: #006837;
    text-decoration: underline;
}

.univ-docs span {
    width: 42px;
    height: 42px;

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

    font-size: 24px;
    flex-shrink: 0;

    border-radius: 8px;
    background: #eaf4ef;
    border: 1px solid #c9ddd1;
}

.univ-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.univ-table th {
    background: #006837;
    color: #fff;
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    white-space: wrap;
}

.univ-table td {
    border: 1px solid #e0e0e0;
    padding: 9px 14px;
}

.univ-table tr:nth-child(even) td {
    background: #f9f9f9;
}

.univ-admin {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
}

@media (max-width: 700px) {
    .univ-admin {
        grid-template-columns:1fr;
    }
}

.univ-admin__header {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #006837;
    border-bottom: 2px solid #006837;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.univ-admin__role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: .09em;
    margin-bottom: 3px;
}

.univ-admin__name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.univ-admin__phone {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.univ-admin__desc {
    font-size: 12px;
    font-style: italic;
    color: #777676;
}

.univ-admin__list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

.univ-admin__list li {
    margin-bottom: 10px;

    border-top: 1px solid #d3e5db;
    border-bottom: 1px solid #d3e5db;
    padding: 10px 18px;
    color: #333;
    font-size: 15px;

    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 0;
}

.univ-admin__box {
    padding: 10px 18px;
    border-top: 1px solid #d3e5db;
    border-bottom: 1px solid #d3e5db;
    color: #333;
    font-size: 15px;

    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 0;
}

.univ-admin__list li .desc {
    font-size: 12px;
    font-style: italic;
    color: #777676;
}

.univ-admin__list li .tel,
.univ-admin__phone {
    margin-top: 5px;

    font-size: 12px;
    color: #0e5a38;
    text-decoration: none;
}

.univ-gallery {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 8px;
}

@media (max-width: 900px) {
    .univ-gallery {
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .univ-gallery {
        grid-template-columns:repeat(2, 1fr);
    }
}

.univ-gallery .syabry-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.univ-gallery .syabry-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.univ-gallery .syabry-gallery-item:hover img {
    transform: scale(1.07);
}

.univ-body {
    min-height: 300px;
}

/* -- ЕДИНАЯ СЕТКА ИНФОРМАЦИИ -- */
.info-main-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;

    text-decoration: none;
    cursor: pointer;
}

.info-block:hover {
    background: #eaf4ef;
}

.info-block__icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #eaf4ef;
    border: 1px solid #c9ddd1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.info-block__icon i {
    font-size: 20px;
    color: #0e5a38;
}

.info-block__title {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #006837;
    text-decoration: none;
    line-height: 1.25;
    margin-bottom: 4px;
    transition: color .2s;
}

.info-block__title--nolink {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #006837;
    line-height: 1.25;
    margin-bottom: 4px;
}

.info-block__desc {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.info-alert-cell {
    position: relative;
    padding: 20px 30px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-decor-img {
    position: absolute;
    left: -200px;
    bottom: -10px;
    width: 260px;
    max-width: 260px;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .info-decor-img {
        display: none;
    }
}

.maininfoblock6 {
    box-shadow: 6px 6px 8px rgba(0, 0, 0, .5);
    background: linear-gradient(to right, #006837, #003415);
    padding: 20px 20px 20px 60px;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.maininfoblock6::before {
    content: '!';
    position: absolute;
    top: -5px;
    left: 14px;
    font-size: 110px;
    color: #fff;
    line-height: 140px;
    font-family: Arial, sans-serif;
    opacity: .9;
}

a .maininfoblock6 {
    transition: box-shadow .3s;
}

a .maininfoblock6:hover {
    box-shadow: none;
}

.maininfoheader2 {
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 6px;
    line-height: 1.1;
}

.maininfotext2 {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
}

.maininfoblock6link {
    text-decoration: none;
    display: block;
}

@media (max-width: 768px) {
    .info-main-grid {
        grid-template-columns:1fr;
    }

    .info-block {
        padding: 14px 0 !important;
    }

    .info-alert-cell {
        padding: 14px 0;
    }

    .info-decor-img {
        display: none !important;
    }

    .maininfoheader2 {
        font-size: 22px;
    }
}

/* -- КАРТА -- */
.home-map-section {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

.home-map-embed {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
}

/* -- FOOTER ФИКСЫ -- */
#site-footer .footer-nav, #site-footer .footer-nav ul, #site-footer nav.footer-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#site-footer .footer-nav li, #site-footer .footer-nav ul li {
    display: inline-flex !important;
    align-items: center;
}

#site-footer .footer-nav a, #site-footer .footer-nav ul li a {
    display: block;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 13px;
    padding: 5px 12px;
    transition: color .2s;
    white-space: nowrap;
}

#site-footer .footer-nav a:hover, #site-footer .footer-nav ul li a:hover {
    color: #fff;
}

/* -- MOBILE OVERLAY -- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 998;
}

.mobile-nav-overlay.is-open {
    display: block;
}

.mobile-nav {
    z-index: 999;
}

/* -- ФАЙЛЫ В НОВОСТЯХ -- */
.post-files {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e8f5e9;
}

.post-files__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006837;
    letter-spacing: .05em;
    margin-bottom: 12px;
}

.post-files__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-files__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.post-files__item:last-child {
    border-bottom: none;
}

.post-files__icon {
    font-size: 20px;
    flex-shrink: 0;
}

.post-files__link {
    color: #333;
    text-decoration: none;
    flex: 1;
}

.post-files__link:hover {
    color: #006837;
    text-decoration: underline;
}

.post-files__size {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}


/* ================================================================
   ДОПОЛНЕНИЯ К theme.css
   ================================================================ */

/* -- ПРАВАЯ ЧАСТЬ ШАПКИ -- */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header-phone {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #006837;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .02em;
    transition: color .2s;
}
.header-phone:hover { color: #004d29; }

.header-tg {
    font-size: 28px;
    font-weight: 700;
    color: #006837;
}

.header-tg:hover {
    color: #004d29;
}

@media (max-width: 1050px) {
    .header-phone { display: none; }
}

/* -- ТЕЛЕФОН В МОБИЛЬНОМ МЕНЮ -- */
.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #006837;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-nav-phone:hover { color: #004d29; }

/* -- ПЛАВАЮЩАЯ КНОПКА ЗВОНКА (мобильные) -- */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: #006837;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,104,55,.45);
    z-index: 990;
    transition: background .2s, transform .2s;
    line-height: 1;
}
.mobile-call-btn:hover { background: #004d29; transform: scale(1.1); }

@media (max-width: 768px) {
    .mobile-call-btn { display: flex; }
}

/* -- ГАЛЕРЕЯ НА ГЛАВНОЙ -- слайдер -- */
.home-gallery-section {
    position: relative;
    background: url('/wp-content/uploads/2018/09/005-min.png') center center / cover;
    padding: 170px 30px;
    overflow: hidden;
}

.home-gallery-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006837;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: .04em;
}

.home-gallery-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.home-gallery-track {
    display: flex;
    gap: 8px;
    transition: transform .4s ease;
}

.home-gallery-slide {
    flex: 0 0 calc(25% - 6px);
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.home-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}
.home-gallery-slide:hover img { transform: scale(1.06); }

.home-gallery-prev,
.home-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #006837;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s;
    flex-shrink: 0;
}
.home-gallery-prev { left: -20px; }
.home-gallery-next { right: -20px; }
.home-gallery-prev:hover,
.home-gallery-next:hover { background: #004d29; }

@media (max-width: 768px) {
    .home-gallery-slide { flex: 0 0 calc(50% - 4px); }
    .home-gallery-prev { left: 0; }
    .home-gallery-next { right: 0; }
}

/* -- КАК ЗАПОЛНИТЬ КОНТАКТЫ --
   Контакты на главной берутся автоматически со страницы «Контакты».
   1. Создайте страницу «Контакты» (slug: kontaktyi или kontakty)
   2. Выберите шаблон «Универсальная страница»
   3. Добавьте блок «Контакты»
   4. Заполните поля: Должность, ФИО, Телефон
   5. Сохраните — контакты появятся автоматически на главной
*/


/* ================================================================
   ГАЛЕРЕЯ — ИСПРАВЛЕНИЕ СТРЕЛОК
   ================================================================ */

.home-gallery-section {
    position: relative;
    background: url('/wp-content/uploads/2018/09/005-min.png') center center / cover;
    padding: 170px 30px;
    overflow: hidden;
}

.home-gallery-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006837;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: .04em;
}

.home-gallery-outer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    box-sizing: border-box;
}

.home-gallery-slider {
    overflow: hidden;
    width: 100%;
}

.home-gallery-track {
    display: flex;
    gap: 8px;
    transition: transform .4s ease;
    will-change: transform;
}

.home-gallery-slide {
    flex: 0 0 calc(25% - 6px);
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    background: #eee;
}

.home-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.home-gallery-slide:hover img { transform: scale(1.06); }

.home-gallery-prev,
.home-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #006837;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s, opacity .2s;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.home-gallery-prev { left: 8px; }
.home-gallery-next { right: 8px; }
.home-gallery-prev:hover,
.home-gallery-next:hover { background: #004d29; }
.home-gallery-prev:disabled,
.home-gallery-next:disabled { opacity: .35; cursor: default; }

@media (max-width: 768px) {
    .home-gallery-outer { padding: 0 50px; }
    .home-gallery-slide { flex: 0 0 calc(50% - 4px); }
    .home-gallery-prev { left: 4px; }
    .home-gallery-next { right: 4px; }

    .home-gallery-section {
        padding: 170px 0;
    }
}
@media (max-width: 480px) {
    .home-gallery-slide { flex: 0 0 calc(100% - 0px); }
}

/* -- HERO: СТРОКА ВАЖНОЙ ИНФОРМАЦИИ -- */
.hero-info-line {
    background: linear-gradient(90deg, #0d3f2b 0%, #0a2e20 50%, #0d3f2b 100%);
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.hero-info-line__inner {
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-info-line__item {
    min-height: 56px;
    border-right: 1px solid rgba(255,255,255,.12);
    padding: 0 14px;

    display: flex;
    align-items: center;

    text-decoration: none;

    cursor: pointer;
}

.hero-info-line__item:last-child {
    border: none;
}

.hero-info-line__item .icon {
    width: 45px;
    height: 45px;

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

    border-radius: 8px;
    background: rgba(255,255,255,.08);
}

.hero-info-line__item i {
    color: #fff;
    font-size: 16px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.hero-info-line__item .text {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    text-decoration: none;
    padding: 5px;
    gap: 10px;
    border-radius: 8px;
}

.hero-info-line__box {
    border-radius: 8px;
    padding: 5px 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-info-line__item:hover .hero-info-line__box {
    background: rgba(255,255,255,.08);
}

.hero-info-line__item span {
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;

    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

.hero-info-line__item .desc {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}


/* -- HERO INFO LINE RESPONSIVE PATCH -- */
@media (max-width: 1200px) {
    .hero-info-line__inner {
        gap: 0;
    }

    .hero-info-line__item .icon {
        width: 35px;
        height: 35px;
    }

    .hero-info-line__item i {
        color: #fff;
        font-size: 14px;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
    }

    .hero-info-line__item span {
        font-size: 16px;
    }

    .hero-info-line__item .desc {
        font-size: 11px;
    }

    .hero-info-line__item {
        padding: 0 8px;
    }
}

@media (max-width: 900px) {
    .hero-info-line__inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0;
    }

    .hero-info-line__item {
        width: 50%;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .hero-info-line__box {
        width: 50%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-info-line__inner {
        padding: 10px 16px;
    }

    .hero-info-line__item {
        width: 100%;
        min-height: 52px;
        padding: 10px 8px;
    }

    .hero-info-line__box {
        width: 100%;
        min-height: 52px;
    }

    .hero-info-line__item .icon {
        width: 40px;
        height: 40px;
    }

    .hero-info-line__item span {
        font-size: 17px;
        line-height: 1.2;
    }
}

/* -- КАРТОЧКИ КОНТАКТОВ: УЛУЧШЕНИЕ -- */
.syabry-contacts-grid,
.univ-contacts-grid {
    gap: 18px;
}

.conatactblock {
    background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
    border: 1px solid #d3e5db;
    border-radius: 10px;
    padding: 20px 18px;
    box-shadow: 0 8px 18px rgba(0, 40, 20, .06);
    transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
}

.conatactblock:hover {
    border-color: #84bd9d;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 60, 30, .12);
    transform: translateY(-2px);
}

.contactdolg {
    margin: 0 0 10px;
    color: #13613f;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .06em;
}

.contactname {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: none;
}

.contacttel {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #39443e;
}

.contactphones {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contacttel--link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 0;
    background: #fff;
    border-radius: 999px;
    text-decoration: none;
    color: #105b39;
    font-weight: 700;
}

.contacttel--link i {
    font-size: 12px;
}

.contacttel--link:hover {
    color: #0a4a2d;
}

.contactperson + .contactperson {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed #c7dbcf;
}

.syabry-docs-accordion__item {
    border: 1px solid #d9e8df;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}

.syabry-docs-accordion__btn {
    width: 100%;
    border: 0;
    background: #f3faf6;
    color: #114e34;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.syabry-docs-accordion__btn i {
    transition: transform .2s;
}

.syabry-docs-accordion__item.is-open .syabry-docs-accordion__btn i {
    transform: rotate(180deg);
}

.syabry-docs-accordion__panel {
    display: none;
    padding: 16px;
}

.syabry-docs-accordion__panel.is-open {
    display: block;
}

.syabry-bus-meta {
    font-size: 14px;
    color: #466053;
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.syabry-bus-table-wrap {
    overflow-x: auto;
}

.syabry-bus-error {
    background: #fff2f2;
    border: 1px solid #f4caca;
    color: #9e2a2a;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}


#newslink {
    padding: 20px 0;
    border-top: 2px solid #eaf4ef;
    border-bottom: 2px solid #eaf4ef;
    background: #fcffff;
}

.contactphones {
    display: flex;
    flex-direction: column;
    gap: 7px;
}



/* -- COOKIE MODAL -- */
.syabry-cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.syabry-cookie-modal.is-open {
    display: flex;
}

.syabry-cookie-modal__box {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0,0,0,.22);
    padding: 22px 20px;
}

.syabry-cookie-modal__box h3 {
    margin: 0 0 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 26px;
    line-height: 1.2;
}

.syabry-cookie-modal__box p {
    margin: 0 0 16px;
    color: #4f4f4f;
    font-size: 15px;
    line-height: 1.45;
}

.syabry-cookie-modal__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* -- SINGLE NEWS -- */
.syabry-single-title {
    font-size: 30px !important;
    text-transform: none !important;
    line-height: 1.2;
}

.syabry-single-wrap {
    max-width: 1620px;
}

.syabry-single-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.syabry-single-aside {
    position: sticky;
    top: 82px;
}

.syabry-single-meta {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: #60726a;
    font-size: 14px;
}

.syabry-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.syabry-single-meta__important {
    color: #a12929;
    font-weight: 700;
}

.syabry-single-thumb {
    margin: 0 0 16px;
    border-radius: 8px;
    overflow: hidden;
}

.syabry-single-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.syabry-single-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #edf2ee;
}

.syabry-single-nav .syabry-btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 780px) {
    .syabry-single-title {
        font-size: 24px !important;
    }

    .syabry-single-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .syabry-single-aside {
        position: static;
    }

    .syabry-single-thumb,
    .syabry-single-thumb img {
        max-height: 220px;
    }
}

/* 6) CSS */
.univ-layout.has-side-info {
    display: grid;
    grid-template-columns: 320px minmax(0,1fr);
    gap: 24px;
    align-items: start;
}

.univ-layout.show_side_info_block_side_right {
    grid-template-columns: minmax(0,1fr) 320px;
}

.univ-layout.show_side_info_block_side_right .univ-side-info { order: 2; }
.univ-layout.show_side_info_block_side_right .univ-layout__main { order: 1; }

.univ-side-info {
    position: sticky;
    top: 82px;

    background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
    border: 1px solid #d3e5db;
    border-radius: 10px;
    padding: 0;
}

.univ-side-info__title {
    padding: 10px;
    margin: 0;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #114e34;

    border-bottom: 1px solid #d3e5db;
}

.hero-info-line--side .hero-info-line__inner {
    flex-direction: column;
    gap: 0;
}

.hero-info-line--side .hero-info-line__item {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0,.12);
    justify-content: flex-start;
}

.hero-info-line--side .hero-info-line__item:last-child {
    border-bottom: 0;
}

@media (max-width: 980px) {
    .univ-layout.has-side-info {
        grid-template-columns: 1fr;
    }

    .univ-side-info {
        position: static;
        order: 2;
    }

    .univ-layout__main {
        order: 1;
    }
}


.univ-side-info-line__item {
    min-height: 56px;
    cursor: pointer;

    border-bottom: 1px solid rgba(0, 0, 0,.12);
}

.univ-side-info-line__item:last-child {
    border: none;
}

.univ-side-info-line__item .icon {
    width: 45px;
    height: 45px;

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

    border-radius: 8px;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(0, 0, 0,.12);
}

.univ-side-info-line__item i {
    color: #114e34;
    font-size: 16px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.univ-side-info-line__item .text {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    text-decoration: none;
    padding: 5px;
    gap: 10px;
    border-radius: 8px;
}

.univ-side-info-line__box {
    border-radius: 8px;
    padding: 5px 10px;

    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

.univ-side-info-line__item:hover .univ-side-info-line__box {
    background: rgba(255,255,255,1);
}

.univ-side-info-line__item span {
    color: #114e34;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.univ-side-info-line__item .desc {
    color: #114e34;
    opacity: .6;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}



/* -- Обёртка изображения -- */
.big_image_wrap {
    position: relative;
    display: inline-block;
    cursor: crosshair;
    line-height: 0;
}

/* -- Лупа (кружок на фото) -- */
.zoom-lens {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    display: none;
    z-index: 10;
}

/* -- Панель предпросмотра рядом -- */
.zoom-result {
    position: absolute;
    top: 0;
    left: calc(100% + 12px);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background-repeat: no-repeat;
    display: none;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* -- Модальное окно -- */
.modal_img {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
}

.modal_img.open {
    display: flex;
}

.modal_inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#modalImgEl {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    cursor: grab;
    transform-origin: center center;
    transition: transform 0.05s linear;
    user-select: none;
    -webkit-user-drag: none;
}

#modalImgEl.dragging {
    cursor: grabbing;
    transition: none;
}

/* -- Кнопка скачать -- */
.modal_download {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: rgba(17, 78, 52, 0.15);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(17, 78, 52, 0.35);
    backdrop-filter: blur(6px);
    transition: background 0.2s;
    z-index: 2;
}

.modal_download:hover {
    background: rgba(17, 78, 52, 0.28);
}

/* -- Кнопка закрыть -- */
.modal_close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(17, 78, 52, 0.35);
    background: rgba(17, 78, 52, 0.15);
    color: #114e34;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
    z-index: 2;
}

.modal_close:hover {
    background: rgba(17, 78, 52, 0.28);
}

@media (max-width: 1200px) {

    .zoom-lens,
    .zoom-result {
        display: none !important;
    }

    .big_image_wrap {
        cursor: pointer;
    }

    .modal_img {
        align-items: center;
        background: rgba(0, 0, 0, 0.85);
    }

    .modal_inner {
        width: 95vw;
        max-width: 95vw;
        max-height: 90vh;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    #modalImgEl {
        width: 95vw;
        max-width: 95vw;
        max-height: 80vh;
        object-fit: contain;
        touch-action: none;
    }

    .modal_download {
        bottom: -54px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 28px;
        font-size: 15px;
        white-space: nowrap;
    }

    .modal_close {
        top: -44px;
        right: 0;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}


/* ── СПИСОК ДОЛЖНИКОВ (главная) ──────────────────────── */
.debtors-section {
    padding: 50px 30px;
    border-top: 2px solid #eaf4ef;
    border-bottom: 2px solid #eaf4ef;
    background: #fcffff;
}

.debtors-wrap {
    max-width: 1340px;
    margin: 0 auto;
}

.debtors-note {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin: 6px 0 20px;
}

.debtors-table-wrap {
    overflow-x: auto;
    border: 1px solid #d3e5db;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 40, 20, .06);
}

.debtors-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
}

.debtors-table th {
    background: #006837;
    border-right: 1px solid #fff;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: left;
    padding: 12px 16px;
    white-space: nowrap;
}

.debtors-table td {
    border-bottom: 1px solid #ebf1ee;
    border-right: 1px solid #006837;
    padding: 11px 16px;
    color: #333;
    vertical-align: top;
}

.debtors-table tbody tr:last-child td {
    border-bottom: none;
}

.debtors-table th:last-child,
.debtors-table td:last-child {
    border-right: none;
}

.debtors-table tbody tr:nth-child(even) td {
    background: #f7fbf9;
}

.debtors-table tbody tr:hover td {
    background: #eaf4ef;
}

.debtors-table__plot {
    width: 10%;
    font-weight: 700;
    color: #0e5a38;
    white-space: nowrap;
}

.debtors-table__name {
    width: 35%;
}

.debtors-table__amount {
    width: 25%;
    font-weight: 700;
    color: #a12929;
    white-space: nowrap;
}

.debtors-table__note {
    width: 30%;
    color: #777;
    font-size: 14px;
}

@media (max-width: 768px) {
    .debtors-section {
        padding: 40px 0;
    }

    .debtors-wrap {
        padding: 0 16px;
    }

    .debtors-table th,
    .debtors-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .debtors-table__plot {
        width: auto;
    }
}