/**
 * Оформление контента редактора блоков (Гутенберг).
 * Фронт: .themevss-block-content
 * Редактор: .editor-styles-wrapper .block-editor-block-list__layout.is-root-container
 */

:root {
  --themevss-container-max: 1100px;
  --gv-font: "Golos UI", GolosUI, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gv-text: #414956;
  --gv-muted: #7e8a9d;
  --gv-accent: #10244a;
  --gv-accent-soft: #8c0e10;
  --gv-border: #dee2e6;
  --gv-bg-soft: #f8f9fa;
  --gv-radius: 6px;
  --gv-content-max: 68ch;
  --gv-body-size: clamp(1rem, 0.15vw + 0.95rem, 1.0625rem);
  --gv-body-leading: 1.75;
  --gv-heading-leading: 1.28;
  --gv-space-block: 1.35em;
  --gv-link: #0d3d7a;
  --gv-link-hover: var(--gv-accent-soft);
}

.themevss-block-content,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container {
  font-family: var(--gv-font);
  color: var(--gv-text);
  font-size: var(--gv-body-size);
  line-height: var(--gv-body-leading);
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  hyphenate-limit-chars: 6 4 4;
  /* Не absolute/fixed: обычный поток. Relative + isolation — якорь для absolute
     внутри блоков (cover, video-embed, figure), чтобы не ломать страницу и футер. */
  position: relative;
  z-index: 0;
  isolation: isolate;
}

