:root {

  --theme-font-family-base: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --theme-font-weight-regular: 400;
  --theme-font-weight-semibold: 600;
  --theme-font-weight-bold: 900;
  --theme-color-primary: #0d2538;
  --theme-color-primary-strong: #071827;
  --theme-color-primary-soft: #193546;
  --theme-color-accent: #007a85;
  --theme-color-accent-strong: #007a85;
  --theme-color-accent-soft: #056774;
  --theme-color-highlight: #00aab1;
  --theme-color-highlight-soft: #056774;
  --theme-color-surface: #ffffff;
  --theme-color-surface-muted: #eef5f8;
  --theme-color-surface-raised: #f8fafc;
  --theme-color-black: #020617;
  --theme-color-text: #0d2538;
  --theme-color-text-muted: #475569;
  --theme-color-text-soft: #64748b;
  --theme-color-neutral-100: #f1f5f9;
  --theme-color-neutral-200: #e2e8f0;
  --theme-color-neutral-500: #64748b;
  --theme-color-neutral-700: #334155;
  --theme-color-danger: #f04438;
  --theme-color-success: #12b76a;
  --theme-color-warning: #f79009;
  --theme-color-primary-deep: #071827;
  --theme-color-primary-ink: #020617;
  --theme-color-primary-link: #007a85;
  --theme-color-primary-button: #007a85;
  --theme-color-accent-link: #056774;
  --theme-color-accent-pale: #d8e6ed;
  --theme-color-accent-surface: #b7ccd8;
  --theme-color-accent-surface-light: #d8e6ed;
  --theme-color-accent-glow: #6cffff;
  --theme-color-accent-border: #007a85;
  --theme-color-highlight-contrast: #004751;
  --theme-color-highlight-surface: #b7ccd8;
  --theme-color-highlight-text: #056774;
  --theme-color-border-warm: #007a85;
  --theme-color-surface-warm: #d8e6ed;
  --theme-color-warning-strong: #b54708;
  --theme-color-warning-text: #b54708;
  --theme-color-warning-surface: #f3d38a;
  --theme-color-warning-border: #f79009;
  --theme-color-danger-strong: #b42318;
  --theme-color-danger-deep: #7f1d1d;
  --theme-color-danger-surface: #f8c7c1;
  --theme-color-danger-border: #f04438;
  --theme-color-success-deep: #027a48;
  --theme-color-success-surface: #b7dcc8;
  --theme-color-success-border: #007a85;
  --theme-color-info-text: #486b84;
  --theme-color-neutral-border: #8eaebe;
  --theme-color-neutral-soft-text: #64879d;
  --theme-color-neutral-surface: #d8e6ed;
  --theme-color-neutral-gradient-start: #d8e6ed;
  --theme-color-neutral-gradient-end: #b7ccd8;
  --theme-color-accessibility-accent: #00aab1;
  --theme-color-accessibility-accent-soft: #007a85;
  --theme-color-accessibility-surface: #d8e6ed;
  --theme-color-muted-ui: #64748b;
  --theme-color-card-surface: #ffffff;
  --theme-color-primary-rgb: 13 37 56;
  --theme-color-primary-alt-rgb: 7 24 39;
  --theme-color-accent-rgb: 0 122 133;
  --theme-color-highlight-rgb: 0 170 177;
  --theme-color-surface-rgb: 255 255 255;
  --theme-color-black-rgb: 2 6 23;
  --theme-color-danger-rgb: 240 68 56;
  --theme-color-success-rgb: 18 183 106;
  --theme-color-text-muted-rgb: 71 85 105;
  --theme-color-warning-alt-rgb: 247 144 9;
  --theme-color-overlay-dark-rgb: 15 23 42;
  --theme-color-overlay-deep-rgb: 7 24 39;
  --theme-color-accent-deep-rgb: 5 103 116;
  --theme-space-1: 4px;
  --theme-space-2: 8px;
  --theme-space-3: 12px;
  --theme-space-4: 16px;
  --theme-space-5: 20px;
  --theme-space-6: 24px;
  --theme-space-7: 32px;
  --theme-space-8: 40px;
  --theme-space-9: 48px;
  --theme-space-10: 64px;
  --theme-font-size-caption: 12px;
  --theme-font-size-meta: 0.78rem;
  --theme-font-size-small: 0.88rem;
  --theme-font-size-base: 15px;
  --theme-font-size-lead: 16px;
  --theme-font-size-title: clamp(1.5rem, 2.5vw, 1.7rem);
  --theme-font-size-display: clamp(2rem, 4vw, 3.5rem);
  --theme-radius-sm: 16px;
  --theme-radius-ui: 8px;
  --theme-radius-md: 16px;
  --theme-radius-card: 22px;
  --theme-radius-lg: 22px;
  --theme-radius-xl: 24px;
  --theme-radius-pill: 999px;
  --theme-shadow-sm: 0 4px 14px rgba(7, 24, 39, 0.06);
  --theme-shadow-md: 0 10px 24px rgba(7, 24, 39, 0.08);
  --theme-shadow-lg: 0 18px 40px rgba(7, 24, 39, 0.12);
  --theme-transition-base: 0.25s ease;
  --search-highlight-background: transparent;
  --search-highlight-color: inherit;
  --search-highlight-underline-color: var(--theme-color-highlight);
  --search-highlight-underline-offset: 2px;
  --search-highlight-underline-thickness: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--theme-font-family-base);
  font-optical-sizing: auto;
  font-weight: var(--theme-font-weight-regular);
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: var(--theme-color-text);
  background: var(--theme-color-surface);
  overflow-x: hidden;
}

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

a {
  transition: color var(--theme-transition-base), background-color var(--theme-transition-base), border-color var(--theme-transition-base), transform var(--theme-transition-base), box-shadow var(--theme-transition-base), gap var(--theme-transition-base);
  text-decoration: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: var(--theme-font-size-caption);
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-color-highlight);
}

.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.section-title {
  margin: 0;
  font-size: var(--theme-font-size-title);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.25;
  color: var(--theme-color-primary);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--theme-color-accent);
}

.section-link:hover {
  color: var(--theme-color-highlight);
}

.button-primary,
.button-outline-inverse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
  border-radius: var(--theme-radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button-primary {
  padding: 12px 28px;
  border: none;
  color: var(--theme-color-surface);
  font-size: var(--theme-font-size-small);
  font-weight: var(--theme-font-weight-bold);
  background: var(--theme-color-primary);
}

.button-primary:hover {
  color: var(--theme-color-surface);
  background: linear-gradient(180deg, var(--theme-color-accent-soft), var(--theme-color-accent-strong));
  transform: translateY(-2px);
}

.button-outline-inverse {
  padding: 11px 26px;
  color: var(--theme-color-surface);
  font-size: var(--theme-font-size-small);
  font-weight: var(--theme-font-weight-semibold);
  background: transparent;
  border: 2px solid rgb(var(--theme-color-surface-rgb) / 0.4);
}

.button-outline-inverse:hover {
  color: var(--theme-color-surface);
  background: rgb(var(--theme-color-surface-rgb) / 0.1);
  border-color: rgb(var(--theme-color-surface-rgb) / 0.7);
}

mark.search-highlight {
  background: var(--search-highlight-background);
  color: var(--search-highlight-color);
  padding: 0;
  border-radius: 0;
  text-decoration-line: underline;
  text-decoration-color: var(--search-highlight-underline-color);
  text-decoration-thickness: var(--search-highlight-underline-thickness);
  text-underline-offset: var(--search-highlight-underline-offset);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--theme-color-text-soft);
  line-height: 1.5;
}

.page-breadcrumb__item+.page-breadcrumb__item::before {
  content: "";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: rgb(var(--theme-color-surface) / 0.72);
  font-size: var(--theme-font-size-caption);
  margin-right: 2px;
}

.page-breadcrumb__link {
  text-transform: uppercase;
  color: var(--theme-color-accent-strong);
  text-decoration: none !important;
  transition: var(--theme-transition-base);
}


.page-breadcrumb__current {
  color: rgb(var(--theme-color-surface) / 0.72);
  text-transform: uppercase;
  word-break: break-word;
}

.page-breadcrumb__home-icon {
  display: inline-block;
  vertical-align: -1px;
  line-height: 1;
  color: var(--theme-color-primary);
  font-size: 0.82rem;
}

.page-hero,
.content-hero,
.news-hero,
.agenda-hero {
  padding: 56px 0 64px;
  background: radial-gradient(circle at top right, rgb(var(--theme-color-accent-rgb) / 0.18), transparent 28%),
    linear-gradient(135deg, var(--theme-color-primary) 0%, var(--theme-color-primary-deep) 100%);
}

.page-hero__title,
.content-hero__title,
.news-hero__title,
.agenda-hero__title {
  margin: 0 0 16px;
  color: var(--theme-color-surface);
  font-size: var(--theme-font-size-display);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.1;
}

.page-hero__text,
.content-hero__text,
.news-hero__text,
.agenda-hero__text {
  max-width: 760px;
  margin: 0;
  color: rgb(var(--theme-color-surface-rgb) / 0.82);
  font-size: var(--theme-font-size-base);
  line-height: 1.8;
}

.page-content,
.content-page,
.news-page,
.news-detail-page,
.agenda-page {
  padding: 30px 0;
  background: var(--theme-color-surface-muted);
}

.content-page {
  --tree-color: rgb(var(--theme-color-accent-rgb) / 0.72);
  --tree-arm: 16px;
  --tree-indent: 28px;
  --tree-node-center: 30px;
  --tree-gap: 6px;
}

.page-toolbar,
.content-toolbar,
.news-toolbar {
  margin-bottom: 40px;
}

.page-search,
.content-search,
.news-search {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--theme-color-surface);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
  border-radius: var(--theme-radius-ui);
}

.content-search {
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  border-radius: var(--theme-radius-ui);
}

.page-search__icon,
.content-search__icon,
.content-search__loading,
.news-search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
  border-radius: var(--theme-radius-ui);
  transition: var(--theme-transition-base);
}

.page-search__input,
.content-search__input,
.news-search__input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--theme-color-text);
  font-size: 0.92rem;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.03);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
  border-radius: var(--theme-radius-ui);
  transition: border-color var(--theme-transition-base), box-shadow var(--theme-transition-base), background-color var(--theme-transition-base);
}

.content-search__input {
  border-radius: var(--theme-radius-ui);
}

.page-search__input:focus,
.content-search__input:focus,
.news-search__input:focus {
  outline: none;
  background: var(--theme-color-surface);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.42);
  box-shadow: 0 0 0 0.25rem rgb(var(--theme-color-accent-rgb) / 0.08);
}

.page-search__clear,
.content-search__clear,
.news-search__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
  border-radius: var(--theme-radius-ui);
  cursor: pointer;
  transition: var(--theme-transition-base);
}

.page-search__clear:hover,
.content-search__clear:hover,
.news-search__clear:hover {
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.14);
}

.content-search__loading[hidden] {
  display: none;
}

.page-empty,
.content-empty,
.news-empty {
  margin: 0;
  padding: 14px 16px;
  color: var(--theme-color-neutral-700);
  font-size: var(--theme-font-size-small);
  background: rgb(var(--theme-color-surface-rgb) / 0.72);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.12);
  border-radius: var(--theme-radius-ui);
}

.news-empty {
  padding: 16px 18px;
  font-size: 0.9rem;
  border-style: dashed;
  border-radius: var(--theme-radius-ui);
}

.page-pagination,
.content-pagination,
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-pagination[hidden],
.content-pagination[hidden],
.news-pagination[hidden] {
  display: none !important;
}

