/* Кастомные стили для определенных страниц */
/* Стили для страниц Аккредитации */

#center-akkreditation {
  --blue-main: #005BA9;
  --blue-dark: #022B87;
  --red-main: #c10010;
  --gray-bg: #F5F6F8;
  --gray-border: #D1D5DB;
}

/* =========================
   HEADER
========================= */

#center-akkreditation .site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

#center-akkreditation .site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#center-akkreditation .site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#center-akkreditation .site-header__logo-emblem {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

#center-akkreditation .site-header__logo-text {
  display: flex;
  flex-direction: column;
}

#center-akkreditation .site-header__logo-title {
  font-family: "Unbounded-Black", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#center-akkreditation .site-header__logo-sub {
  font-size: 10px;
  color: #555;
  line-height: 1.4;
  max-width: 300px;
}

#center-akkreditation .site-header__nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

#center-akkreditation .site-header__nav a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

#center-akkreditation .site-header__nav a:hover {
  color: var(--blue-main);
}

/* =========================
   BREADCRUMB
========================= */

#center-akkreditation .breadcrumb {
  background: var(--page-bg, #EAECF0);
  border-bottom: 1px solid var(--gray-border);
}

#center-akkreditation .breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

#center-akkreditation .breadcrumb__inner a {
  color: var(--blue-main);
  text-decoration: none;
}

#center-akkreditation .breadcrumb__inner a:hover {
  text-decoration: underline;
}

#center-akkreditation .breadcrumb__sep {
  color: #bbb;
}

/* =========================
   PAGE LAYOUT
========================= */

#center-akkreditation .page-outer {
  background: var(--page-bg, #EAECF0);
  padding: 32px 24px 60px;
}

#center-akkreditation .page-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

/* =========================
   SIDEBAR
========================= */

#center-akkreditation .sidebar {
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#center-akkreditation .sidebar__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  border-left: 3px solid transparent;
  font-size: 12px;
  line-height: 1.35;
  color: #444;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    color 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: "Unbounded", sans-serif;
}

#center-akkreditation .sidebar__item:hover {
  border-left-color: var(--blue-main);
  color: var(--blue-main);
  box-shadow: 0 2px 8px rgba(0, 91, 169, 0.12);
}

#center-akkreditation .sidebar__item.active {
  border-left-color: var(--blue-main);
  color: var(--blue-main);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 91, 169, 0.12);
}

#center-akkreditation .sidebar__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #EEF4FB;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#center-akkreditation .sidebar__item.active .sidebar__icon {
  background: #D6E8F8;
}

#center-akkreditation .sidebar__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--blue-main);
}

/* =========================
   CONTENT
========================= */

#center-akkreditation .content-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 40px 48px 48px;
}

#center-akkreditation .content h1 {
  font-family: "Unbounded-Black", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #374151;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}

#center-akkreditation .content h2 {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  margin: 36px 0 14px;
}

#center-akkreditation .content p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;

  /* Не дает браузеру оставлять короткие
     одиночные слова в конце абзаца */
  text-wrap: pretty;
}

/* =========================
   CONTENT BLOCKS
========================= */

#center-akkreditation .intro-box {
  border-left: 4px solid var(--blue-main);
  background: #f0f6ff;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

#center-akkreditation .steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  counter-reset: step-counter;
}

#center-akkreditation .steps-list li {
  counter-increment: step-counter;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}

#center-akkreditation .steps-list li::before {
  content: counter(step-counter) ".";
  font-weight: 700;
  color: var(--blue-main);
  padding-top: 1px;
}

#center-akkreditation .note-box {
  border-left: 4px solid #FDB90F;
  background: #FFFBEA;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

#center-akkreditation .note-box__num {
  font-weight: 800;
  color: #c89000;
  font-size: 18px;
  line-height: 1;
  padding-top: 2px;
}

#center-akkreditation .warn-box {
  border-left: 4px solid var(--red-main);
  background: #FFF0F1;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.65;
  color: #444;
  margin: 20px 0;
}

/* =========================
   RESULT CARDS
========================= */

#center-akkreditation .result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 28px;
}

#center-akkreditation .result-card {
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 20px;
}

#center-akkreditation .result-card--pass {
  border-top: 4px solid #16a34a;
}

#center-akkreditation .result-card--fail {
  border-top: 4px solid var(--red-main);
}

