:root {
    --gost-ink: #0d3e53;
    --gost-text: #121212;
    --gost-muted: #7f7f7f;
    --gost-border: #aaaaaa;
    --gost-border-soft: #d8dde2;
    --gost-surface: rgba(255, 255, 255, 0.9);
    --gost-surface-soft: rgba(248, 248, 248, 0.7);
    --gost-accent: #f5a241;
    --gost-shadow: 0 20px 40px rgba(13, 62, 83, 0.08);
}

.gost-breadcrumbs .breadcrumbs_wrap {
    max-width: 973px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 4px;
}
.gost-archive__pagination{
	text-align: center;
	margin-top: 20px;
}
.page-numbers{
	padding: 10px;
	background-color: #e7e7e7;
    border-radius: 12px;
}

.page-numbers.current{
    background-color: var(--gost-accent);
}
.gost-breadcrumbs .breadcrumbs_wrap a,
.gost-breadcrumbs .breadcrumbs_wrap span {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.gost-archive,
.gost-single {
    padding: 0 0 64px;
}

.gost-archive__inner,
.gost-single__inner {
    max-width: 973px;
    margin: 0 auto;
}

.gost-archive__header,
.gost-single__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 40px 0;;
    text-align: center;
}

.gost-archive__title,
.gost-single__title {
    margin: 0;
    color: var(--gost-ink);
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.gost-archive__meta,
.gost-single__meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.4;
}

.gost-archive__date,
.gost-single__date {
    color: var(--gost-accent);
}

.gost-archive__search {
    margin: 0 0 28px;
}