.page-pagination__pages,
.content-pagination__pages,
.news-pagination__pages,
.file-pagination-pages,
.card-pagination-pages,
.related-card-pagination-pages,
.department-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.file-pagination-nav>div,
.card-pagination-nav>div,
.related-card-pagination-nav>div,
.department-pagination-nav>div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.page-pagination__button,
.content-pagination__button,
.news-pagination__button,
.file-pagination-first,
.file-pagination-prev,
.file-pagination-next,
.file-pagination-last,
.file-pagination-pages button,
.card-pagination-first,
.card-pagination-prev,
.card-pagination-next,
.card-pagination-last,
.card-pagination-pages button,
.related-card-pagination-first,
.related-card-pagination-prev,
.related-card-pagination-next,
.related-card-pagination-last,
.related-card-pagination-pages button,
.department-pagination-first,
.department-pagination-prev,
.department-pagination-next,
.department-pagination-last,
.department-pagination-pages button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 8px;
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1;
  text-decoration: none !important;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: none;
  border-radius: 2px;
  transition: background-color var(--theme-transition-base), border-color var(--theme-transition-base), color var(--theme-transition-base);
}

.page-pagination__button:hover:not(:disabled),
.content-pagination__button:hover:not(:disabled),
.news-pagination__button:hover:not(:disabled),
.file-pagination-first:hover:not(:disabled),
.file-pagination-prev:hover:not(:disabled),
.file-pagination-next:hover:not(:disabled),
.file-pagination-last:hover:not(:disabled),
.file-pagination-pages button:hover:not(:disabled),
.card-pagination-first:hover:not(:disabled),
.card-pagination-prev:hover:not(:disabled),
.card-pagination-next:hover:not(:disabled),
.card-pagination-last:hover:not(:disabled),
.card-pagination-pages button:hover:not(:disabled),
.related-card-pagination-first:hover:not(:disabled),
.related-card-pagination-prev:hover:not(:disabled),
.related-card-pagination-next:hover:not(:disabled),
.related-card-pagination-last:hover:not(:disabled),
.related-card-pagination-pages button:hover:not(:disabled),
.department-pagination-first:hover:not(:disabled),
.department-pagination-prev:hover:not(:disabled),
.department-pagination-next:hover:not(:disabled),
.department-pagination-last:hover:not(:disabled),
.department-pagination-pages button:hover:not(:disabled) {
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.14);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.58);
}


.content-table-wrap {
  overflow: hidden;
  background: var(--theme-color-surface, #fff);
  border: 1px solid rgb(var(--theme-color-accent-rgb, 0 122 133) / .18);
  border-radius: var(--theme-radius-ui, 8px);
  box-shadow: 0 4px 16px rgb(var(--theme-color-primary-rgb, 13 37 56) / .035);
}

.content-table-wrap .table-responsive {
  margin: 0;
  border-radius: var(--theme-radius-ui, 8px) var(--theme-radius-ui, 8px) 0 0;
}

.content-table-wrap .content-table {
  width: 100% !important;
  margin: 0 !important;
  color: var(--theme-color-text, #0d2538);
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: var(--theme-color-surface, #fff);
}

.content-table-wrap .content-table thead th {
  padding: 14px 16px !important;
  vertical-align: middle !important;
  color: var(--theme-color-primary, #0d2538);
  font-size: .78rem;
  font-weight: var(--theme-font-weight-bold, 900);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgb(var(--theme-color-primary-alt-rgb, 7 24 39) / .035);
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid rgb(var(--theme-color-primary-rgb, 13 37 56) / .18) !important;
  border-left: 0 !important;
}

.content-table-wrap .content-table thead th+th,
.content-table-wrap .content-table tbody td+td {
  border-left: 1px solid rgb(var(--theme-color-accent-rgb, 0 122 133) / .10) !important;
}

.content-table-wrap .content-table tbody td {
  padding: 13px 16px !important;
  vertical-align: middle !important;
  color: var(--theme-color-text, #0d2538);
  font-size: .94rem;
  line-height: 1.45;
  background: var(--theme-color-surface, #fff);
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid rgb(var(--theme-color-accent-rgb, 0 122 133) / .14) !important;
  border-left: 0 !important;
}

.content-table-wrap .content-table tbody tr:last-child td {
  border-bottom: 0 !important;
}


.content-table-wrap .content-table tbody tr:hover td {
  background: rgb(var(--theme-color-primary-alt-rgb, 7 24 39) / .025);
}

.content-table-wrap .content-table-cell-value,
.content-table-wrap .content-table-action,
.content-table-wrap .content-table-empty-cell {
  min-height: 28px;
  vertical-align: middle;
}

.content-table-wrap .content-table-empty-cell {
  display: inline-flex;
  align-items: center;
  color: var(--theme-color-text-soft, #64748b);
  font-style: italic;
}

.content-table-wrap .content-table-action {
  justify-content: center;
  border-radius: var(--theme-radius-ui, 8px);
  line-height: 1.2;
  white-space: nowrap;
}

.content-table-wrap table.dataTable thead .sorting,
.content-table-wrap table.dataTable thead .sorting_asc,
.content-table-wrap table.dataTable thead .sorting_desc,
.content-table-wrap table.dataTable thead .sorting_asc_disabled,
.content-table-wrap table.dataTable thead .sorting_desc_disabled {
  padding-right: 28px !important;
  background-image: none !important;
}

.content-table-wrap table.dataTable thead th.sorting::before,
.content-table-wrap table.dataTable thead th.sorting::after,
.content-table-wrap table.dataTable thead th.sorting_asc::before,
.content-table-wrap table.dataTable thead th.sorting_asc::after,
.content-table-wrap table.dataTable thead th.sorting_desc::before,
.content-table-wrap table.dataTable thead th.sorting_desc::after,
.content-table-wrap table.dataTable thead td.sorting::before,
.content-table-wrap table.dataTable thead td.sorting::after,
.content-table-wrap table.dataTable thead td.sorting_asc::before,
.content-table-wrap table.dataTable thead td.sorting_asc::after,
.content-table-wrap table.dataTable thead td.sorting_desc::before,
.content-table-wrap table.dataTable thead td.sorting_desc::after {
  top: 50% !important;
  transform: translateY(-50%);
  color: var(--theme-color-text-soft, #64748b);
  opacity: .35;
}

.content-dt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--theme-color-primary, #0d2538);
  font-size: var(--theme-font-size-small, .88rem);
  background: var(--theme-color-surface, #fff);
  border-top: 1px solid rgb(var(--theme-color-accent-rgb, 0 122 133) / .16);
}

.content-dt-info,
.content-dt-info .dataTables_info,
.content-dt-info .dt-info {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--theme-color-primary, #0d2538) !important;
  font-size: var(--theme-font-size-small, .88rem);
  line-height: 1.4;
}

.content-dt-pagination,
.content-dt-pagination .dataTables_paginate,
.content-dt-pagination .dt-paging,
.content-dt-pagination .pagination {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 !important;
  margin: 0 !important;
}

.content-dt-pagination .pagination .page-item {
  margin: 0 !important;
}

.content-dt-pagination .paginate_button,
.content-dt-pagination .page-link,
.content-dt-pagination button.dt-paging-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 28px !important;
  height: 28px !important;
  padding: 8px !important;
  margin: 0 !important;
  color: var(--theme-color-primary, #0d2538) !important;
  font-size: var(--theme-font-size-meta, .78rem) !important;
  font-weight: var(--theme-font-weight-bold, 900) !important;
  line-height: 1 !important;
  text-decoration: none !important;
  background: rgb(var(--theme-color-primary-alt-rgb, 7 24 39) / .08) !important;
  border: 0 !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color var(--theme-transition-base, .25s ease), color var(--theme-transition-base, .25s ease);
}

.content-dt-pagination .paginate_button:hover:not(.disabled):not(.current),
.content-dt-pagination .page-item:not(.disabled):not(.active) .page-link:hover,
.content-dt-pagination button.dt-paging-button:hover:not(:disabled):not(.current) {
  color: var(--theme-color-primary, #0d2538) !important;
  background: rgb(var(--theme-color-primary-alt-rgb, 7 24 39) / .14) !important;
}

.content-dt-pagination .paginate_button.current,
.content-dt-pagination .paginate_button.current:hover,
.content-dt-pagination .paginate_button.current:focus,
.content-dt-pagination .current,
.content-dt-pagination .current:hover,
.content-dt-pagination .current:focus,
.content-dt-pagination .page-item.active .page-link,
.content-dt-pagination .page-item.active .page-link:hover,
.content-dt-pagination .page-item.active .page-link:focus,
.content-dt-pagination button.dt-paging-button.current,
.content-dt-pagination button.dt-paging-button.current:hover,
.content-dt-pagination button.dt-paging-button.current:focus,
.content-dt-pagination .content-pagination__button.is-active,
.content-dt-pagination .content-pagination__button.is-active:hover,
.content-dt-pagination .content-pagination__button.is-active:focus {
  color: var(--theme-color-surface, #fff) !important;
  -webkit-text-fill-color: var(--theme-color-surface, #fff) !important;
  text-shadow: none !important;
  background: var(--theme-color-primary, #0d2538) !important;
  border-color: rgb(var(--theme-color-accent-rgb, 0 122 133) / .22) !important;
}

.content-dt-pagination .paginate_button.current *,
.content-dt-pagination .current *,
.content-dt-pagination .page-item.active .page-link *,
.content-dt-pagination button.dt-paging-button.current *,
.content-dt-pagination .content-pagination__button.is-active * {
  color: var(--theme-color-surface, #fff) !important;
  -webkit-text-fill-color: var(--theme-color-surface, #fff) !important;
}

.content-dt-pagination .paginate_button.disabled,
.content-dt-pagination .page-item.disabled .page-link,
.content-dt-pagination button.dt-paging-button:disabled,
.content-dt-pagination button.dt-paging-button.disabled {
  opacity: .45 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .content-dt-footer {
    align-items: stretch;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .content-dt-pagination,
  .content-dt-pagination .dataTables_paginate,
  .content-dt-pagination .dt-paging,
  .content-dt-pagination .pagination {
    justify-content: center;
  }
}

.page-pagination__button.is-active,
.content-pagination__button.is-active,
.news-pagination__button.is-active,
.file-pagination-pages button.is-active,
.card-pagination-pages button.is-active,
.related-card-pagination-pages button.is-active,
.department-pagination-pages button.is-active {
  color: var(--theme-color-surface);
  background: var(--theme-color-primary);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.22);
}

.page-pagination__button:disabled,
.content-pagination__button:disabled,
.news-pagination__button:disabled,
.file-pagination-first:disabled,
.file-pagination-prev:disabled,
.file-pagination-next:disabled,
.file-pagination-last:disabled,
.file-pagination-pages button:disabled,
.card-pagination-first:disabled,
.card-pagination-prev:disabled,
.card-pagination-next:disabled,
.card-pagination-last:disabled,
.card-pagination-pages button:disabled,
.related-card-pagination-first:disabled,
.related-card-pagination-prev:disabled,
.related-card-pagination-next:disabled,
.related-card-pagination-last:disabled,
.related-card-pagination-pages button:disabled,
.department-pagination-first:disabled,
.department-pagination-prev:disabled,
.department-pagination-next:disabled,
.department-pagination-last:disabled,
.department-pagination-pages button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-pagination__ellipsis,
.content-pagination__ellipsis,
.news-pagination__ellipsis,
.file-pagination-pages span,
.card-pagination-pages span,
.related-card-pagination-pages span,
.department-pagination-pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 28px;
  color: var(--theme-color-info-text);
  font-size: 0.8rem;
  font-weight: var(--theme-font-weight-bold);
}

#layout-topbar {
  padding: 7px 0;
  font-size: var(--theme-font-size-meta);
  letter-spacing: 0.02em;
  color: rgb(var(--theme-color-surface-rgb) / 0.75);
  background: var(--theme-color-primary-strong);
  border-bottom: 0;
}

#layout-topbar a {
  color: rgb(var(--theme-color-surface-rgb) / 0.75);
  text-decoration: none;
}

#layout-topbar a:hover {
  color: var(--theme-color-highlight-soft);
}

#layout-topbar .divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 10px;
  vertical-align: middle;
  background: rgb(var(--theme-color-surface-rgb) / 0.25);
}

#layout-topbar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--theme-color-primary-strong);
  font-size: var(--theme-font-size-base);
  line-height: 0.5rem;
  border-radius: 5px;
}

#layout-topbar .social-links a:hover {
  color: var(--theme-color-primary);
  background: var(--theme-color-highlight);
  border-color: var(--theme-color-highlight);
}

#layout-topbar .quick-links a {
  margin-left: 6px;
  padding: 3px 10px;
  font-size: 0.76rem;
  font-weight: 500;
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.15);
  border-radius: var(--theme-radius-lg);
}

#layout-topbar .quick-links a:hover {
  color: var(--theme-color-primary);
  background: var(--theme-color-highlight);
  border-color: var(--theme-color-highlight);
}

#clock {
  font-variant-numeric: tabular-nums;
}

#layout-navigation {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 0;
  background: var(--theme-color-surface);
  box-shadow: 0 2px 20px rgb(var(--theme-color-primary-rgb) / 0.08);
}

#layout-navigation .container-xl {
  position: relative;
}

#layout-navigation .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  margin-right: 24px;
  text-decoration: none;
}