#center-akkreditation .result-card__pct {
  font-family: "Unbounded-SemiBold", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

#center-akkreditation .result-card--pass .result-card__pct {
  color: #16a34a;
}

#center-akkreditation .result-card--fail .result-card__pct {
  color: var(--red-main);
}

#center-akkreditation .result-card__status {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

#center-akkreditation .result-card--pass .result-card__status {
  color: #16a34a;
}

#center-akkreditation .result-card--fail .result-card__status {
  color: var(--red-main);
}

#center-akkreditation .result-card__desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* =========================
   TABLE
========================= */

#center-akkreditation .registry-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

#center-akkreditation .registry-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

#center-akkreditation .registry-table caption {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  caption-side: top;
  color: #1a1a1a;
}

#center-akkreditation .registry-table th {
  background: var(--blue-main);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}

#center-akkreditation .registry-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray-border);
  color: #333;
}

#center-akkreditation .registry-table tr:nth-child(even) td {
  background: var(--gray-bg);
}

/* =========================
   DOCUMENTS
========================= */

#center-akkreditation .docs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#center-akkreditation .docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 13px;
}

#center-akkreditation .docs-list li:last-child {
  border-bottom: none;
}

#center-akkreditation .docs-list__num {
  min-width: 22px;
  font-weight: 700;
  color: var(--blue-main);
}

#center-akkreditation .docs-list a {
  color: var(--blue-main);
  text-decoration: underline;
}

#center-akkreditation .docs-list a:hover {
  color: var(--blue-dark);
}

#center-akkreditation .section-divider {
  border: none;
  border-top: 2px solid var(--gray-border);
  margin: 32px 0;
}

/* =========================
   FOOTER
========================= */

#center-akkreditation .site-footer {
  background: #1a2540;
  color: #fff;
  padding: 60px 0 40px;
}

#center-akkreditation .site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#center-akkreditation .site-footer__title {
  font-family: "Unbounded-Black", sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#center-akkreditation .site-footer__title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

#center-akkreditation .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

#center-akkreditation .site-footer__block-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  font-weight: 600;
}

#center-akkreditation .site-footer__block-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

#center-akkreditation .site-footer__note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* =========================
   PHOTOS
========================= */

#center-akkreditation .content-photo {
  width: 100%;
  margin-top: 24px;
}

#center-akkreditation .content-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Фото справа */
#center-akkreditation .content-photo--float {
  float: right;
  width: 340px;
  margin: 0 0 16px 24px;
}

/* Фото слева */
#center-akkreditation .content-photo--float-left {
  float: left;
  width: 340px;
  margin: 0 24px 16px 0;
}

#center-akkreditation .clear-float {
  clear: both;
}

/* =========================
   SWIPER / OTHER
========================= */

@media (min-width: 340px) and (max-width: 479px) {
  #center-akkreditation .swiper-wrapper-medicine {
    height: 370px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  #center-akkreditation .swiper-wrapper-medicine {
    height: 260px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #center-akkreditation .swiper-wrapper-medicine {
    height: 670px;
  }
}

@media (min-width: 1024px) {
  #center-akkreditation .swiper-wrapper-medicine {
    height: 500px;
  }

  #center-akkreditation .card-cover {
    margin: 53px;
  }
}

@media (min-width: 1280px) {
  #center-akkreditation .swiper-wrapper-medicine {
    height: 580px;
  }
}

@media (min-width: 1535px) {
  #center-akkreditation .swiper-wrapper-medicine {
    height: 618px;
  }
}

#center-akkreditation .right-100px {
  right: 100px;
}

#center-akkreditation .glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#center-akkreditation .bg-gradient-custom {
  background-image: linear-gradient(to right, #4989EA, #013182);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  #center-akkreditation .page-layout {
    grid-template-columns: 1fr;
  }

  #center-akkreditation .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  #center-akkreditation .sidebar__item {
    width: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 700px) {
  #center-akkreditation .content-card {
    padding: 24px 16px;
  }

  #center-akkreditation .content-photo--float,
  #center-akkreditation .content-photo--float-left {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media (max-width: 600px) {
  #center-akkreditation .result-cards {
    grid-template-columns: 1fr;
  }

  #center-akkreditation .sidebar {
    grid-template-columns: 1fr;
  }
}




/* Кастомный стиль первичной аккредитации */