/* Страницы и записи: на всю ширину .container */
main.page-content .page-content__body.themevss-block-content {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

main.page-content .page-content__body.themevss-block-content > :first-child {
  margin-top: 0;
}

/* Родитель контента страницы (page.php, single.php): ограничиваем горизонтальный вылет alignfull */
main.page-content {
  position: relative;
  z-index: 0;
}

/* Вертикальный ритм между блоками верхнего уровня */
.themevss-block-content > * , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > * {
  margin-top: 0;
  margin-bottom: var(--gv-space-block);
}

.themevss-block-content > *:last-child , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > *:last-child {
  margin-bottom: 0;
}

.themevss-block-content > .alignwide, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .alignwide,
.themevss-block-content > .alignfull , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .alignfull {
  margin-bottom: 2em;
}

/* Абзацы */
.themevss-block-content .wp-block-paragraph, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-paragraph,
.themevss-block-content p:not(.wp-block-heading):not([class*="wp-block-"]) , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container p:not(.wp-block-heading):not([class*="wp-block-"]) {
  margin-top: 0;
  margin-bottom: 1em;
  line-height: var(--gv-body-leading);
  text-wrap: pretty;
}

/* Лид-абзац (класс в редакторе или первый абзац после вступительного заголовка) */
.themevss-block-content > p.is-style-lead,
.themevss-block-content > .wp-block-paragraph.is-style-lead,
.themevss-block-content p.has-large-font-size:first-of-type {
  font-size: clamp(1.0625rem, 0.25vw + 1rem, 1.2rem);
  line-height: 1.65;
  color: var(--gv-accent);
}

.themevss-block-content .wp-block-paragraph.has-drop-cap:not(:focus)::first-letter , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-paragraph.has-drop-cap:not(:focus)::first-letter {
  font-size: 3.5em;
  line-height: 0.85;
  margin: 0.1em 0.1em 0 0;
  font-weight: 600;
  float: left;
}

/* Заголовки (блоки и классический HTML из старых записей) */
.themevss-block-content :where(h1, h2, h3, h4, h5, h6), .editor-styles-wrapper .block-editor-block-list__layout.is-root-container :where(h1, h2, h3, h4, h5, h6),
.themevss-block-content .wp-block-heading , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-heading {
  font-family: var(--gv-font);
  font-weight: 700;
  line-height: var(--gv-heading-leading);
  color: var(--gv-accent);
  margin-top: 1.75em;
  margin-bottom: 0.65em;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

/* Заголовок сразу после заголовка — меньше отступ сверху */
.themevss-block-content :where(h1, h2, h3, h4, h5, h6) + :where(h2, h3, h4, h5, h6),
.themevss-block-content .wp-block-heading + .wp-block-heading {
  margin-top: 0.85em;
}

.themevss-block-content > :where(h1, h2, h3, h4, h5, h6):first-child, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :where(h1, h2, h3, h4, h5, h6):first-child,
.themevss-block-content > .wp-block-heading:first-child , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block-heading:first-child {
  margin-top: 0;
}

.themevss-block-content h1, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h1,
.themevss-block-content .has-h-1-font-size , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .has-h-1-font-size {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.themevss-block-content h2, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h2,
.themevss-block-content .has-h-2-font-size , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .has-h-2-font-size {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.themevss-block-content h3, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h3,
.themevss-block-content .has-h-3-font-size , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .has-h-3-font-size {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.themevss-block-content h4 , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h4 {
  font-size: 1.2rem;
}

.themevss-block-content h5 , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h5 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.themevss-block-content h6 , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container h6 {
  font-size: 1rem;
  color: var(--gv-muted);
  font-weight: 600;
}

/* Списки */
.themevss-block-content :where(ul, ol) , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container :where(ul, ol) {
  margin: 0 0 1.15em;
  padding-left: 1.5em;
}

.themevss-block-content ul , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container ul {
  list-style-type: disc;
}

.themevss-block-content ol , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container ol {
  list-style-type: decimal;
}

.themevss-block-content li , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}

.themevss-block-content li > ul, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container li > ul,
.themevss-block-content li > ol , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container li > ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.themevss-block-content .wp-block-list :where(ul, ol) , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-list :where(ul, ol) {
  margin-top: 0.5em;
}

/* Ссылки */
.themevss-block-content a,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container a {
  color: var(--gv-link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.themevss-block-content a:hover,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container a:hover {
  color: var(--gv-link-hover);
}

/* Изображения */
.themevss-block-content .wp-block-image , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image {
  margin: 1.5em 0;
}

.themevss-block-content .wp-block-image img , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image img {
  height: auto;
  max-width: 100%;
  border-radius: var(--gv-radius);
  vertical-align: middle;
}

.themevss-block-content .wp-block-image.aligncenter, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image.aligncenter,
.themevss-block-content .wp-block-image .aligncenter , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image .aligncenter {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.themevss-block-content .wp-block-image.alignleft, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image.alignleft,
.themevss-block-content .wp-block-image .alignleft , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image .alignleft {
  float: left;
  margin: 0.35em 1.5em 1em 0;
}

.themevss-block-content .wp-block-image.alignright, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image.alignright,
.themevss-block-content .wp-block-image .alignright , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image .alignright {
  float: right;
  margin: 0.35em 0 1em 1.5em;
}

.themevss-block-content .wp-block-image figcaption, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image figcaption,
.themevss-block-content figcaption , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gv-muted);
  margin-top: 0.65em;
  text-align: center;
}

.themevss-block-content .wp-block-image.is-style-rounded img , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image.is-style-rounded img {
  border-radius: 9999px;
}

/* Галерея */
.themevss-block-content .wp-block-gallery , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-gallery {
  margin: 1.75em 0;
  gap: 0.75em;
}

.themevss-block-content .wp-block-gallery.has-nested-images figure.wp-block-image , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-gallery.has-nested-images figure.wp-block-image {
  margin: 0;
}

.themevss-block-content .wp-block-gallery.has-nested-images figure.wp-block-image img , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-gallery.has-nested-images figure.wp-block-image img {
  border-radius: var(--gv-radius);
}

.themevss-block-content .blocks-gallery-caption , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .blocks-gallery-caption {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gv-muted);
  margin-top: 0.75em;
}

/* Таблицы */
.themevss-block-content .wp-block-table , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-table {
  margin: 1.75em 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.themevss-block-content .wp-block-table table , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  overflow: hidden;
}

.themevss-block-content .wp-block-table thead , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-table thead {
  background-color: var(--gv-bg-soft);
}

.themevss-block-content .wp-block-table th, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-table th,
.themevss-block-content .wp-block-table td , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-table td {
  padding: 0.65em 1em;
  border: 1px solid var(--gv-border);
  text-align: left;
  vertical-align: top;
}

.themevss-block-content .wp-block-table th , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-table th {
  font-weight: 600;
  color: var(--gv-accent);
}

.themevss-block-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(16, 36, 74, 0.04);
}

/* Цитаты */
.themevss-block-content .wp-block-quote , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-quote {
  margin: 1.75em 0;
  padding: 1em 1.25em 1em 1.25em;
  border-left: 4px solid var(--gv-accent-soft);
  background: var(--gv-bg-soft);
  border-radius: 0 var(--gv-radius) var(--gv-radius) 0;
}

.themevss-block-content .wp-block-quote cite , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-quote cite {
  display: block;
  margin-top: 0.75em;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--gv-muted);
}

.themevss-block-content .wp-block-pullquote , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-pullquote {
  margin: 2em 0;
  padding: 1.5em;
  border-top: 4px solid var(--gv-accent);
  border-bottom: 4px solid var(--gv-accent);
  text-align: center;
}

.themevss-block-content .wp-block-pullquote blockquote , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-pullquote blockquote {
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
}

.themevss-block-content .wp-block-pullquote p , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-pullquote p {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.45;
  font-weight: 600;
}

/* Разделитель */
.themevss-block-content .wp-block-separator , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-separator {
  margin: 2em auto;
  border: none;
  border-top: 1px solid var(--gv-border);
  max-width: 8rem;
}

.themevss-block-content .wp-block-separator.is-style-wide , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-separator.is-style-wide {
  max-width: 100%;
}

.themevss-block-content .wp-block-separator.is-style-dots::before , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-separator.is-style-dots::before {
  color: var(--gv-muted);
}

/* Колонки и группы */
.themevss-block-content .wp-block-columns , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-columns {
  margin-bottom: 1.5em;
  gap: 1.5rem;
}

.themevss-block-content .wp-block-column > *:first-child , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-column > *:first-child {
  margin-top: 0;
}

.themevss-block-content .wp-block-group , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-group {
  padding: 1.25em 0;
}

.themevss-block-content .wp-block-group.has-background , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-group.has-background {
  padding: 1.5em;
  border-radius: var(--gv-radius);
}

/* Медиа и текст */
.themevss-block-content .wp-block-media-text , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-media-text {
  margin: 1.75em 0;
  gap: 1.5rem;
}

.themevss-block-content .wp-block-media-text__content > *:first-child , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-media-text__content > *:first-child {
  margin-top: 0;
}

/* Встраивания */
.themevss-block-content .wp-block-embed , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-embed {
  margin: 1.75em 0;
}

.themevss-block-content .wp-block-embed__wrapper , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-embed__wrapper {
  position: relative;
}

.themevss-block-content .wp-block-embed iframe , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-embed iframe {
  max-width: 100%;
}

.themevss-block-content .wp-block-embed.is-type-video .wp-block-embed__wrapper , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.themevss-block-content .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Код */
.themevss-block-content .wp-block-code, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-code,
.themevss-block-content pre.wp-block-code , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container pre.wp-block-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 1em 1.15em;
  background: #1e293b;
  color: #e2e8f0;
  border-radius: var(--gv-radius);
  overflow-x: auto;
}

.themevss-block-content .wp-block-code code , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-code code {
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.themevss-block-content pre:not(.wp-block-code) , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container pre:not(.wp-block-code) {
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  padding: 1em;
  background: var(--gv-bg-soft);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  overflow-x: auto;
}

.themevss-block-content :not(pre) > code , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container :not(pre) > code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  padding: 0.15em 0.45em;
  background: var(--gv-bg-soft);
  border-radius: 4px;
  color: var(--gv-accent-soft);
}

/* Кнопки блока */
.themevss-block-content .wp-block-button__link , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-button__link {
  display: inline-block;
  padding: 0.65em 1.35em;
  border-radius: var(--gv-radius);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.themevss-block-content .wp-block-button__link:hover , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-button__link:hover {
  opacity: 0.92;
}

.themevss-block-content .wp-block-file , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-file {
  margin: 1.25em 0;
}

.themevss-block-content .wp-block-file__button , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-file__button {
  padding: 0.5em 1em;
  border-radius: var(--gv-radius);
}

/* Ширина «широкий» / «во всю ширину» */
.themevss-block-content .alignwide , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .alignwide {
  max-width: min(var(--themevss-container-max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.themevss-block-content .alignfull , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: var(--bs-gutter-x, 15px);
  padding-right: var(--bs-gutter-x, 15px);
  box-sizing: border-box;
}

.themevss-block-content .alignleft , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.themevss-block-content .alignright , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.themevss-block-content .aligncenter , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Очистка float после контента с выравниванием */
.themevss-block-content::after,
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container::after {
  content: "";
  display: table;
  clear: both;
}

/* Обложка (cover) */
.themevss-block-content .wp-block-cover , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-cover {
  margin: 1.75em 0;
  border-radius: var(--gv-radius);
  min-height: 280px;
}

.themevss-block-content .wp-block-cover .wp-block-cover__inner-container , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-cover .wp-block-cover__inner-container {
  max-width: var(--gv-content-max);
  margin-left: auto;
  margin-right: auto;
}

/* Цвета палитры блоков */
.themevss-block-content .has-text-color , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .has-text-color {
  border-color: currentColor;
}

.themevss-block-content .has-background , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .has-background {
  padding: 1.25em 1.5em;
  border-radius: var(--gv-radius);
}

/* Адаптив: колонки и галерея */
@media (max-width: 781px) {
  .themevss-block-content .wp-block-columns , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-columns {
    flex-wrap: wrap;
  }

  .themevss-block-content .wp-block-column , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-column {
    flex-basis: 100% !important;
  }

  .themevss-block-content .wp-block-media-text.is-stacked-on-mobile , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 1fr !important;
  }

  .themevss-block-content .wp-block-image.alignleft, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image.alignleft,
  .themevss-block-content .wp-block-image.alignright, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image.alignright,
  .themevss-block-content .wp-block-image .alignleft, .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image .alignleft,
  .themevss-block-content .wp-block-image .alignright , .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .wp-block-image .alignright {
    float: none;
    margin: 1em auto;
    display: table;
  }
}