#layout-navigation .layout-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#layout-navigation .layout-brand__text {
  display: inline-flex;
  align-items: center;
  line-height: 1.1;
}

#layout-navigation .layout-brand img {
  display: block;
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

#layout-navigation .navbar-toggler {
  padding: 10px;
  border: 0 !important;
  border-radius: var(--theme-radius-ui);
  box-shadow: none !important;
}

#layout-navigation .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgb(var(--theme-color-highlight-rgb) / 0.18) !important;
}

#layout-navigation .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 24px;
  position: relative;
  background-color: transparent;
}

#layout-navigation .navbar-toggler-icon::before,
#layout-navigation .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  width: 20px;
  height: 2px;
  background: var(--theme-color-primary);
  border-radius: 2px;
}

#layout-navigation .navbar-toggler-icon::before {
  top: 7px;
  box-shadow: 0 6px 0 var(--theme-color-primary);
}

#layout-navigation .navbar-toggler-icon::after {
  top: 19px;
}

#layout-navigation .navbar-collapse {
  min-height: 100%;
}

#layout-navigation .navbar-nav {
  gap: 0;
}

#layout-navigation .navbar-nav>.nav-item {
  position: relative;
}

#layout-navigation .navbar-nav>.nav-item>.nav-link,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 88px;
  padding: 0 14px !important;
  color: var(--theme-color-neutral-700) !important;
  font-size: 0.82rem;
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}

#layout-navigation .navbar-nav>.nav-item>.nav-link::before,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--theme-color-accent-strong);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--theme-transition-base);
}

#layout-navigation .navbar-nav>.nav-item>.nav-link:hover,
#layout-navigation .navbar-nav>.nav-item>.nav-link:focus,
#layout-navigation .navbar-nav>.nav-item>.nav-link.active,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle:hover,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle:focus,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle.active,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle.show,
#layout-navigation .navbar-nav>.nav-item.show>.nav-link,
#layout-navigation .navbar-nav>.nav-item.show>.dropdown-toggle {
  color: var(--theme-color-highlight) !important;
  background: transparent !important;
}

#layout-navigation .navbar-nav>.nav-item>.nav-link:hover::before,
#layout-navigation .navbar-nav>.nav-item>.nav-link:focus::before,
#layout-navigation .navbar-nav>.nav-item>.nav-link.active::before,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle:hover::before,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle:focus::before,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle.active::before,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle.show::before,
#layout-navigation .navbar-nav>.nav-item.show>.nav-link::before,
#layout-navigation .navbar-nav>.nav-item.show>.dropdown-toggle::before {
  transform: scaleX(1);
}

#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle::after,
#layout-navigation .dropdown-submenu>.dropdown-toggle::after {
  display: none !important;
}

#layout-navigation .dropdown-fa-icon,
#layout-navigation .submenu-fa-icon,
#navigationMobile .mobile-chevron {
  font-size: var(--theme-font-size-meta);
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle.show .dropdown-fa-icon,
#layout-navigation .navbar-nav>.nav-item.show>.dropdown-toggle .dropdown-fa-icon {
  transform: rotate(180deg);
}

#layout-navigation .dropdown-submenu>.dropdown-toggle.is-open .submenu-fa-icon {
  transform: rotate(90deg);
}

#layout-navigation .dropdown-menu {
  min-width: 260px;
  margin-top: 0;
  padding: 10px 0;
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.12);
  border-radius: var(--theme-radius-card);
  background: var(--theme-color-surface);
  box-shadow: 0 12px 32px rgb(var(--theme-color-primary-rgb) / 0.12);
}

#layout-navigation .dropdown-divider {
  margin: 0.35rem 0;
  border-top-color: rgb(var(--theme-color-primary-rgb) / 0.08);
}

#layout-navigation .dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.78rem 1rem;
  color: var(--theme-color-neutral-700);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
  background: transparent;
  border: 0;
  transition: color var(--theme-transition-base), background-color var(--theme-transition-base);
}

#layout-navigation .dropdown-item:hover,
#layout-navigation .dropdown-item:focus,
#layout-navigation .dropdown-item.active,
#layout-navigation .dropdown-item:active {
  color: var(--theme-color-highlight) !important;
  background: rgb(var(--theme-color-highlight-rgb) / 0.12) !important;
}

#layout-navigation .dropdown-item i {
  flex-shrink: 0;
}

#layout-navigation .dropdown-submenu {
  position: relative;
}

#layout-navigation .dropdown-submenu>.dropdown-toggle {
  position: relative;
}

#layout-navigation .dropdown-submenu>.dropdown-menu {
  top: -10px;
  left: 100%;
  margin-left: 0.35rem;
}

#navigationMobile.offcanvas {
  max-width: 360px;
  background: var(--theme-color-surface);
}

#navigationMobile .offcanvas-header {
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgb(var(--theme-color-primary-rgb) / 0.08);
}

#navigationMobile .offcanvas-title {
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-base);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#navigationMobile .btn-close {
  box-shadow: none !important;
}

#navigationMobile .offcanvas-body {
  padding: 1rem;
}

#navigationMobile .offcanvas-body img {
  display: block;
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

#navigationMobile .menu-mobile-tree a,
#navigationMobile .menu-mobile-tree span,
#navigationMobile .menu-mobile-tree button {
  color: var(--theme-color-neutral-700);
}

#navigationMobile .menu-mobile-tree a {
  background: var(--theme-color-surface);
}

#navigationMobile .menu-mobile-tree a:hover,
#navigationMobile .menu-mobile-tree a.active {
  color: var(--theme-color-highlight) !important;
  background: rgb(var(--theme-color-highlight-rgb) / 0.08) !important;
  border-color: rgb(var(--theme-color-highlight-rgb) / 0.22) !important;
}

#navigationMobile .menu-mobile-tree .btn-link {
  color: var(--theme-color-neutral-700);
  background: var(--theme-color-surface);
}

#navigationMobile .menu-mobile-tree .btn-link:hover,
#navigationMobile .menu-mobile-tree .btn-link:focus {
  color: var(--theme-color-highlight);
  background: rgb(var(--theme-color-highlight-rgb) / 0.08);
}

#navigationMobile .menu-mobile-tree .collapse {
  transition: height 0.25s ease;
}

#navigationMobile .menu-mobile-tree .d-flex.border {
  background: var(--theme-color-surface);
  border-color: rgb(var(--theme-color-primary-rgb) / 0.10) !important;
}

#navigationMobile .menu-mobile-tree .d-flex.border>a,
#navigationMobile .menu-mobile-tree .d-flex.border>span {
  color: var(--theme-color-neutral-700);
}

#navigationMobile .menu-mobile-tree .d-flex.border>a:hover {
  color: var(--theme-color-highlight);
  background: rgb(var(--theme-color-highlight-rgb) / 0.08);
}

#navigationMobile .menu-mobile-tree .border-start {
  border-left-color: rgb(var(--theme-color-primary-rgb) / 0.10) !important;
}

#navigationMobile .mobile-chevron.is-open {
  transform: rotate(180deg);
}

#announcement-modal-root {
  z-index: 2147483646;
}

#announcement-modal-root.announcement-modal--hidden {
  display: none !important;
}

#announcement-modal-backdrop {
  background: rgb(var(--theme-color-overlay-dark-rgb) / 0.55);
  backdrop-filter: blur(2px);
}

.announcement-modal__viewport {
  z-index: 2147483647;
  padding: 32px 24px;
}

.announcement-modal__dialog {
  width: 100%;
  max-width: min(92vw, 720px);
  position: relative;
}

#announcement-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.12);
  border-radius: var(--theme-radius-pill);
  background: var(--theme-color-surface);
  color: var(--theme-color-primary-link);
  box-shadow: 0 1rem 2rem rgb(var(--theme-color-primary-rgb) / 0.18);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

#announcement-modal-close:hover,
#announcement-modal-close:focus {
  background: var(--theme-color-surface-raised);
  color: var(--theme-color-primary);
  border-color: rgb(var(--theme-color-primary-rgb) / 0.2);
}

#announcement-modal-card {
  max-height: 85vh;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--theme-color-surface);
  box-shadow: 0 1.5rem 3rem rgb(var(--theme-color-primary-rgb) / 0.24);
}

.announcement-modal__scroll {
  overflow: auto;
}

.announcement-modal__image-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-modal__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.announcement-modal-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.announcement-modal__media-inner {
  padding: 20px 20px 16px;
}

.announcement-modal__video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: .75rem;
  background: var(--theme-color-black);
}

.announcement-modal__video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.announcement-modal__video {
  display: block;
  width: 100%;
  max-height: min(60vh, 480px);
  border-radius: .75rem;
  background: var(--theme-color-black);
  object-fit: contain;
}

.announcement-modal__video-warning {
  padding: 14px;
  border: 1px solid var(--theme-color-border-warm);
  border-radius: .75rem;
  background: var(--theme-color-surface-warm);
  color: var(--theme-color-warning-strong);
  font-size: .875rem;
}

.announcement-modal__text {
  overflow: auto;
  padding: 28px 24px 24px;
}

.announcement-modal__richtext {
  color: var(--theme-color-black);
}

.announcement-modal__actions {
  display: flex;
  justify-content: center;
  padding: 4px;
}

.announcement-modal__actions.announcement-modal__actions--text {
  padding-top: 24px;
}

.announcement-modal__button {
  padding: .7rem 1.25rem;
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.12);
  border-radius: .75rem;
  background: var(--theme-color-surface-raised);
  color: var(--theme-color-primary-link);
  font-size: .95rem;
  font-weight: var(--theme-font-weight-semibold);
  box-shadow: 0 .25rem .75rem rgb(var(--theme-color-primary-rgb) / 0.08);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.announcement-modal__button:hover,
.announcement-modal__button:focus {
  background: var(--theme-color-accent-pale);
  color: var(--theme-color-primary);
  border-color: rgb(var(--theme-color-primary-rgb) / 0.2);
}

#consent-banner {
  z-index: 9999;
}

#consent-banner.consent--hidden,
#consent-preferences-modal.consent--hidden {
  display: none !important;
}

#consent-banner .consent-banner-shell {
  padding: 0 0 1rem;
}

#consent-banner .consent-banner-card {
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.12);
  border-radius: 1rem;
  background: var(--theme-color-surface);
  box-shadow: 0 1rem 2.5rem rgb(var(--theme-color-primary-rgb) / 0.18);
}

#consent-banner .consent-banner-title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-lead);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.35;
}

#consent-banner .consent-banner-title i {
  color: var(--theme-color-highlight);
}

#consent-banner .consent-banner-text {
  margin: 0.75rem 0 0;
  color: var(--theme-color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.consent-button--outline {
  border-color: rgb(var(--theme-color-primary-rgb) / 0.18);
  color: var(--theme-color-primary);
  background: var(--theme-color-surface);
}

.consent-button--outline:hover,
.consent-button--outline:focus {
  border-color: rgb(var(--theme-color-primary-rgb) / 0.3);
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-rgb) / 0.04);
}