/* =========================
   SWIPER / MISC (блок 1)
========================= */

@media (min-width: 340px) and (max-width: 479px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 370px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 260px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 670px;
  }
}

@media (min-width: 1024px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 500px;
  }

  #center-akkreditation-1 .card-cover {
    margin: 53px;
  }
}

@media (min-width: 1280px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 580px;
  }
}

@media (min-width: 1535px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 618px;
  }
}

#center-akkreditation-1 .right-100px {
  right: 100px;
}

@media (max-width: 900px) {
  #center-akkreditation-1 .page-layout {
    grid-template-columns: 1fr;
  }

  #center-akkreditation-1 .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  #center-akkreditation-1 .sidebar__item {
    width: auto;
    box-sizing: border-box;
  }
}

#center-akkreditation-1 .glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#center-akkreditation-1 .bg-gradient-custom {
  background-image: linear-gradient(to right, #4989EA, #013182);
}

/* =========================
   SCOPE ROOT
   Переменные и общие стили обёртки
   вместо :root и body
========================= */

#center-akkreditation-1 {
  --blue-main: #005BA9;
  --blue-dark: #022B87;
  --red-main: #c10010;
  --gray-bg: #F5F6F8;
  --gray-border: #D1D5DB;

  font-family: "Inter-Regular", sans-serif;
  color: #000000;
  /* background: var(--page-bg, #EAECF0); */
  margin: 0;
}

/* HEADER */
#center-akkreditation-1 .site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

#center-akkreditation-1 .site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#center-akkreditation-1 .site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#center-akkreditation-1 .site-header__logo-emblem {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

#center-akkreditation-1 .site-header__logo-text {
  display: flex;
  flex-direction: column;
}

#center-akkreditation-1 .site-header__logo-title {
  font-family: "Unbounded-Black", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#center-akkreditation-1 .site-header__logo-sub {
  font-size: 10px;
  color: #555;
  line-height: 1.4;
  max-width: 300px;
}

#center-akkreditation-1 .site-header__nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

#center-akkreditation-1 .site-header__nav a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

#center-akkreditation-1 .site-header__nav a:hover {
  color: var(--blue-main);
}

/* BREADCRUMB */
#center-akkreditation-1 .breadcrumb {
  background: var(--page-bg, #EAECF0);
  border-bottom: 1px solid var(--gray-border);
}

#center-akkreditation-1 .breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

#center-akkreditation-1 .breadcrumb__inner a {
  color: var(--blue-main);
  text-decoration: none;
}

#center-akkreditation-1 .breadcrumb__inner a:hover {
  text-decoration: underline;
}

#center-akkreditation-1 .breadcrumb__sep {
  color: #bbb;
}

/* ── ВНЕШНЯЯ ОБЁРТКА со страничным фоном ── */
#center-akkreditation-1 .page-outer {
  background: var(--page-bg, #EAECF0);
  padding: 32px 24px 60px;
}

/* ── ВНУТРЕННЯЯ РАСКЛАДКА ── */
#center-akkreditation-1 .page-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

/* Дубликат медиа-запроса из исходника (см. примечание) */
@media (max-width: 900px) {
  #center-akkreditation-1 .page-layout {
    grid-template-columns: 1fr;
  }

  #center-akkreditation-1 .sidebar {
    display: none;
  }
}

/* ── САЙДБАР ── */
#center-akkreditation-1 .sidebar {
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#center-akkreditation-1 .sidebar__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 14px 14px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  border-left: 3px solid transparent;
  font-size: 12px;
  line-height: 1.35;
  color: #444;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: "Unbounded", sans-serif;
}

#center-akkreditation-1 .sidebar__item:hover {
  border-left-color: var(--blue-main);
  color: var(--blue-main);
  box-shadow: 0 2px 8px rgba(0, 91, 169, 0.12);
}

#center-akkreditation-1 .sidebar__item.active {
  border-left-color: var(--blue-main);
  color: var(--blue-main);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 91, 169, 0.12);
}

/* Иконка — квадратик с фоном */
#center-akkreditation-1 .sidebar__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #EEF4FB;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#center-akkreditation-1 .sidebar__item.active .sidebar__icon {
  background: #D6E8F8;
}

#center-akkreditation-1 .sidebar__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--blue-main);
}

/* ── БЕЛЫЙ «ЛИСТ» контента ── */
#center-akkreditation-1 .content-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 40px 48px 48px;
}