.gost-archive__search-label {
    display: block;
    margin: 0 0 12px;
    color: var(--gost-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

.gost-archive__search-field {
    position: relative;
}

.gost-archive__search-input {
    width: 100%;
    height: 71px;
    padding: 0 72px 0 30px;
    border: 1px solid var(--gost-border);
    border-radius: 18px;
    background: var(--gost-surface);
    color: var(--gost-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gost-archive__search-input::placeholder {
    color: var(--gost-border);
}

.gost-archive__search-input:focus {
    outline: none;
    border-color: var(--gost-ink);
    box-shadow: 0 0 0 4px rgba(13, 62, 83, 0.08);
}

.gost-archive__search-btn {
    position: absolute;
    top: 50%;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gost-border);
    transform: translateY(-50%);
    cursor: pointer;
}

.gost-archive__search-btn:hover {
    color: var(--gost-ink);
}

.gost-archive__search-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--gost-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

.gost-archive__search-reset {
    color: var(--gost-ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gost-archive__list,
.gost-archive__empty {
    border: 1px solid var(--gost-border);
    border-radius: 18px;
    background: var(--gost-surface);
    overflow: hidden;
}

.gost-archive__list {
    display: grid;
    gap: 14px;
    padding: 14px;
}

.gost-archive__item {
    cursor: pointer;
    min-width: 0;
}

.gost-archive__item-link {
    display: block;
    padding: 24px 28px 22px;
    border: 1px solid rgba(170, 170, 170, 0.75);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gost-archive__item-link:hover {
    border-color: rgba(13, 62, 83, 0.3);
    background: rgba(13, 62, 83, 0.04);
    box-shadow: 0 10px 22px rgba(13, 62, 83, 0.07);
    transform: translateY(-1px);
}

.gost-archive__item-link:focus-visible {
    outline: none;
    border-color: var(--gost-ink);
    box-shadow: 0 0 0 4px rgba(13, 62, 83, 0.08);
}

.gost-archive__item-body {
    min-width: 0;
}

.gost-archive__item-title {
    margin: 0 0 10px;
    color: var(--gost-ink);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
	cursor: pointer;
}

.gost-archive__item-excerpt {
    margin: 0;
    color: #4c4c4c;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gost-archive__empty {
    padding: 24px;
}

.gost-archive__empty-text {
    margin: 0;
    color: var(--gost-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    text-align: center;
}

.gost-single__download {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
    column-gap: 30px;
    row-gap: 10px;
    margin: 0 0 70px;
    padding: 18px 22px;
    border: 1px solid var(--gost-border);
    border-radius: 20px;
    background: var(--gost-surface);
}

.gost-single__download-copy {
    min-width: 0;
}

.gost-single__download-title {
    margin: 0 0 5px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
}

.gost-single__download-hint {
    margin: 0;
    color: var(--gost-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.4;
}

.gost-single__download-files {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gost-single__download-link {
    display: inline-flex;
    text-decoration: none;
    line-height: 1;
}

.gost-single__download-icon-wrap {
    display: block;
    line-height: 0;
}

.gost-single__download-icon {
    display: block;
    width: 68px;
    height: 68px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gost-single__download-icon-wrap svg,
.gost-single__download-link .gost-single__download-icon {
    display: block;
    width: 60px;
    height: 60px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gost-single__download-link:hover .gost-single__download-icon-wrap svg,
.gost-single__download-link:hover .gost-single__download-icon {
    transform: translateY(-1px);
    opacity: 0.9;
}

.gost-file {
    position: relative;
    display: inline-flex;
    width: 40px;
    height: 44px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gost-single__download-link:hover .gost-file {
    transform: translateY(-1px);
    opacity: 0.9;
}

.gost-file__sheet {
    position: absolute;
    inset: 0;
    border: 1px solid #d7d7d7;
    border-radius: 7px;
    background: linear-gradient(180deg, #f4f4f4 0%, #e6e6e6 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.gost-file__fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 13px;
    height: 13px;
    background: linear-gradient(135deg, #ffffff 0%, #dcdcdc 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    border-top-right-radius: 7px;
}

.gost-single__document {
    margin: 0 0 52px;
    padding: 30px 22px;
    border: 1px solid var(--gost-border);
    border-radius: 20px;
    background: var(--gost-surface);
    min-height: 520px;
    overflow: hidden;
}

.gost-file__label {
    position: absolute;
    left: 50%;
    bottom: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 17px;
    padding: 0 4px;
    border-radius: 3px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transform: translateX(-50%);
}

.gost-file--pdf .gost-file__label {
    background: #f06543;
}

.gost-file--docx .gost-file__label {
    background: #2991df;
}

.gost-single__document-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100%;
}

.gost-single__document-actions {
    position: absolute;
    top: 18px;
    right: 34px;
    z-index: 20;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    max-width: calc(100% - 68px);
    white-space: nowrap;
}

.gost-single__document-search {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    flex: 0 1 260px;
    gap: 4px;
    min-height: 34px;
    padding: 4px 5px 4px 10px;
    border: 1px solid rgba(35, 45, 55, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(20, 26, 34, 0.1);
    backdrop-filter: blur(12px);
}

.gost-single__document-search-input {
    width: 150px;
    flex: 0 0 150px;
    min-width: 0;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1f2933;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.gost-single__document-search-input::placeholder {
    color: rgba(31, 41, 51, 0.58);
}

.gost-single__document-search-count {
    min-width: 30px;
    color: rgba(31, 41, 51, 0.62);
    font: inherit;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.gost-single__document-search-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(13, 62, 83, 0.08);
    color: var(--gost-ink);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gost-single__document-search-nav:hover,
.gost-single__document-search-nav:focus-visible {
    background: rgba(13, 62, 83, 0.14);
    transform: translateY(-1px);
}

.gost-single__document-search-nav:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.45);
    outline-offset: 2px;
}

.gost-single__document-search-nav svg {
    width: 15px;
    height: 15px;
}

.gost-single__document-search-nav:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.gost-single__document-action {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(35, 45, 55, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2933;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(20, 26, 34, 0.12);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gost-single__document-action:hover,
.gost-single__document-action:focus-visible {
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 26, 34, 0.18);
    transform: translateY(-1px);
}

.gost-single__document-action:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.45);
    outline-offset: 3px;
}

.gost-single__document-action-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.gost-single__document-action-label {
    white-space: nowrap;
}

.gost-single__document-stage:fullscreen,
.gost-single__document-stage.gost-single__document-stage--fullscreen {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    padding: clamp(64px, 7vh, 86px) clamp(46px, 5vw, 72px) clamp(24px, 4vw, 42px);
    overflow: auto;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 34%),
        #f4f1ea;
}

.gost-single__document-stage.gost-single__document-stage--fullscreen {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.gost-single__document-stage:fullscreen .gost-single__document-content,
.gost-single__document-stage.gost-single__document-stage--fullscreen .gost-single__document-content,
.gost-single__document-stage:fullscreen .gost-single__document-sheet,
.gost-single__document-stage.gost-single__document-stage--fullscreen .gost-single__document-sheet {
    width: min(1180px, 100%);
    max-width: none;
    max-height: none;
    min-height: calc(100vh - clamp(64px, 7vh, 86px) - clamp(24px, 4vw, 42px));
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
}

.gost-single__document-stage:fullscreen .gost-single__document-actions,
.gost-single__document-stage.gost-single__document-stage--fullscreen .gost-single__document-actions {
    position: fixed;
    top: 18px;
    right: 42px;
}

body.gost-fullscreen-lock {
    overflow: hidden;
}

.gost-single__document-sheet {
    width: min(905px, 100%);
}

.gost-single__document-sheet--preview,
.gost-single__document-sheet--frame {
    padding: 0;
}

.gost-single__document-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.gost-single__document-iframe {
    display: block;
    width: 100%;
    height: 700px;
    border: 0;
    background: #fff;
}

.gost-single__document-sheet--blank {
    min-height: 700px;
    border-radius: 12px;
    background: #fff;
}

.gost-single__document-content {
    width: min(905px, 100%);
    max-height: 700px;
    margin: 0 auto;
    padding: 24px 26px;
    overflow: auto;
    border-radius: 12px;
    background: #fff;
    color: #242424;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.gost-single__document-search-hit {
    border-radius: 3px;
    background: rgba(245, 162, 65, 0.32);
    color: inherit;
    box-shadow: 0 0 0 1px rgba(245, 162, 65, 0.2);
}

.gost-single__document-search-hit--active {
    background: rgba(245, 162, 65, 0.78);
    box-shadow: 0 0 0 2px rgba(13, 62, 83, 0.24);
}

.gost-single__document-content > *:first-child {
    margin-top: 0 !important;
}

.gost-single__document-content > *:last-child {
    margin-bottom: 0 !important;
}

.gost-single__document-content h1,
.gost-single__document-content h2,
.gost-single__document-content h3,
.gost-single__document-content h4 {
    margin: 24px 0 14px;
    color: var(--gost-ink);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.35;
}

.gost-single__document-content h1 {
    font-size: 28px;
}

.gost-single__document-content h2 {
    font-size: 24px;
}

.gost-single__document-content h3 {
    font-size: 20px;
}

.gost-single__document-content h4 {
    font-size: 18px;
}

.gost-single__document-content p,
.gost-single__document-content ul,
.gost-single__document-content ol,
.gost-single__document-content blockquote,
.gost-single__document-content table {
    margin: 0 0 16px;
}

.gost-single__document-content ul,
.gost-single__document-content ol {
    padding-left: 22px;
}

.gost-single__document-content li + li {
    margin-top: 6px;
}

.gost-single__document-content a {
    color: var(--gost-ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gost-single__document-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 18px;
    border-radius: 12px;
}

.gost-single__document-content table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.gost-single__document-content th,
.gost-single__document-content td {
    padding: 12px 14px;
    border: 1px solid var(--gost-border-soft);
    text-align: left;
    vertical-align: top;
}

.gost-single__document-content th {
    background: rgba(13, 62, 83, 0.05);
    color: var(--gost-ink);
    font-weight: 600;
}

.gost-single__document-content blockquote {
    padding: 14px 18px;
    border-left: 3px solid var(--gost-accent);
    background: rgba(245, 162, 65, 0.08);
}

.gost-single__document-content .trv,
.gost-single__document-content .trv__main {
    display: block !important;
}

.gost-single__document-content .trv__toc,
.gost-single__document-content .trv__topbar {
    display: none !important;
}

.gost-single__document-content .trv__docScroll {
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
}

.gost-single__document-content .trv__sheet {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.gost-single__document-content .trv__sheet p,
.gost-single__document-content .trv__sheet h1,
.gost-single__document-content .trv__sheet h2,
.gost-single__document-content .trv__sheet h3,
.gost-single__document-content .trv__sheet h4,
.gost-single__document-content .trv__sheet li,
.gost-single__document-content .trv__sheet td,
.gost-single__document-content .trv__sheet th {
    font-family: 'Montserrat', sans-serif !important;
}

.gost-read-more {
    padding-top: 10px;
}

.gost-single__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gost-card {
    min-width: 0;
}

.gost-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
}

.gost-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    background: #f2f2f2;
    overflow: hidden;
}

.gost-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gost-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.gost-card__placeholder-code {
    color: var(--gost-ink);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.gost-card__content {
    flex: 1;
    padding: 12px 12px 10px;
}

.gost-card__code {
    margin: 0 0 8px;
    color: var(--gost-ink);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gost-card__title {
    margin: 0 0 8px;
    color: #1d1d1d;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.gost-card__excerpt {
    margin: 0;
    color: var(--gost-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: 1.4;
}

.gost-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 8px 12px;
    background: var(--gost-accent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 991px) {
    .gost-archive,
    .gost-single {
        padding-bottom: 52px;
    }

    .gost-archive__title,
    .gost-single__title {
        font-size: 26px;
    }

    .gost-archive__meta,
    .gost-single__meta,
    .gost-archive__search-label,
    .gost-single__download-hint {
        font-size: 16px;
    }

    .gost-archive__item-link {
        padding: 22px 22px 20px;
    }

    .gost-archive__item-title {
        font-size: 17px;
    }

    .gost-archive__item-excerpt {
        font-size: 15px;
    }

    .gost-single__download {
        grid-template-columns: 1fr;
    }

    .gost-single__document {
        min-height: 460px;
        padding: 22px 18px;
    }

    .gost-single__document-actions {
        max-width: calc(100% - 56px);
    }

    .gost-single__document-search {
        flex-basis: 220px;
    }

    .gost-single__document-search-input {
        width: 110px;
    }

    .gost-single__document-action-label {
        display: none;
    }

}

@media (max-width: 767px) {
    .gost-breadcrumbs .breadcrumbs_wrap {
        text-align: left;
    }

    .gost-archive__header,
    .gost-single__header {
        margin: 22px 0 28px;
    }

    .gost-archive__title,
    .gost-single__title {
        font-size: 20px;
    }

    .gost-archive__meta,
    .gost-single__meta,
    .gost-archive__search-label {
        font-size: 14px;
    }

    .gost-archive__search-input {
        height: 48px;
        padding: 0 52px 0 16px;
        border-radius: 12px;
        font-size: 14px;
    }

    .gost-archive__search-btn {
        right: 14px;
        width: 28px;
        height: 28px;
    }

    .gost-archive__search-status {
        flex-direction: column;
        gap: 4px;
        font-size: 13px;
    }

    .gost-archive__list,
    .gost-archive__empty {
        border-radius: 14px;
    }

    .gost-archive__list {
        gap: 12px;
        padding: 12px;
    }

    .gost-archive__item-link {
        padding: 18px 16px 16px;
        border-radius: 14px;
    }

    .gost-archive__item-title {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .gost-archive__item-excerpt {
        font-size: 14px;
        line-height: 1.55;
    }

    .gost-single__download {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
        padding: 16px;
        border-radius: 16px;
        text-align: center;
    }

    .gost-single__download-copy {
        width: 100%;
    }

    .gost-single__download-files {
        order: -1;
        justify-content: center;
        width: 100%;
        margin-bottom: 2px;
    }

    .gost-single__download-title {
        font-size: 14px;
    }

    .gost-single__download-hint {
        font-size: 14px;
    }

    .gost-single__download-icon-wrap svg,
    .gost-single__download-icon {
        width: 42px;
        height: 42px;
    }

    .gost-single__document {
        min-height: 420px;
        margin-bottom: 36px;
        padding: 16px 12px;
        border-radius: 16px;
    }

    .gost-single__document-iframe {
        height: 520px;
    }

    .gost-single__document-sheet--blank {
        min-height: 520px;
    }

    .gost-single__document-content {
        max-height: 520px;
        padding: 18px 16px;
        font-size: 14px;
    }

    .gost-single__document-actions {
        top: 12px;
        right: 28px;
        gap: 6px;
        max-width: calc(100% - 40px);
    }

    .gost-single__document-search {
        order: 0;
        flex: 1 1 150px;
        flex-shrink: 1;
        width: auto;
        min-width: 0;
    }

    .gost-single__document-search-input {
        flex: 1;
        width: auto;
        flex-basis: auto;
        font-size: 13px;
    }

    .gost-single__document-action {
        padding: 9px 11px;
    }

    .gost-single__document-action-label {
        display: none;
    }

    .gost-single__document-stage:fullscreen,
    .gost-single__document-stage.gost-single__document-stage--fullscreen {
        padding: 58px 18px 22px;
    }

    .gost-single__document-stage:fullscreen .gost-single__document-actions,
    .gost-single__document-stage.gost-single__document-stage--fullscreen .gost-single__document-actions {
        top: 12px;
        right: 28px;
    }

    .gost-single__document-stage:fullscreen .gost-single__document-content,
    .gost-single__document-stage.gost-single__document-stage--fullscreen .gost-single__document-content,
    .gost-single__document-stage:fullscreen .gost-single__document-sheet,
    .gost-single__document-stage.gost-single__document-stage--fullscreen .gost-single__document-sheet {
        min-height: calc(100vh - 80px);
    }

    .gost-single__document-content h1 {
        font-size: 22px;
    }

    .gost-single__document-content h2 {
        font-size: 20px;
    }

    .gost-single__document-content h3 {
        font-size: 18px;
    }

    .gost-single__document-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .gost-read-more {
        padding-top: 0;
    }
}
.gost-single__document-content div.aC { text-align: center; }
.gost-single__document-content div.aR { text-align: right; }
.gost-single__document-content div.aJ { text-align: justify; }
.gost-single__document-content div.aL { text-align: left; }

.gost-single__document-content div.bH { padding: 5pt 0pt 5pt 0pt; }
.gost-single__document-content div.bG { }
.gost-single__document-content div.bC { }
.gost-single__document-content div.bB { padding: 5pt 0pt 5pt 0pt; }
.gost-single__document-content div.bD { padding: 5pt 2pt 5pt 2pt; }

.gost-single__document-content div.iF { text-indent: 40pt; }
.gost-single__document-content div.rC { text-decoration: none; }
.gost-single__document-content div.lS { height: 2pt; }

.gost-single__document-content div.hC {
  border-left: solid 1pt;
  border-right: solid 1pt;
  border-top: solid 1pt;
  border-bottom: solid 1pt;
}

.gost-single__document-content div.tC { display: table-cell; }
.gost-single__document-content div.mI {
  text-align: right;
  padding-right: 0.9em;
}