.consent-button--reject {
  border-color: rgb(var(--theme-color-danger-rgb) / 0.22);
  color: var(--theme-color-danger-strong);
  background: var(--theme-color-surface);
}

.consent-button--reject:hover,
.consent-button--reject:focus {
  border-color: rgb(var(--theme-color-danger-rgb) / 0.38);
  color: var(--theme-color-danger-strong);
  background: rgb(var(--theme-color-danger-rgb) / 0.06);
}

.consent-button--accept,
.consent-button--save {
  color: var(--theme-color-surface);
  background: var(--theme-color-primary);
  border-color: var(--theme-color-primary);
}

.consent-button--accept:hover,
.consent-button--accept:focus,
.consent-button--save:hover,
.consent-button--save:focus {
  color: var(--theme-color-surface);
  background: var(--theme-color-primary-ink);
  border-color: var(--theme-color-primary-ink);
}

#consent-preferences-modal {
  z-index: 10000;
}

#consent-preferences-modal .consent-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgb(var(--theme-color-overlay-dark-rgb) / 0.55);
}

#consent-preferences-modal .consent-modal__dialog {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

#consent-preferences-modal .consent-modal__card {
  position: relative;
  width: 100%;
  max-width: 42rem;
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.12);
  border-radius: 1rem;
  background: var(--theme-color-surface);
  box-shadow: 0 1rem 2.5rem rgb(var(--theme-color-primary-rgb) / 0.18);
  overflow: hidden;
}

#consent-preferences-modal .consent-modal__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: 1.125rem;
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.35;
}

#consent-preferences-modal .consent-modal__subtitle {
  margin: 0.35rem 0 0;
  color: var(--theme-color-muted-ui);
  font-size: 0.92rem;
  line-height: 1.6;
}

.consent-modal__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.14);
  border-radius: 0.85rem;
  background: var(--theme-color-surface);
  color: var(--theme-color-primary);
}

.consent-modal__close:hover,
.consent-modal__close:focus {
  background: rgb(var(--theme-color-primary-rgb) / 0.04);
  color: var(--theme-color-primary);
}

.consent-option {
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.1);
  border-radius: 0.9rem;
  padding: 1rem;
}

.consent-option.consent-option--required {
  background: rgb(var(--theme-color-primary-rgb) / 0.04);
}

.consent-option__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: 0.95rem;
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.4;
}

.consent-option__text {
  margin: 0.35rem 0 0;
  color: var(--theme-color-neutral-700);
  font-size: 0.92rem;
  line-height: 1.65;
}

.consent-option__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: var(--theme-radius-pill);
  background: rgb(var(--theme-color-success-rgb) / 0.12);
  color: var(--theme-color-success);
  font-size: 0.75rem;
  font-weight: var(--theme-font-weight-bold);
  white-space: nowrap;
}

#consent-pref-analytics.form-check-input {
  width: 2.8rem;
  height: 1.45rem;
  cursor: pointer;
}

.home-section {
  padding: 30px 0;
  background: var(--home-section-bg);
}

.section--muted {
  --home-section-bg: var(--theme-color-surface-muted);
}

.section--surface {
  --home-section-bg: var(--theme-color-surface);
}

#services.home-section,
#updates.home-section,
#contact.home-section {
  background: var(--home-section-bg);
}

.home-section+.home-section {
  border-top: 1px solid rgb(var(--theme-color-primary-rgb) / 0.06);
}



.home-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0;
  background:
    radial-gradient(circle at 82% 18%, rgb(var(--theme-color-highlight-rgb) / 0.20), transparent 32rem),
    radial-gradient(circle at 18% 88%, rgb(var(--theme-color-accent-rgb) / 0.18), transparent 28rem),
    linear-gradient(135deg,
      var(--theme-color-primary-strong) 0%,
      var(--theme-color-primary) 52%,
      var(--theme-color-highlight-contrast) 100%);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.home-hero__eyebrow,
.home-hero__panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--theme-radius-pill);
  backdrop-filter: blur(8px);
}

.home-hero__eyebrow {
  margin-bottom: 18px;
  padding: 8px 14px;
  color: var(--theme-color-accent-surface-light);
  font-size: 0.85rem;
  background: rgb(var(--theme-color-accent-rgb) / 0.12);
  border: 1px solid rgb(var(--theme-color-highlight-rgb) / 0.12);
}

.home-hero__title {
  max-width: 25ch;
  margin: 0 0 18px;
  color: var(--theme-color-surface);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.home-hero__text {
  max-width: 62ch;
  margin: 0 0 28px;
  color: rgb(var(--theme-color-surface-rgb) / 0.84);
  font-size: var(--theme-font-size-lead);
  line-height: 1.75;
}

.home-hero__actions,
.home-hero__panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero__btn,
.home-hero__panel-link,
.home-hero__store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: var(--theme-transition-base);
}

.home-hero__btn {
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 800;
  line-height: 1;
  border-radius: var(--theme-radius-pill);
}

.home-hero__btn--primary {
  color: var(--theme-color-surface);
  background: linear-gradient(180deg, var(--theme-color-accent-strong), var(--theme-color-accent));
  box-shadow: 0 10px 24px rgb(var(--theme-color-black-rgb) / 0.18);
}

.home-hero__btn--primary:hover {
  color: var(--theme-color-surface);
  background: linear-gradient(180deg, var(--theme-color-accent-soft), var(--theme-color-accent-strong));
  transform: translateY(-2px);
}

.home-hero__btn--ghost {
  color: var(--theme-color-surface);
  background: rgb(var(--theme-color-surface-rgb) / 0.06);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.16);
  backdrop-filter: blur(8px);
}

.home-hero__btn--ghost:hover {
  color: var(--theme-color-surface);
  background: rgb(var(--theme-color-surface-rgb) / 0.10);
  transform: translateY(-2px);
}

.home-hero__panel {
  padding: 15px;
  color: var(--theme-color-surface);
  background: rgb(var(--theme-color-surface-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.12);
  border-radius: var(--theme-radius-ui);
  box-shadow:
    0 24px 54px rgba(7, 24, 39, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.home-hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.home-hero__panel-title {
  margin: 0 0 10px;
  color: var(--theme-color-surface);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.home-hero__panel-badge {
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: #dffaff;
  font-size: 0.76rem;
  font-weight: 900;
  background: rgb(var(--theme-color-surface-rgb) / 0.13);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.12);
  white-space: nowrap;
}

.home-hero__panel-text {
  max-width: 440px;
  margin: 0;
  color: rgb(var(--theme-color-surface-rgb) / 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.home-hero__stat {
  min-height: 116px;
  padding: 16px;
  background: rgb(var(--theme-color-surface-rgb) / 0.07);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.08);
  border-radius: var(--theme-radius-ui);
}

.home-hero__stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.home-hero__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: #dffaff;
  font-size: var(--theme-font-size-lead);
  background: rgb(var(--theme-color-surface-rgb) / 0.12);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.12);
  border-radius: var(--theme-radius-pill);
  backdrop-filter: blur(8px);
}

.home-hero__stat-number {
  display: block;
  color: var(--theme-color-surface);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.home-hero__stat-label {
  display: block;
  color: rgb(var(--theme-color-surface-rgb) / 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.home-hero__panel-link {
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--theme-color-surface);
  font-weight: 800;
  background: rgb(var(--theme-color-surface-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.10);
  border-radius: var(--theme-radius-ui);
}

.home-hero__panel-link:hover {
  color: var(--theme-color-surface);
  background: rgb(var(--theme-color-surface-rgb) / 0.12);
  transform: translateY(-2px);
}

.home-hero__app-panel {
  position: relative;
  overflow: hidden;
  color: var(--theme-color-surface);
  border: 1px solid rgba(109, 232, 242, 0.28);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.home-hero__app-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.home-hero__app-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  color: #083342;
  font-size: 1.25rem;
  font-weight: 950;
  border-radius: 10px;
}

.home-hero__app-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #71f5ff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.home-hero__feature {
  min-height: 82px;
  padding: 12px 10px;
  background: rgb(var(--theme-color-surface-rgb) / 0.10);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.10);
  border-radius: 8px;
}

.home-hero__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: #dffaff;
  font-size: 1rem;
}

.home-hero__feature-label {
  display: block;
  color: var(--theme-color-surface);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
}

.home-hero__stores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.home-hero__store-link {
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  color: var(--theme-color-surface);
  background: rgba(0, 22, 38, 0.74);
  border: 1px solid rgb(var(--theme-color-surface-rgb) / 0.10);
  border-radius: var(--theme-radius-pill);
}

.home-hero__store-link:hover,
.home-hero__store-link:focus {
  color: var(--theme-color-surface);
  background: rgba(0, 29, 48, 0.92);
  border-color: rgb(var(--theme-color-surface-rgb) / 0.22);
  text-decoration: none;
  transform: translateY(-2px);
}

.home-hero__store-link i {
  font-size: 1.55rem;
}

.home-hero__store-link small,
.home-hero__store-link strong {
  display: block;
  line-height: 1;
}

.home-hero__store-link small {
  color: rgb(var(--theme-color-surface-rgb) / 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero__store-link strong {
  margin-top: 3px;
  color: var(--theme-color-surface);
  font-size: 1.03rem;
  font-weight: 950;
}

@media (max-width: 1199.98px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .home-hero {
    padding: 56px 0;
  }

  .home-hero__app-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .home-hero__app-head,
  .home-hero__stores {
    display: grid;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .home-hero__features {
    grid-template-columns: 1fr;
  }
}


#services {
  position: relative;
  padding: 42px 0;
  background:
    radial-gradient(circle at 50% 0%, rgb(var(--theme-color-accent-rgb) / 0.035), transparent 34rem),
    linear-gradient(180deg, #f4fafc 0%, #eef5f8 100%);
}

#services .section-title {
  margin-bottom: 8px;
  color: var(--theme-color-primary);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.services-gallery,
.services-gallery__track,
.services-gallery__page {
  position: relative;
  width: 100%;
}

.services-gallery__viewport {
  width: 100%;
  overflow: visible;
}

#services .row>[class*="col-"] {
  display: flex;
}

.service-card {
  --service-card-size: 155px;
  --service-card-icon-size: 66px;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
  min-height: var(--service-card-size);
  padding: 22px 12px 18px;
  overflow: hidden;

  color: var(--theme-color-primary);
  text-align: center;
  text-decoration: none !important;

  background:
    linear-gradient(180deg, rgb(var(--theme-color-surface-rgb) / 0.98), rgb(var(--theme-color-surface-rgb) / 0.94)),
    var(--theme-color-surface);
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.065);
  border-radius: var(--theme-radius-ui);

  box-shadow:
    0 14px 32px rgb(var(--theme-color-primary-rgb) / 0.055),
    0 2px 8px rgb(var(--theme-color-primary-rgb) / 0.02);

  transition:
    transform var(--theme-transition-base),
    box-shadow var(--theme-transition-base),
    border-color var(--theme-transition-base);
}

.service-card::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -20px;
  left: 10%;
  z-index: 0;
  height: 40px;
  background: rgb(var(--theme-color-accent-rgb) / 0.07);
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
  transition:
    opacity var(--theme-transition-base),
    transform var(--theme-transition-base);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgb(var(--theme-color-accent-rgb) / 0.16);
  box-shadow:
    0 20px 44px rgb(var(--theme-color-primary-rgb) / 0.085),
    0 4px 12px rgb(var(--theme-color-primary-rgb) / 0.03);
  transform: translateY(-5px);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1.06);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  background: linear-gradient(180deg, var(--theme-color-primary), var(--theme-color-primary-strong));
  transform: translateY(-2px);
}

.service-card:focus-visible {
  outline: 3px solid rgb(var(--theme-color-highlight-rgb) / 0.20);
  outline-offset: 3px;
}

.service-card__icon {
  position: relative;
  z-index: 2;

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

  width: var(--service-card-icon-size);
  height: var(--service-card-icon-size);
  flex: 0 0 var(--service-card-icon-size);
  margin-bottom: 16px;
  overflow: hidden;

  color: var(--theme-color-accent);
  font-size: 2.2rem;
  line-height: 1;

  background:
    linear-gradient(180deg, rgb(var(--theme-color-accent-rgb) / 0.06), rgb(var(--theme-color-highlight-rgb) / 0.03));
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.10);
  border-radius: 8px;
  box-shadow: none;

  transition:
    color var(--theme-transition-base),
    background var(--theme-transition-base),
    transform var(--theme-transition-base),
    border-color var(--theme-transition-base);
}