@media (max-width: 700px) {
  #center-akkreditation-1 .content-card {
    padding: 24px 16px;
  }
}

/* CONTENT */
#center-akkreditation-1 .content h1 {
  font-family: "Unbounded-black", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #374151;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}

#center-akkreditation-1 .content h2 {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  margin: 36px 0 14px;
}

#center-akkreditation-1 .content p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}

#center-akkreditation-1 .intro-box {
  border-left: 4px solid var(--blue-main);
  background: #f0f6ff;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

#center-akkreditation-1 .steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  counter-reset: step-counter;
}

#center-akkreditation-1 .steps-list li {
  counter-increment: step-counter;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}

#center-akkreditation-1 .steps-list li::before {
  content: counter(step-counter) ".";
  font-weight: 700;
  color: var(--blue-main);
  padding-top: 1px;
}

#center-akkreditation-1 .note-box {
  border-left: 4px solid #FDB90F;
  background: #FFFBEA;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

#center-akkreditation-1 .note-box__num {
  font-weight: 800;
  color: #c89000;
  font-size: 18px;
  line-height: 1;
  padding-top: 2px;
}

#center-akkreditation-1 .warn-box {
  border-left: 4px solid var(--red-main);
  background: #FFF0F1;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.65;
  color: #444;
  margin: 20px 0;
}

#center-akkreditation-1 .result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 28px;
}

@media (max-width: 600px) {
  #center-akkreditation-1 .result-cards {
    grid-template-columns: 1fr;
  }
}

#center-akkreditation-1 .result-card {
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 20px;
}

#center-akkreditation-1 .result-card--pass {
  border-top: 4px solid #16a34a;
}

#center-akkreditation-1 .result-card--fail {
  border-top: 4px solid var(--red-main);
}

#center-akkreditation-1 .result-card__pct {
  font-family: "Unbounded-SemiBold", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

#center-akkreditation-1 .result-card--pass .result-card__pct {
  color: #16a34a;
}

#center-akkreditation-1 .result-card--fail .result-card__pct {
  color: var(--red-main);
}

#center-akkreditation-1 .result-card__status {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

#center-akkreditation-1 .result-card--pass .result-card__status {
  color: #16a34a;
}

#center-akkreditation-1 .result-card--fail .result-card__status {
  color: var(--red-main);
}

#center-akkreditation-1 .result-card__desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

#center-akkreditation-1 .registry-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

#center-akkreditation-1 .registry-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

#center-akkreditation-1 .registry-table caption {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  caption-side: top;
  color: #1a1a1a;
}

#center-akkreditation-1 .registry-table th {
  background: var(--blue-main);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}

#center-akkreditation-1 .registry-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray-border);
  color: #333;
}

#center-akkreditation-1 .registry-table tr:nth-child(even) td {
  background: var(--gray-bg);
}

#center-akkreditation-1 .docs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#center-akkreditation-1 .docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 13px;
}

#center-akkreditation-1 .docs-list li:last-child {
  border-bottom: none;
}

#center-akkreditation-1 .docs-list__num {
  min-width: 22px;
  font-weight: 700;
  color: var(--blue-main);
}

#center-akkreditation-1 .docs-list a {
  color: var(--blue-main);
  text-decoration: underline;
}

#center-akkreditation-1 .docs-list a:hover {
  color: var(--blue-dark);
}

#center-akkreditation-1 .section-divider {
  border: none;
  border-top: 2px solid var(--gray-border);
  margin: 32px 0;
}

/* FOOTER */
#center-akkreditation-1 .site-footer {
  background: #1a2540;
  color: #fff;
  padding: 60px 0 40px;
}

#center-akkreditation-1 .site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#center-akkreditation-1 .site-footer__title {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#center-akkreditation-1 .site-footer__title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

#center-akkreditation-1 .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

#center-akkreditation-1 .site-footer__block-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  font-weight: 600;
}

#center-akkreditation-1 .site-footer__block-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

#center-akkreditation-1 .site-footer__note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* Скролл для таблиц реестра на мобильных экранах */
@media (max-width: 440px) {
  #center-akkreditation-1 .registry-table-wrap {
    width: 330px;
  }
}

/* ===== Аккордеон (docs-section) — первый блок ===== */
#center-akkreditation-1 .docs-section {
  margin: 14px 0;
}

#center-akkreditation-1 .docs-section__title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark, #022B87);
  background: var(--gray-bg, #F5F6F8);
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}

#center-akkreditation-1 .docs-section__title::after {
  content: "+";
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

#center-akkreditation-1 .docs-section.is-open .docs-section__title::after {
  content: "–";
}

#center-akkreditation-1 .docs-section__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

#center-akkreditation-1 .docs-section.is-open .docs-section__body {
  max-height: none;
}

/* ===== Аккордеон (docs-section) — дубликат из исходника (см. примечание) ===== */
#center-akkreditation-1 .docs-section__title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#center-akkreditation-1 .docs-section__title::after {
  content: "+";
  font-size: 18px;
  transition: transform 0.2s ease;
}

#center-akkreditation-1 .docs-section.is-open .docs-section__title::after {
  content: "–";
}

#center-akkreditation-1 .docs-section__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

#center-akkreditation-1 .docs-section.is-open .docs-section__body {
  max-height: none;
}



/* Первичная специализированная аккредитация/

/* =========================
   SWIPER / MISC (блок 1)
========================= */

@media (min-width: 340px) and (max-width: 479px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 370px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 260px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 670px;
  }
}

@media (min-width: 1024px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 500px;
  }

  #center-akkreditation-1 .card-cover {
    margin: 53px;
  }
}

@media (min-width: 1280px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 580px;
  }
}

@media (min-width: 1535px) {
  #center-akkreditation-1 .swiper-wrapper-medicine {
    height: 618px;
  }
}

#center-akkreditation-1 .right-100px {
  right: 100px;
}

@media (max-width: 900px) {
  #center-akkreditation-1 .page-layout {
    grid-template-columns: 1fr;
  }

  #center-akkreditation-1 .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  #center-akkreditation-1 .sidebar__item {
    width: auto;
    box-sizing: border-box;
  }
}

#center-akkreditation-1 .glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#center-akkreditation-1 .bg-gradient-custom {
  background-image: linear-gradient(to right, #4989EA, #013182);
}

/* =========================
   SCOPE ROOT
   Переменные и общие стили обёртки
   вместо :root и body
========================= */

#center-akkreditation-1 {
  --blue-main: #005BA9;
  --blue-dark: #022B87;
  --red-main: #c10010;
  --gray-bg: #F5F6F8;
  --gray-border: #D1D5DB;

  font-family: "Inter-Regular", sans-serif;
  color: #1a1a1a;
  /* background: var(--page-bg, #EAECF0); */
  margin: 0;
}

/* HEADER */
#center-akkreditation-1 .site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

#center-akkreditation-1 .site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#center-akkreditation-1 .site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#center-akkreditation-1 .site-header__logo-title {
  font-family: "Unbounded-Black", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#center-akkreditation-1 .site-header__logo-sub {
  font-size: 10px;
  color: #555;
  line-height: 1.4;
  max-width: 300px;
}

#center-akkreditation-1 .site-header__nav {
  display: flex;
  gap: 24px;
}

#center-akkreditation-1 .site-header__nav a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

#center-akkreditation-1 .site-header__nav a:hover {
  color: var(--blue-main);
}

/* BREADCRUMB */
#center-akkreditation-1 .breadcrumb {
  background: var(--page-bg, #EAECF0);
  border-bottom: 1px solid var(--gray-border);
}

#center-akkreditation-1 .breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

#center-akkreditation-1 .breadcrumb__inner a {
  color: var(--blue-main);
  text-decoration: none;
}

#center-akkreditation-1 .breadcrumb__sep {
  color: #bbb;
}

/* ── ВНЕШНЯЯ ОБЁРТКА со страничным фоном ── */
#center-akkreditation-1 .page-outer {
  background: var(--page-bg, #EAECF0);
  padding: 32px 24px 60px;
}

/* ── ВНУТРЕННЯЯ РАСКЛАДКА ── */
#center-akkreditation-1 .page-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

/* Дубликат медиа-запроса из исходника (см. примечание) */
@media (max-width: 900px) {
  #center-akkreditation-1 .page-layout {
    grid-template-columns: 1fr;
  }

  #center-akkreditation-1 .sidebar {
    display: none;
  }
}