.service-card:hover .service-card__icon,
.service-card:focus-visible .service-card__icon {
  color: var(--theme-color-primary);
  background:
    linear-gradient(180deg, rgb(var(--theme-color-accent-rgb) / 0.09), rgb(var(--theme-color-highlight-rgb) / 0.045));
  border-color: rgb(var(--theme-color-accent-rgb) / 0.14);
  box-shadow: none;
  transform: translateY(-2px);
}

.service-card__icon i,
.service-card__icon svg {
  display: block;
  color: currentColor;
  font-size: inherit;
  line-height: 1;
}

.service-card__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.service-card__title {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 15ch;
  min-height: calc(1.15em * 2);
  margin: 0;

  color: var(--theme-color-primary);
  font-size: clamp(0.82rem, 0.8vw, 0.98rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .service-card {
    --service-card-size: 210px;
    --service-card-icon-size: 76px;
    padding: 24px 16px 20px;
  }

  .service-card__icon {
    font-size: 2.4rem;
  }

  .service-card__title {
    max-width: 18ch;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  #services {
    padding: 36px 0;
  }

  .service-card {
    --service-card-size: 210px;
    --service-card-icon-size: 76px;
    padding: 24px 18px 20px;
    border-radius: 15px;
  }

  .service-card__icon {
    margin-bottom: 18px;
    font-size: 2.3rem;
  }

  .service-card__title {
    max-width: 20ch;
    font-size: 1rem;
  }
}

#updates {
  padding: 30px 0;
}

#updates .col-lg-7,
#updates .col-lg-5 {
  display: flex;
  flex-direction: column;
}

.news-feature {
  position: relative;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--theme-radius-ui);
}

.news-feature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(var(--theme-color-primary-rgb) / 0.82) 0%, transparent 60%);
}

.news-feature__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  color: var(--theme-color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--theme-color-surface-muted);
}

.news-feature__content {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: var(--theme-color-surface);
}

.news-feature__date {
  margin-bottom: 4px;
  color: rgb(var(--theme-color-surface-rgb) / 0.6);
  font-size: var(--theme-font-size-caption);
}

.news-feature__title {
  margin: 0;
  color: var(--theme-color-surface);
  font-size: var(--theme-font-size-title);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.3;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 10px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--theme-color-neutral-200);
}

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

.news-item__thumb {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--theme-radius-ui);
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  color: var(--theme-color-neutral-500);
  font-size: var(--theme-font-size-caption);
  font-weight: 800;
  flex-wrap: wrap;
}

.news-item__tag {
  padding: 2px 8px;
  color: var(--theme-color-accent);
  font-weight: var(--theme-font-weight-semibold);
  border-radius: 4px;
  background: var(--theme-color-surface-muted);
}

.news-item__title {
  margin-bottom: 4px;
  color: var(--theme-color-primary);
  font-size: 0.95rem;
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.35;
}

.news-item__excerpt {
  margin: 0;
  color: var(--theme-color-neutral-500);
  font-size: 0.8rem;
  line-height: 1.5;
}

.agenda-box {
  overflow: hidden;
  background: var(--theme-color-surface-muted);
  border-radius: var(--theme-radius-ui);
}

.agenda-item {
  display: flex;
  align-items: stretch;
  background: var(--theme-color-surface-muted);
  border-bottom: 1px solid var(--theme-color-neutral-200);
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item:hover {
  background: var(--theme-color-accent-surface);
}

.agenda-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 10px 0;
  color: var(--theme-color-surface);
  background: var(--theme-color-primary);
}

.agenda-item__month {
  font-size: 0.62rem;
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.agenda-item__day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.agenda-item__weekday {
  color: rgb(var(--theme-color-surface-rgb) / 0.6);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
}

.agenda-item__time {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
  color: var(--theme-color-accent);
  font-size: 0.73rem;
  font-weight: var(--theme-font-weight-semibold);
}

.agenda-item__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-small);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.35;
}

.news-grid {
  padding-top: 0;
}

.news-cards-group {
  display: grid;
  gap: 10px;
}

.news-card {
  height: 100%;
  overflow: hidden;
  background: var(--theme-color-surface);
  border-radius: 18px;
  transition: var(--theme-transition-base);
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--theme-color-primary-rgb) / 0.14);
  box-shadow: 0 10px 20px rgb(var(--theme-color-primary-rgb) / 0.08);
}

.news-card__image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
}

.news-card__image,
.news-card__placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.news-card__image {
  object-fit: cover;
}

.news-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--theme-color-primary-alt-rgb) / 0.28);
  font-size: 2rem;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.05);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
  padding: 22px;
}

.news-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-card__category,
.news-card__date {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--theme-radius-pill);
}

.news-card__category {
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
}

.news-card__date {
  color: var(--theme-color-neutral-700);
  background: rgb(var(--theme-color-text-muted-rgb) / 0.08);
}

.news-card__title {
  margin: 0 0 10px;
  color: var(--theme-color-primary);
  font-size: 1.08rem;
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.35;
}

.news-card__excerpt {
  margin: 0 0 18px;
  color: var(--theme-color-neutral-500);
  font-size: 0.86rem;
  line-height: 1.7;
}

.news-card__actions {
  margin-top: auto;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.76rem;
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--theme-radius-ui);
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
  transition: var(--theme-transition-base);
}

.news-card__link:hover {
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.14);
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(var(--theme-color-accent-rgb) / 0.12);
}

.news-detail-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-neutral-700);
  font-size: 0.84rem;
  font-weight: var(--theme-font-weight-semibold);
}

.news-detail-meta__item i {
  color: var(--theme-color-primary);
  font-size: 0.84rem;
}

.news-detail-content {
  color: var(--theme-color-neutral-700);
  font-size: var(--theme-font-size-base);
  line-height: 1.85;
}

.news-detail-content p:last-child {
  margin-bottom: 0;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--theme-radius-ui);
}

.news-detail-section {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgb(var(--theme-color-accent-rgb) / 0.12);
}

.news-detail-section__title {
  margin: 0 0 16px;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-bold);
}

.news-gallery__item {
  display: block;
  height: 100%;
  overflow: hidden;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.06);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.14);
  border-radius: var(--theme-radius-card);
  transition: var(--theme-transition-base);
}

.news-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgb(var(--theme-color-primary-alt-rgb) / 0.08);
}

.news-gallery__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.news-files {
  display: grid;
  gap: 12px;
}

.news-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--theme-color-primary);
  text-decoration: none;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.04);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.14);
  border-radius: var(--theme-radius-ui);
  transition: var(--theme-transition-base);
}

.news-file:hover {
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  text-decoration: none;
}

.news-file__left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.news-file__left i {
  color: var(--theme-color-primary);
  font-size: 0.9rem;
}

.news-file__name {
  color: var(--theme-color-primary);
  font-size: 0.9rem;
  font-weight: var(--theme-font-weight-semibold);
  word-break: break-word;
}

.news-file__action {
  flex-shrink: 0;
  color: var(--theme-color-text-soft);
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-share__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.16);
  border-radius: var(--theme-radius-ui);
  transition: var(--theme-transition-base);
}

.news-share__link:hover {
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.14);
  text-decoration: none;
}

.news-empty-state {
  padding: 18px 20px;
  color: var(--theme-color-neutral-700);
  font-size: 0.92rem;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.04);
  border: 1px dashed rgb(var(--theme-color-accent-rgb) / 0.18);
  border-radius: var(--theme-radius-ui);
}


#accessibility-tools {
  position: fixed;
  left: initial;
  right: 0;
  top: 40%;
  bottom: initial;
  z-index: 2147483600 !important;
  transform: translateY(calc(-50% - 10px));
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 95vw;
  margin: 10px !important;
}

#accessibility-tools * {
  box-sizing: border-box;
}

#accessibility-tools[data-open="false"] .accessibility-panel {
  display: none;
}

#accessibility-tools[data-open="true"] .accessibility-panel {
  display: block;
}

.accessibility-trigger {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.18);
  border-radius: var(--theme-radius-ui);
  background: var(--theme-color-surface);
  color: var(--theme-color-primary);
  box-shadow: 0 10px 28px rgb(var(--theme-color-primary-rgb) / 0.16);
  cursor: pointer;
  transition: transform var(--theme-transition-base), box-shadow var(--theme-transition-base), border-color var(--theme-transition-base), background-color var(--theme-transition-base);
}

.accessibility-trigger:hover,
.accessibility-trigger:focus {
  border-color: rgb(var(--theme-color-accent-rgb) / 0.42);
  background: var(--theme-color-accessibility-surface);
  box-shadow: 0 14px 34px rgb(var(--theme-color-primary-rgb) / 0.22);
  outline: none;
}

.accessibility-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.accessibility-panel {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  width: min(360px, calc(100vw - 82px));
  max-height: calc(100vh - 32px);
  padding: 14px;
  overflow: auto;
  pointer-events: auto;
  transform: translateY(-50%);
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.12);
  border-radius: 18px;
  background: var(--theme-color-surface);
  box-shadow: 0 22px 58px rgb(var(--theme-color-primary-rgb) / 0.22);
}

.accessibility-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 2px 12px;
}

.accessibility-panel-title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-base);
  font-weight: 800;
  line-height: 1.2;
}

.accessibility-panel-subtitle {
  margin: 4px 0 0;
  color: var(--theme-color-text-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.accessibility-close {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.14);
  border-radius: var(--theme-radius-ui);
  background: var(--theme-color-surface);
  color: var(--theme-color-primary);
  cursor: pointer;
  transition: var(--theme-transition-base);
}

.accessibility-close:hover,
.accessibility-close:focus {
  background: rgb(var(--theme-color-primary-rgb) / 0.06);
  outline: none;
}

.accessibility-grid,
.accessibility-actions {
  display: grid;
  gap: 10px;
}

.accessibility-actions {
  margin-top: 12px;
}

.accessibility-button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: var(--theme-color-primary);
  text-align: left;
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.18);
  border-radius: var(--theme-radius-ui);
  background: var(--theme-color-surface);
  cursor: pointer;
  transition: background-color var(--theme-transition-base), border-color var(--theme-transition-base), color var(--theme-transition-base), transform var(--theme-transition-base);
}

.accessibility-button:hover,
.accessibility-button:focus {
  border-color: rgb(var(--theme-color-accent-rgb) / 0.42);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.04);
  outline: none;
}

.accessibility-button.is-active {
  color: var(--theme-color-surface);
  border-color: var(--theme-color-primary);
  background: var(--theme-color-primary);
}

.accessibility-button span {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.accessibility-button small {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.82;
}

#accessibility-tools,
#accessibility-tools *,
[vw],
[vw] *,
[vw-access-button],
[vw-plugin-wrapper],
.vw-plugin-wrapper,
.vw-access-button {
  filter: none !important;
}

html[data-accessibility-grayscale="on"] body>*:not(#accessibility-tools):not([vw]) {
  filter: grayscale(1);
}

html[data-accessibility-negative-contrast="on"] body {
  background: var(--theme-color-black) !important;
}

html[data-accessibility-negative-contrast="on"] body>*:not(#accessibility-tools):not([vw]) {
  filter: invert(1) hue-rotate(180deg);
}

html[data-accessibility-negative-contrast="on"] body>*:not(#accessibility-tools):not([vw]) img,
html[data-accessibility-negative-contrast="on"] body>*:not(#accessibility-tools):not([vw]) video,
html[data-accessibility-negative-contrast="on"] body>*:not(#accessibility-tools):not([vw]) iframe,
html[data-accessibility-negative-contrast="on"] body>*:not(#accessibility-tools):not([vw]) canvas,
html[data-accessibility-negative-contrast="on"] body>*:not(#accessibility-tools):not([vw]) svg {
  filter: invert(1) hue-rotate(180deg);
}

html[data-accessibility-high-contrast="on"] {
  --theme-color-primary: var(--theme-color-black);
  --theme-color-primary-strong: var(--theme-color-black);
  --theme-color-accent: var(--theme-color-black);
  --theme-color-surface-muted: var(--theme-color-black);
  --theme-color-surface: var(--theme-color-black);
  --theme-color-text: var(--theme-color-surface);
  --theme-color-neutral-700: var(--theme-color-surface);
  --theme-color-highlight: var(--theme-color-accessibility-accent);
  --theme-color-highlight-soft: var(--theme-color-accessibility-accent-soft);
}

html[data-accessibility-high-contrast="on"] body {
  background: var(--theme-color-black) !important;
  color: var(--theme-color-surface) !important;
}

html[data-accessibility-high-contrast="on"] body :where(section, main, article, header, footer, nav, div, p, span, small, strong, label, li, td, th, h1, h2, h3, h4, h5, h6):not(#accessibility-tools):not(#accessibility-tools *) {
  background-color: var(--theme-color-black) !important;
  color: var(--theme-color-surface) !important;
  border-color: var(--theme-color-surface) !important;
}

html[data-accessibility-high-contrast="on"] a:not(#accessibility-tools a):not(#accessibility-tools *) {
  color: var(--theme-color-accessibility-accent) !important;
}

html[data-accessibility-high-contrast="on"] button:not(.accessibility-button):not(.accessibility-trigger):not(.accessibility-close) {
  color: var(--theme-color-surface) !important;
  background-color: var(--theme-color-black) !important;
  border-color: var(--theme-color-surface) !important;
}

html[data-accessibility-underline-links="on"] a:not(#accessibility-tools a):not(#accessibility-tools *) {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

html[data-accessibility-readable-font="on"] body,
html[data-accessibility-readable-font="on"] body *:not(i):not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands) {
  font-family: Arial, Verdana, Tahoma, sans-serif !important;
  letter-spacing: 0.01em;
}

.agenda-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 1.2fr);
  gap: 18px;
  align-items: start;
}

.agenda-panel {
  padding: 16px;
  background: var(--theme-color-surface);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.18);
  /* border-radius: var(--theme-radius-card); */
  border-radius: var(--theme-radius-ui);
  box-shadow: 0 8px 18px rgb(var(--theme-color-primary-alt-rgb) / 0.04);
}

.agenda-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 590px;
  margin: 0 auto 12px;
}

.agenda-calendar__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}

.agenda-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.06);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.18);
  border-radius: var(--theme-radius-ui);
  transition: var(--theme-transition-base);
}

.agenda-calendar__nav:hover {
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.12);
}

.agenda-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  max-width: 590px;
  margin: 0 auto 12px;
}

.agenda-calendar__legend:empty {
  display: none;
}

.agenda-calendar__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-caption);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.15;
  border-radius: var(--theme-radius-pill);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.04);
  transition: var(--theme-transition-base);
}

.agenda-calendar__legend-item.is-dim {
  opacity: 0.42;
}

.agenda-calendar__legend-item.is-active {
  box-shadow: inset 0 0 0 2px rgb(var(--theme-color-accent-rgb) / 0.22);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
}

.agenda-calendar__legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.agenda-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 590px;
  margin: 0 auto 6px;
}

.agenda-calendar__weekdays span {
  color: var(--theme-color-primary);
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
}

.agenda-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 590px;
  margin: 0 auto;
}

.agenda-calendar__day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 52px;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-small);
  font-weight: var(--theme-font-weight-bold);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.05);
  border-radius: 11px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.agenda-calendar__day:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgb(var(--theme-color-primary-alt-rgb) / 0.08);
}

.agenda-calendar__day.is-muted {
  color: var(--theme-color-neutral-soft-text);
  background: var(--theme-color-surface);
}

.agenda-calendar__day.is-today {
  box-shadow: 0px 1px 6px -2px var(--theme-color-primary);
}

.agenda-calendar__day.has-event-single {
  color: var(--theme-color-surface);
}

.agenda-calendar__day.has-event-multi {
  color: var(--theme-color-primary);
}

.agenda-calendar__day-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.agenda-calendar__day-number {
  display: block;
  font-size: var(--theme-font-size-small);
  font-weight: 800;
  line-height: 1;
}

.agenda-calendar__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 8px;
}

.agenda-calendar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgb(var(--theme-color-surface-rgb) / 0.95), 0 0 0 2px rgb(var(--theme-color-accent-deep-rgb) / 0.08);
}

.agenda-calendar__extra {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  color: var(--theme-color-accent-soft);
}

.agenda-upcoming__head {
  margin-bottom: 12px;
}

.agenda-upcoming__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--theme-color-primary);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.agenda-upcoming__empty {
  padding: 12px;
  color: var(--theme-color-neutral-700);
  font-size: 0.84rem;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.03);
  border: 1px dashed rgb(var(--theme-color-accent-rgb) / 0.18);
  border-radius: var(--theme-radius-ui);
}

.agenda-upcoming__empty[hidden] {
  display: none !important;
}

.agenda-upcoming__list {
  display: grid;
  gap: 9px;
}

.agenda-upcoming__card {
  overflow: hidden;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.03);
  border: 1px solid var(--theme-color-neutral-border);
  border-radius: var(--theme-radius-ui);
}

.agenda-upcoming__card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 10px;
  text-align: left;
  background: transparent;
  border: none;
}

.agenda-upcoming__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  color: var(--theme-color-primary);
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 11px;
  background: rgb(var(--theme-color-accent-rgb) / 0.12);
}

.agenda-upcoming__info {
  min-width: 0;
  flex: 1;
}

.agenda-upcoming__event-title {
  margin: 0 0 2px;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-small);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.35;
}

.agenda-upcoming__event-time {
  color: var(--theme-color-accent-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}

.agenda-upcoming__head-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.agenda-upcoming__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 20px;
  padding: 3px 7px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--theme-radius-pill);
}

.agenda-upcoming__caret {
  color: var(--theme-color-accent-soft);
  transition: transform var(--theme-transition-base);
}

.agenda-upcoming__card.is-open .agenda-upcoming__caret {
  transform: rotate(180deg);
}

.agenda-upcoming__details {
  padding: 0 10px 10px 58px;
}

.agenda-upcoming__details[hidden] {
  display: none !important;
}

.agenda-upcoming__details p {
  margin: 0;
  color: var(--theme-color-neutral-700);
  font-size: 0.81rem;
  line-height: 1.6;
}

.agenda-upcoming__details p+p {
  margin-top: 8px;
}

.agenda-upcoming__location {
  margin-bottom: 8px !important;
  color: var(--theme-color-accent-soft) !important;
  font-weight: var(--theme-font-weight-semibold);
}

.agenda-upcoming__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  text-decoration: none;
  word-break: break-word;
}

.agenda-upcoming__link:hover {
  text-decoration: none;
}

.agenda-upcoming__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.agenda-upcoming__pagination[hidden] {
  display: none !important;
}

.agenda-upcoming__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 8px;
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1;
  text-decoration: none !important;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: none;
  border-radius: 2px;
  transition: background-color var(--theme-transition-base), border-color var(--theme-transition-base), color var(--theme-transition-base);
}

.agenda-upcoming__page:hover:not(:disabled) {
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.34);
}

.agenda-upcoming__page.is-active {
  color: var(--theme-color-surface);
  background: var(--theme-color-primary);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.34);
}

.agenda-upcoming__page:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.agenda-upcoming__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  color: var(--theme-color-info-text);
  font-size: var(--theme-font-size-meta);
  font-weight: 800;
}

.team-cards-group {
  row-gap: 24px;
  margin-bottom: 1rem;
}

.team-card {
  position: relative;
  height: 100%;
  background: var(--theme-color-surface);
  border: 1px solid rgb(var(--theme-color-primary-rgb) / 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--theme-transition-base);
  box-shadow: 0 4px 18px rgb(var(--theme-color-primary-rgb) / 0.06);
}

.team-card:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--theme-color-primary-rgb) / 0.14);
  box-shadow: 0 10px 20px rgb(var(--theme-color-primary-rgb) / 0.08);
}

.team-card__body {
  height: 100%;
  background: var(--theme-color-surface);
}

.team-card__head {
  position: relative;
  min-height: 76px;
  padding: 14px 16px;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border-radius: 18px 18px 0 0;
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
}

.team-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  max-width: calc(100% - 150px);
  padding: 0 14px;
  border-radius: var(--theme-radius-pill);
  background: linear-gradient(135deg, var(--theme-color-primary), var(--theme-color-accent));
  color: var(--theme-color-surface);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-card__avatar-wrap {
  position: absolute;
  top: 76px;
  left: 18px;
  z-index: 4;
  width: 102px;
  height: 102px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color-neutral-gradient-start), var(--theme-color-neutral-gradient-end));
  border: 5px solid var(--theme-color-surface);
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgb(var(--theme-color-primary-rgb) / 0.12);
}

.team-card__avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card__avatar-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--theme-color-primary);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--theme-color-neutral-gradient-start), var(--theme-color-neutral-gradient-end));
}

.team-card__avatar-fallback.is-visible {
  display: flex;
}

.team-card__content {
  padding: 18px;
  background: var(--theme-color-surface);
}

.team-card__identity {
  min-height: 44px;
  padding-left: 124px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.team-card__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-family: inherit;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
}

.team-card__info-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.team-card__info-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgb(var(--theme-color-primary-rgb) / 0.08);
}

.team-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--theme-radius-ui);
  background: rgb(var(--theme-color-primary-rgb) / 0.06);
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-small);
}

.team-card__meta {
  min-width: 0;
}

.team-card__label {
  display: block;
  margin-bottom: 2px;
  color: var(--theme-color-neutral-500);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.team-card__value {
  display: block;
  color: var(--theme-color-neutral-700);
  font-size: 0.90rem;
  line-height: 1.6;
  word-break: break-word;
}

.team-card__value a {
  color: var(--theme-color-accent);
  text-decoration: none !important;
  transition: color var(--theme-transition-base);
}

.team-card__value a:hover {
  color: var(--theme-color-primary);
}

.team-pagination-nav,
.team-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.team-pagination-nav[hidden],
.team-pagination[hidden] {
  display: none !important;
}

.team-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.team-pagination-first,
.team-pagination-prev,
.team-pagination-next,
.team-pagination-last,
.team-pagination-pages button,
.team-pagination__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 8px;
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-meta);
  font-weight: var(--theme-font-weight-bold);
  line-height: 1;
  text-decoration: none !important;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.44);
  border-radius: 2px;
  transition: background-color var(--theme-transition-base), border-color var(--theme-transition-base), color var(--theme-transition-base);
}

.team-pagination-first:hover:not(:disabled),
.team-pagination-prev:hover:not(:disabled),
.team-pagination-next:hover:not(:disabled),
.team-pagination-last:hover:not(:disabled),
.team-pagination-pages button:hover:not(:disabled),
.team-pagination__button:hover:not(:disabled) {
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.14);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.58);
}

.team-pagination-pages button.is-active,
.team-pagination__button.is-active {
  color: var(--theme-color-surface);
  background: var(--theme-color-primary);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.22);
}