/* ── САЙДБАР ── */
#center-akkreditation-1 .sidebar {
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#center-akkreditation-1 .sidebar__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  border-left: 3px solid transparent;
  font-size: 12px;
  line-height: 1.35;
  color: #444;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: "Unbounded", sans-serif;
}

#center-akkreditation-1 .sidebar__item:hover {
  border-left-color: var(--blue-main);
  color: var(--blue-main);
  box-shadow: 0 2px 8px rgba(0, 91, 169, 0.12);
}

#center-akkreditation-1 .sidebar__item.active {
  border-left-color: var(--blue-main);
  color: var(--blue-main);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 91, 169, 0.12);
}

#center-akkreditation-1 .sidebar__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #EEF4FB;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#center-akkreditation-1 .sidebar__item.active .sidebar__icon {
  background: #D6E8F8;
}

#center-akkreditation-1 .sidebar__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--blue-main);
}

/* ── БЕЛЫЙ «ЛИСТ» контента ── */
#center-akkreditation-1 .content-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 40px 48px 48px;
}

@media (max-width: 700px) {
  #center-akkreditation-1 .content-card {
    padding: 24px 16px;
  }
}

/* CONTENT */
#center-akkreditation-1 .content h1 {
  font-family: "Unbounded-Black", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #374151;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}

#center-akkreditation-1 .content h2 {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  margin: 36px 0 14px;
}

#center-akkreditation-1 .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 24px 0 10px;
}

#center-akkreditation-1 .content p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}

#center-akkreditation-1 .intro-box {
  border-left: 4px solid var(--blue-main);
  background: #f0f6ff;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

#center-akkreditation-1 .note-box {
  border-left: 4px solid #FDB90F;
  background: #FFFBEA;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

#center-akkreditation-1 .note-box__num {
  font-weight: 800;
  color: #c89000;
  font-size: 18px;
  line-height: 1;
  padding-top: 2px;
}

#center-akkreditation-1 .warn-box {
  border: 1px solid var(--red-main);
  background: #FFF0F1;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.65;
  color: #444;
  margin: 20px 0;
}

#center-akkreditation-1 .warn-box strong {
  color: var(--red-main);
}

#center-akkreditation-1 .important-box {
  border: 1px solid #FDB90F;
  background: #FFFBEA;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 20px 0;
}

#center-akkreditation-1 .important-box strong {
  color: #c89000;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

#center-akkreditation-1 .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

#center-akkreditation-1 .bullet-list li {
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--gray-border);
}

#center-akkreditation-1 .bullet-list li:last-child {
  border-bottom: none;
}

#center-akkreditation-1 .bullet-list li::before {
  content: "•";
  color: var(--blue-main);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

#center-akkreditation-1 .docs-section {
  margin: 14px 0;
}

#center-akkreditation-1 .docs-list a {
  color: var(--blue-main);
  text-decoration: underline;
}

#center-akkreditation-1 .docs-list a:hover {
  color: var(--blue-dark);
}

/* Дубликат .docs-section__title из исходника (см. примечание) — базовая версия */
#center-akkreditation-1 .docs-section__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--gray-bg);
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}

#center-akkreditation-1 .section-divider {
  border: none;
  border-top: 2px solid var(--gray-border);
  margin: 32px 0;
}

#center-akkreditation-1 .abc-item {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.7;
}

#center-akkreditation-1 .abc-item__label {
  font-weight: 700;
  color: var(--blue-main);
  margin-bottom: 4px;
}

/* FOOTER */
#center-akkreditation-1 .site-footer {
  background: #1a2540;
  color: #fff;
  padding: 60px 0 40px;
}

#center-akkreditation-1 .site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#center-akkreditation-1 .site-footer__title {
  font-family: "Unbounded-Black", sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#center-akkreditation-1 .site-footer__title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

#center-akkreditation-1 .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

#center-akkreditation-1 .site-footer__block-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  font-weight: 600;
}

#center-akkreditation-1 .site-footer__block-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

#center-akkreditation-1 .site-footer__note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* Стили только для механики аккордеона — дубликат .docs-section__title (см. примечание) */
#center-akkreditation-1 .docs-section__title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#center-akkreditation-1 .docs-section__title::after {
  content: "+";
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

#center-akkreditation-1 .docs-section.is-open .docs-section__title::after {
  content: "–";
}

#center-akkreditation-1 .docs-section__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

#center-akkreditation-1 .docs-section.is-open .docs-section__body {
  max-height: none;
}