.team-pagination-first:disabled,
.team-pagination-prev:disabled,
.team-pagination-next:disabled,
.team-pagination-last:disabled,
.team-pagination-pages button:disabled,
.team-pagination__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.team-pagination-pages span,
.team-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 28px;
  color: var(--theme-color-info-text);
  font-size: 0.8rem;
  font-weight: var(--theme-font-weight-bold);
}

.content-section+.content-section {
  margin-top: 24px;
}

.content-section>header {
  margin: 0 0 10px;
}

.content-section__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 10px 0 12px;
  margin-bottom: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(var(--theme-color-accent-rgb) / 0.24);
  transition: var(--theme-transition-base);
}

.content-section .section-title,
.content-section__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.content-section__subtitle {
  margin: 6px 0 0;
  color: var(--theme-color-text-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.content-section__toggle-text {
  color: var(--theme-color-primary);
  font-size: 0.74rem;
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.content-section__body {
  display: grid;
  gap: 18px;
}

.content-card {
  display: grid;
  gap: 12px;
}

.content-card__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-base);
  font-weight: 800;
}

.content-card__subtitle {
  margin: 4px 0 0;
  color: var(--theme-color-text-soft);
  font-size: 0.82rem;
}

.content-section__files,
.content-section__tree,
.content-file-group,
.content-folder,
.content-folder__files,
.content-folder__tree,
.pastas-tree {
  display: grid;
}

.content-section__files,
.content-section__tree {
  gap: 5px;
}

.content-section__tree,
.pastas-tree {
  gap: 10px;
}

.content-file-group {
  gap: 6px;
}

.content-file {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
  background: rgb(var(--theme-color-surface-rgb) / 0.72);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.16);
  border-radius: var(--theme-radius-ui);
  text-decoration: none;
  transition: background-color var(--theme-transition-base),
    border-color var(--theme-transition-base),
    box-shadow var(--theme-transition-base);
}

.content-file:hover {
  background: rgb(var(--theme-color-surface-rgb) / 0.92);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.3);
}

.content-file__main {
  min-width: 0;
}

.content-file__name {
  display: block;
  margin: 0 0 4px;
  color: var(--theme-color-primary);
  font-size: 0.9rem;
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.35;
  text-transform: uppercase;
  word-break: break-word;
  text-decoration: none;
}

.content-file__name:hover {
  color: var(--theme-color-accent);
}

.content-file__description,
.content-file__meta {
  display: block;
  color: var(--theme-color-text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
  word-break: break-word;
}

.content-file__description[role="link"] {
  cursor: pointer;
}

.content-file__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.content-file__button,
.content-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--theme-color-primary);
  font-size: 0.75rem;
  font-weight: var(--theme-font-weight-bold);
  white-space: nowrap;
  text-decoration: none !important;
  background: transparent;
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.32);
  border-radius: 6px;
  transition: background-color var(--theme-transition-base),
    border-color var(--theme-transition-base),
    color var(--theme-transition-base),
    opacity var(--theme-transition-base);
}

.content-file__button:hover,
.content-action:hover {
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.06);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.52);
  text-decoration: none !important;
}

.content-file__button.is-disabled,
.content-action.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.content-action--primary {
  color: var(--theme-color-surface);
  background: var(--theme-color-primary);
  border-color: var(--theme-color-primary);
}

.content-action--primary:hover {
  color: var(--theme-color-surface);
  background: var(--theme-color-accent);
}

.content-folder {
  gap: 10px;
}

.content-folder__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.04);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.22);
  border-radius: var(--theme-radius-ui);
  transition: var(--theme-transition-base);
}

.content-folder.is-open>.content-folder__toggle {
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.06);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.3);
}

.content-folder__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.content-folder__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border-radius: var(--theme-radius-ui);
}

.content-folder__name {
  color: var(--theme-color-primary);
  font-size: 0.9rem;
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.4;
  word-break: break-word;
}

.content-folder__meta {
  display: block;
  margin-top: 3px;
  color: var(--theme-color-text-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}

.content-folder__caret {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.12);
  border-radius: var(--theme-radius-ui);
  transform: none;
  transition: background-color var(--theme-transition-base),
    color var(--theme-transition-base),
    border-color var(--theme-transition-base);
}

.content-folder__caret>i,
.content-folder__caret .fa,
.content-folder__caret .fa-solid,
.content-folder__caret .fa-regular,
.content-folder__caret .fa-brands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform var(--theme-transition-base);
}

.content-folder.is-open>.content-folder__toggle .content-folder__caret {
  transform: none;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.16);
}

.content-folder.is-open>.content-folder__toggle .content-folder__caret>i,
.content-folder.is-open>.content-folder__toggle .content-folder__caret .fa,
.content-folder.is-open>.content-folder__toggle .content-folder__caret .fa-solid,
.content-folder.is-open>.content-folder__toggle .content-folder__caret .fa-regular,
.content-folder.is-open>.content-folder__toggle .content-folder__caret .fa-brands {
  transform: rotate(180deg);
}

.content-folder__content {
  position: relative;
  margin-left: 14px;
  margin-top: 2px;
  margin-bottom: 8px;
  padding-left: var(--tree-indent);
  --tree-line-height: 0px;
}

.content-folder__content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 0;
  height: var(--tree-line-height);
  border-left: 1px dashed rgb(var(--theme-color-accent-rgb) / 0.62);
  pointer-events: none;
}

.content-folder__files,
.content-folder__tree {
  gap: var(--tree-gap);
}

.content-folder__files>.content-file,
.content-folder__tree>.content-folder {
  position: relative;
  margin-left: 0;
}

.content-folder__files>.content-file::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--tree-arm));
  top: var(--tree-node-center);
  width: var(--tree-arm);
  height: 0;
  border-top: 1px dashed rgb(var(--theme-color-accent-rgb) / 0.62);
  pointer-events: none;
}

.content-folder__tree>.content-folder>.content-folder__toggle {
  position: relative;
}

.content-folder__tree>.content-folder>.content-folder__toggle::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--tree-arm));
  top: var(--tree-node-center);
  width: var(--tree-arm);
  height: 0;
  border-top: 1px dashed rgb(var(--theme-color-accent-rgb) / 0.62);
  pointer-events: none;
}

.content-richtext,
.content-searchable-text {
  color: var(--theme-color-text);
  font-size: 0.94rem;
  line-height: 1.8;
}

.content-richtext :where(p, ul, ol, table) {
  margin-bottom: 1rem;
}

.content-richtext :where(h1, h2, h3, h4, h5, h6) {
  color: var(--theme-color-primary);
  font-weight: 800;
}

.content-richtext a {
  color: var(--theme-color-accent);
  font-weight: var(--theme-font-weight-bold);
}

.content-result-grid {
  margin-top: 0;
}

.content-result-card {
  height: 100%;
  padding: 20px;
  background: rgb(var(--theme-color-surface-rgb) / 0.78);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.16);
  border-radius: var(--theme-radius-ui);
  transition: border-color var(--theme-transition-base),
    box-shadow var(--theme-transition-base),
    background-color var(--theme-transition-base);
}

.content-result-card:hover {
  background: rgb(var(--theme-color-surface-rgb) / 0.94);
  border-color: rgb(var(--theme-color-accent-rgb) / 0.3);
  box-shadow: 0 10px 24px rgb(var(--theme-color-primary-alt-rgb) / 0.06);
}

.content-result-card__media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.content-result-card__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.content-result-card__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.06);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.14);
  border-radius: var(--theme-radius-card);
  font-size: 1.35rem;
}

.content-result-card__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-lead);
  font-weight: 800;
  line-height: 1.3;
  word-break: break-word;
}

.content-result-card__text {
  margin: 8px 0 0;
  color: var(--theme-color-text-soft);
  font-size: 0.86rem;
  line-height: 1.6;
  word-break: break-word;
}

.content-info-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.content-info-item {
  display: flex;
  gap: 12px;
  padding: 13px 14px;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.04);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.14);
  border-radius: var(--theme-radius-ui);
}

.content-info-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-surface-rgb) / 0.8);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.14);
  border-radius: var(--theme-radius-sm);
}

.content-info-item__label {
  display: block;
  margin: 0 0 4px;
  color: var(--theme-color-text-soft);
  font-size: var(--theme-font-size-caption);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-info-item__value {
  display: block;
  color: var(--theme-color-primary);
  font-size: 0.92rem;
  font-weight: var(--theme-font-weight-bold);
  line-height: 1.45;
  word-break: break-word;
}

.content-info-item a.content-info-item__value {
  text-decoration: none !important;
}

.content-info-item a.content-info-item__value:hover {
  color: var(--theme-color-accent);
}

.content-modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
}

.content-modal[hidden] {
  display: none !important;
}

.content-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(var(--theme-color-overlay-deep-rgb) / 0.58);
}

.content-modal__stage {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.content-modal__dialog {
  width: min(100%, 720px);
  overflow: hidden;
  background: var(--theme-color-surface);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgb(var(--theme-color-overlay-deep-rgb) / 0.28);
}

.content-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 18px;
  border-bottom: 1px solid rgb(var(--theme-color-accent-rgb) / 0.14);
}

.content-modal__title {
  margin: 0;
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-lead);
  font-weight: 800;
}

.content-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--theme-color-primary);
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.08);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.2);
  border-radius: var(--theme-radius-ui);
}

.content-modal__body {
  max-height: 70vh;
  padding: 18px;
  overflow: auto;
}

.content-table-wrap {
  overflow-x: auto;
  background: rgb(var(--theme-color-surface-rgb) / 0.78);
  border: 1px solid rgb(var(--theme-color-accent-rgb) / 0.16);
  border-radius: var(--theme-radius-ui);
}

.content-table {
  min-width: 720px;
  margin: 0;
  color: var(--theme-color-text);
}

.content-table thead th {
  color: var(--theme-color-primary);
  font-size: var(--theme-font-size-meta);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.06);
}

.content-table td,
.content-table th {
  vertical-align: middle;
  border-color: rgb(var(--theme-color-accent-rgb) / 0.14);
}

.content-table-cell,
.content-table-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.content-table-cell__icon {
  flex: 0 0 auto;
  color: var(--theme-color-primary);
  line-height: 1;
}

.content-table-cell__label {
  min-width: 0;
  line-height: 1.35;
}

.content-table .content-action,
.content-table-action {
  white-space: normal;
  text-align: left;
}

.content-table-action.content-action {
  min-height: 34px;
}

.content-section__caret {
  transform: none;
  transition: background-color var(--theme-transition-base),
    color var(--theme-transition-base),
    border-color var(--theme-transition-base);
}

.content-section__caret>i,
.content-section__caret .fa,
.content-section__caret .fa-solid,
.content-section__caret .fa-regular,
.content-section__caret .fa-brands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform var(--theme-transition-base);
}

.content-section__toggle[aria-expanded="true"] .content-section__caret {
  transform: none;
  background: rgb(var(--theme-color-primary-alt-rgb) / 0.16);
}

.content-section__toggle[aria-expanded="true"] .content-section__caret>i,
.content-section__toggle[aria-expanded="true"] .content-section__caret .fa,
.content-section__toggle[aria-expanded="true"] .content-section__caret .fa-solid,
.content-section__toggle[aria-expanded="true"] .content-section__caret .fa-regular,
.content-section__toggle[aria-expanded="true"] .content-section__caret .fa-brands {
  transform: rotate(180deg);
}

.content-section__toggle[aria-expanded="false"] .content-section__caret>i,
.content-section__toggle[aria-expanded="false"] .content-section__caret .fa,
.content-section__toggle[aria-expanded="false"] .content-section__caret .fa-solid,
.content-section__toggle[aria-expanded="false"] .content-section__caret .fa-regular,
.content-section__toggle[aria-expanded="false"] .content-section__caret .fa-brands {
  transform: rotate(0deg);
}

#layout-footer {
  padding-top: 60px;
  color: rgb(var(--theme-color-surface-rgb));
  background: linear-gradient(180deg, var(--theme-color-primary), var(--theme-color-primary-strong));
}

.layout-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

#layout-footer .layout-footer__brand-icon {
  color: var(--theme-color-highlight-soft);
  background: rgb(var(--theme-color-surface-rgb) / 0.08);
  font-size: 1.1rem;
}

#layout-footer .layout-footer__brand-title {
  color: var(--theme-color-surface);
  font-size: 1.2rem;
  font-weight: var(--theme-font-weight-bold);
}

#layout-footer .layout-footer__brand-subtitle {
  color: rgb(var(--theme-color-surface-rgb) / 0.5);
  font-size: var(--theme-font-size-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layout-footer__divider {
  width: 36px;
  height: 3px;
  margin: 12px 0;
  border-radius: 2px;
  background: var(--theme-color-accent-strong);
}

.layout-footer__description {
  max-width: 100%;
  margin: 0;
  color: rgb(var(--theme-color-surface-rgb));
  font-size: 0.83rem;
  line-height: 1.7;
}

.layout-footer__title {
  margin-bottom: 18px;
  font-size: var(--theme-font-size-caption);
  font-weight: var(--theme-font-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layout-footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.layout-footer__list li {
  margin-bottom: 10px;
}

.layout-footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(var(--theme-color-surface-rgb) / 0.65);
  font-size: 0.85rem;
  text-decoration: none;
}

.layout-footer__list a i {
  color: rgb(var(--theme-color-surface-rgb));
  width: 14px;
  font-size: var(--theme-font-size-meta);
}

.layout-footer__list a:hover {
  color: rgb(var(--theme-color-surface-rgb));
}

.layout-footer__logo {
  height: 64px;
  filter: brightness(0) invert(1);
}

.layout-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.layout-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--color-text-inverse);
  background: rgb(var(--theme-color-surface-rgb) / 0.10);
  font-size: var(--theme-font-size-base);
  line-height: 0.5rem;
  text-decoration: none;
  border-radius: var(--theme-radius-ui);
}

.layout-footer__social a:hover {
  background: rgba(197, 255, 251, .14);
  color: var(--theme-color-accent-glow);
}

.layout-footer__bottom {
  padding: 18px 0;
  color: rgb(var(--theme-color-surface-rgb) / 0.6);
  font-size: 0.8rem;
  border-top: 1px solid rgb(var(--theme-color-surface-rgb) / 0.10);
}

.layout-footer__bottom a {
  color: rgb(var(--theme-color-surface-rgb) / 0.4);
  text-decoration: none;
}

.layout-footer__bottom a:hover {
  color: var(--theme-color-highlight-soft);
}

#layout-topbar .social-links a,
#layout-topbar .quick-links a {
  background: rgb(var(--theme-color-surface-rgb) / 0.08);
  border-color: rgb(var(--theme-color-surface-rgb) / 0.10);
}

#layout-topbar .social-links a:hover,
#layout-topbar .quick-links a:hover {
  color: var(--theme-color-highlight-soft);
  background: rgb(var(--theme-color-surface-rgb) / 0.12);
  border-color: rgb(var(--theme-color-highlight-rgb) / 0.35);
}

#layout-navigation .navbar-nav>.nav-item>.nav-link:hover,
#layout-navigation .navbar-nav>.nav-item>.nav-link.active,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle:hover,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle.active,
#layout-navigation .navbar-nav>.nav-item.show>.dropdown-toggle {
  color: var(--theme-color-accent-strong) !important;
}

#layout-navigation .navbar-nav>.nav-item>.nav-link::after,
#layout-navigation .navbar-nav>.nav-item>.dropdown-toggle::after {
  background: var(--theme-color-highlight);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 24, 39, .88) 0%, rgba(13, 37, 56, .68) 52%, rgba(0, 122, 133, .38) 100%),
    radial-gradient(circle at 74% 44%, rgba(108, 255, 255, .14), transparent 20rem);
}

.contact-panel .section-label,
.contact-panel .contact-panel__title,
.contact-panel .contact-panel__text {
  color: var(--theme-color-surface);
}

.contact-form__submit:hover {
  color: var(--theme-color-surface);
  background: linear-gradient(180deg, var(--theme-color-accent-soft), var(--theme-color-accent-strong));
}

@media (min-width: 992px) {
  #layout-navigation .dropdown:hover>.dropdown-menu {
    display: block;
  }

  #layout-navigation .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }
}

@media (max-width: 991.98px) {
  #layout-navigation .navbar-brand {
    padding: 10px 0;
    margin-right: 0;
  }

  #layout-navigation .layout-brand img {
    max-height: 54px;
  }

  #layout-navigation .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .service-card {
    height: 240px;
  }
}

@media (max-width: 575.98px) {
  #layout-navigation .layout-brand img {
    max-height: 46px;
  }

  #navigationMobile.offcanvas {
    width: 88vw;
  }

  .announcement-modal__viewport {
    padding: 20px 14px;
  }

  .announcement-modal__dialog {
    max-width: 100%;
  }

  #announcement-modal-close {
    top: -12px;
    right: -6px;
  }

  .announcement-modal__text {
    padding: 22px 18px 18px;
  }

  .announcement-modal__media-inner,
  .announcement-modal__actions {
    padding-left: 14px;
    padding-right: 14px;
  }

  #consent-banner .consent-banner-title {
    font-size: var(--theme-font-size-base);
  }

  #consent-banner .consent-banner-text {
    font-size: 0.9rem;
  }

  #services {
    padding: 56px 0;
  }

  .service-card {
    height: 230px;
  }

  .service-card__content {
    padding: 16px;
  }

  .service-card__title {
    font-size: 0.98rem;
  }

  .service-card__hover-button {
    padding: 11px 18px;
    font-size: var(--theme-font-size-small);
  }

  .contact-form__feedback {
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    padding: 12px;
  }

  .contact-form__feedback-icon {
    width: 36px;
    height: 36px;
  }

  .contact-form__feedback-close {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 576px) {
  #consent-preferences-modal .consent-modal__dialog {
    align-items: center;
  }
}

@media (max-width: 991px) {
  .home-hero {
    padding: 56px 0;
  }

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

  .home-hero__title {
    max-width: none;
  }

  .news-detail-body {
    padding: 22px;
  }

  .news-gallery__image {
    height: 200px;
  }

  .content-page {
    --tree-arm: 14px;
    --tree-indent: 22px;
    --tree-node-center: 28px;
    --tree-gap: 10px;
  }

  .page-search,
  .content-search,
  .news-search {
    grid-template-columns: 1fr;
  }

  .page-search__clear,
  .content-search__clear,
  .news-search__clear {
    width: 100%;
  }

  .content-folder__content::before {
    left: 6px;
  }

  .content-folder__icon {
    width: 38px;
    height: 38px;
  }

  .navbar-nav .nav-link {
    padding: 12px 14px !important;
  }

  .hero-stats {
    gap: 20px;
  }

  .contact-panel,
  .contact-form {
    padding: 30px 24px;
  }
}

@media (max-width: 575px) {
  .home-hero {
    padding: 44px 0;
  }

  .home-hero__panel {
    padding: 18px;
    border-radius: var(--theme-radius-ui);
  }

  .home-hero__panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__btn {
    width: 100%;
  }

  .team-card__content {
    padding: 14px 12px;
  }

  .team-card__identity {
    min-height: 66px;
    padding-left: 96px;
  }

  .team-card__avatar-wrap {
    width: 80px;
    height: 80px;
  }

  .team-card__title {
    font-size: 0.98rem;
  }

  .team-card__value {
    font-size: 0.85rem;
  }

  .content-page {
    --tree-arm: 8px;
    --tree-indent: 10px;
    --tree-node-center: 24px;
    --tree-gap: 6px;
  }

  .content-folder__content {
    margin-left: 4px;
    padding-left: var(--tree-indent);
  }

  .content-folder__content::before {
    left: 2px;
  }

  .content-file,
  .content-folder__toggle {
    padding: 12px;
  }

  .content-section__toggle {
    padding: 10px 0 12px;
  }

  .content-folder__icon {
    width: 32px;
    height: 32px;
  }

  .content-folder__name,
  .content-file__name {
    font-size: 0.85rem;
  }

  .content-file__description {
    font-size: var(--theme-font-size-meta);
  }
}

@media (max-width: 767px) {
  .news-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card__image-wrap {
    height: 200px;
  }

  .news-card__body {
    height: auto;
    padding: 18px 16px;
  }

  .news-detail-body {
    padding: 18px 16px;
  }

  .news-detail-meta {
    gap: 10px 12px;
  }

  .news-gallery__image {
    height: 180px;
  }

  .news-file {
    align-items: flex-start;
    flex-direction: column;
  }

  .agenda-panel {
    padding: 14px;
  }

  .agenda-calendar__title {
    font-size: 1.15rem;
  }

  .agenda-calendar__grid,
  .agenda-calendar__weekdays {
    gap: 5px;
  }

  .agenda-calendar__day {
    min-height: 42px;
    border-radius: 9px;
    font-size: 0.82rem;
  }

  .agenda-calendar__day-number {
    font-size: 0.82rem;
  }

  .agenda-calendar__dot {
    width: 4px;
    height: 4px;
  }

  .agenda-upcoming__title {
    font-size: var(--theme-font-size-lead);
  }

  .agenda-upcoming__card-head {
    align-items: center;
    padding: 10px;
  }

  .agenda-upcoming__details {
    padding: 0 10px 10px 10px;
  }

  .team-card__head {
    min-height: 66px;
    padding: 12px 14px;
  }

  .team-card__badge {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 132px);
    font-size: 0.70rem;
  }

  .team-card__avatar-wrap {
    top: 66px;
    left: 14px;
    width: 90px;
    height: 90px;
  }

  .team-card__content {
    padding: 16px 14px 16px;
  }

  .team-card__identity {
    min-height: 72px;
    padding-left: 108px;
  }

  .team-card__title {
    font-size: 1.08rem;
  }

  .page-breadcrumb-wrap {
    padding-top: 14px;
  }

  .page-breadcrumb {
    padding: 10px 12px;
    border-radius: var(--theme-radius-ui);
  }

  .page-breadcrumb__item {
    font-size: 0.82rem;
  }

  .page-hero,
  .content-hero,
  .news-hero,
  .agenda-hero {
    padding: 40px 0 46px;
  }

  .page-content,
  .content-page,
  .news-page,
  .news-detail-page,
  .agenda-page {
    padding: 36px 0 56px;
  }

  .content-page {
    --tree-arm: 10px;
    --tree-indent: 14px;
    --tree-node-center: 26px;
    --tree-gap: 8px;
  }

  .content-folder__content {
    margin-left: 8px;
    padding-left: var(--tree-indent);
  }

  .content-folder__content::before {
    left: 4px;
  }

  .content-folder__files>.content-file::after,
  .content-folder__tree>.content-folder>.content-folder__toggle::before {
    width: var(--tree-arm);
    left: calc(-1 * var(--tree-arm));
    top: var(--tree-node-center);
  }

  .content-file {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .content-file__actions {
    justify-content: flex-start;
  }

  .content-folder__toggle {
    gap: 10px;
    padding: 11px 12px;
  }

  .content-folder__icon {
    width: 34px;
    height: 34px;
    border-radius: var(--theme-radius-ui);
  }

  .content-folder__name,
  .content-file__name {
    font-size: var(--theme-font-size-small);
    line-height: 1.4;
  }

  .content-file__description {
    font-size: 0.8rem;
  }

  #hero {
    padding: 50px 0 60px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .section-head {
    align-items: flex-start;
  }

  .section-link {
    width: 100%;
  }

  #contact {
    padding: 60px 0;
  }

  .contact-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px) {
  .agenda-layout {
    grid-template-columns: 1fr;
  }

  .agenda-calendar__header,
  .agenda-calendar__legend,
  .agenda-calendar__weekdays,
  .agenda-calendar__grid {
    max-width: 100%;
  }
}