/* Общая ширина для обоих блоков */
.snv-page-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Переопределяем ширину инфо-блока */
.snv-layout {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

/* Вывод врачей в ту же ширину */
.doctors-list {
  width: 100%;
  max-width: none;
  margin: 20px 0 0;
  box-sizing: border-box;
}

:root {
  --snv-bg: #f5f7fb;
  --snv-bg-alt: #ffffff;
  --snv-primary: #2459a8;
  --snv-primary-soft: #e1ecff;
  --snv-accent: #2c9c7c;
  --snv-text-main: #22252e;
  --snv-text-muted: #5f6470;
  --snv-border-soft: #d7dde8;
  --snv-radius-lg: 18px;
  --snv-radius-md: 12px;
  --snv-shadow-soft: 0 14px 40px rgba(17, 24, 39, 0.08);
  --snv-shadow-subtle: 0 8px 24px rgba(15, 23, 42, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.snv-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 32px 40px;
}

.snv-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--snv-border-soft);
}

.snv-header-main {
  flex: 1 1 260px;
  min-width: 0;
}

.snv-kicker {
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--snv-accent);
  font-weight: 600;
}

.snv-header-title {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.25;
  color: var(--snv-primary);
  font-weight: 700;
}

.snv-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--snv-text-muted);
}

.snv-header-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 12px;
  color: var(--snv-text-muted);
  background: radial-gradient(circle at 0 0, #e8f4ff, #e4f7f0);
  border: 1px solid rgba(180, 203, 238, 0.9);
}

.snv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--snv-accent);
  box-shadow: 0 0 0 5px rgba(44, 156, 124, 0.15);
}

.snv-highlight-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.snv-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(36, 89, 168, 0.06);
  border: 1px solid rgba(36, 89, 168, 0.18);
  font-size: 11px;
  color: var(--snv-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.snv-highlight::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c9c7c, #27c1a1);
}

.snv-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(236, 244, 255, 0.9);
  border: 1px solid rgba(201, 214, 239, 0.9);
  font-size: 11px;
  color: var(--snv-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.snv-section {
  margin-bottom: 22px;
  padding: 18px 18px 16px;
  border-radius: var(--snv-radius-lg);
  background: var(--snv-bg-alt);
  border: 1px solid rgba(214, 222, 240, 0.9);
  box-shadow: var(--snv-shadow-subtle);
}

.snv-section:nth-child(odd) {
  background: linear-gradient(135deg, #f4f7ff, #fdfdff);
}

.snv-section--lead {
  border-left: 4px solid var(--snv-accent);
}

.snv-title {
  margin: 10px 0 10px;
  padding: 8px 12px 8px 10px;
  border-left: 3px solid var(--snv-primary);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(36, 89, 168, 0.09), rgba(36, 89, 168, 0.02));
  font-size: 20px;
  line-height: 1.3;
  font-weight: 650;
  color: var(--snv-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.snv-title::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background-color: #e8f1ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  box-shadow: inset 0 0 0 1px rgba(36, 89, 168, 0.18);
  background-image: var(--snv-title-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l3 6 6 1-4.5 4.3L17.5 20 12 17l-5.5 3 1-6.7L3 9l6-1 3-6z'/%3E%3C/svg%3E"));
}

.snv-section--equip {
  --snv-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='13' rx='2'/%3E%3Cpath d='M8 20h8'/%3E%3Cpath d='M7 8h10M7 12h6'/%3E%3C/svg%3E");
}

.snv-section--science {
  --snv-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 3h4'/%3E%3Cpath d='M10 3v5l-5 8a4 4 0 0 0 3.4 6h7.2A4 4 0 0 0 19 16l-5-8V3'/%3E%3Cpath d='M8.5 14h7'/%3E%3C/svg%3E");
}

.snv-section--future {
  --snv-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 4v2M20 12h-2M12 20v-2M4 12h2'/%3E%3C/svg%3E");
}

.snv-section--team {
  --snv-title-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Ccircle cx='17' cy='9' r='2'/%3E%3Cpath d='M4 19a5 5 0 0 1 10 0'/%3E%3Cpath d='M14 19a3.5 3.5 0 0 1 7 0'/%3E%3C/svg%3E");
}

.snv-section-intro {
  margin: 0 0 12px;
  padding: 10px 12px 10px 34px;
  border-radius: 10px;
  border: 1px solid rgba(36, 89, 168, 0.2);
  background: linear-gradient(90deg, rgba(225, 236, 255, 0.85), rgba(255, 255, 255, 0.85));
  color: #1f3257;
  font-weight: 600;
  position: relative;
}

.snv-section-intro::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2c9c7c, #27c1a1);
  box-shadow: 0 0 0 4px rgba(44, 156, 124, 0.15);
}

.snv-list-heading {
  margin-bottom: 8px;
  padding: 8px 10px 8px 12px;
  border-left: 3px solid var(--snv-primary);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(225, 236, 255, 0.95), rgba(255, 255, 255, 0.9));
  font-weight: 600;
  color: #1f3257;
}

.snv-section-intro.snv-list-heading {
  padding-left: 34px;
}

.snv-diagnostics-cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.snv-tech-card {
  margin: 0;
  padding: 12px 12px 12px 40px;
  border-radius: 12px;
  border: 1px solid rgba(190, 205, 232, 0.9);
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 4px 14px rgba(26, 57, 99, 0.06);
  position: relative;
}

.snv-tech-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: #e8f1ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  box-shadow: inset 0 0 0 1px rgba(36, 89, 168, 0.22);
}

.snv-tech-card--microscope::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 18h10'/%3E%3Cpath d='M11 5l4 4'/%3E%3Cpath d='M13 3l4 4'/%3E%3Cpath d='M9 8l7 7'/%3E%3Cpath d='M4 18h3'/%3E%3Cpath d='M7 18a5 5 0 0 1 8-4'/%3E%3C/svg%3E");
}

.snv-tech-card--camera::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h16v10H4z'/%3E%3Ccircle cx='12' cy='13' r='3'/%3E%3Cpath d='M9 8l1.2-2h3.6L15 8'/%3E%3C/svg%3E");
}

.snv-tech-card--afs::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M5 20h14'/%3E%3C/svg%3E");
}

.snv-tech-card--pulp::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3c3 0 5 2.2 5 5.2V12a5 5 0 1 1-10 0V8.2C7 5.2 9 3 12 3z'/%3E%3Cpath d='M10 10h4'/%3E%3C/svg%3E");
}

.snv-tech-card--ct::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
}

.snv-tech-card--canals::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3v8a4 4 0 1 0 8 0V3'/%3E%3Cpath d='M6 21h12'/%3E%3C/svg%3E");
}

.snv-tech-card--periodont::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14c2.5-3 5.5-3 8 0s5.5 3 8 0'/%3E%3Cpath d='M4 19c2.5-3 5.5-3 8 0s5.5 3 8 0'/%3E%3C/svg%3E");
}

.snv-equip-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.snv-equip-card {
  margin: 0;
  padding: 12px 12px 12px 42px;
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(190, 205, 232, 0.95);
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  box-shadow: 0 4px 14px rgba(25, 63, 112, 0.06);
}

.snv-equip-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: #e8f1ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  box-shadow: inset 0 0 0 1px rgba(36, 89, 168, 0.22);
}

.snv-equip-card--safe::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.4 8-7 10-3.6-2-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.snv-equip-card--kavo::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='10' rx='2'/%3E%3Cpath d='M8 19h8M10 15v4M14 15v4'/%3E%3C/svg%3E");
}

.snv-equip-card--expert::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.2 4.5L19 8l-3.5 3.4.8 4.6L12 14l-4.3 2 .8-4.6L5 8l4.8-.5L12 3z'/%3E%3C/svg%3E");
}

.snv-equip-card--trust::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232459a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 13a4 4 0 1 1 0-8c2 0 3.2 1.1 4 2.5C12.8 6.1 14 5 16 5a4 4 0 0 1 0 8c-2.3 0-3.8-1.8-4-2.1-.2.3-1.7 2.1-4 2.1z'/%3E%3Cpath d='M4 19c1.7-1.2 3.7-1.8 6-1.8h4c2.3 0 4.3.6 6 1.8'/%3E%3C/svg%3E");
}

.snv-future-flow {
  margin-top: 10px;
  border-left: 2px dashed rgba(36, 89, 168, 0.25);
  padding-left: 14px;
}

.snv-future-step {
  margin: 0 0 10px;
  padding: 11px 12px 11px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  border: 1px solid rgba(190, 205, 232, 0.9);
  box-shadow: 0 4px 12px rgba(25, 63, 112, 0.05);
  position: relative;
}

.snv-future-step::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c9c7c, #27c1a1);
  box-shadow: 0 0 0 4px rgba(44, 156, 124, 0.16);
}

.snv-text {
  margin: 8px 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--snv-text-main);
}

.snv-text--chief {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--snv-radius-md);
  background: radial-gradient(circle at 0 0, #e8f4ff, #e4f7f0);
  border: 1px solid rgba(180, 203, 238, 0.9);
  color: #1f3257;
  font-weight: 600;
}

.snv-list {
  margin: 6px 0 4px;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  color: var(--snv-text-main);
}

.snv-list-item {
  position: relative;
  margin: 5px 0;
  padding-left: 22px;
  line-height: 1.5;
}

.snv-list--chevron .snv-list-item::before {
  content: "—";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--snv-primary);
  font-weight: 600;
}

.snv-list--check .snv-list-item::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 0;
  font-size: 13px;
  color: var(--snv-accent);
  font-weight: 700;
}

.snv-list--dot .snv-list-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--snv-primary);
}

.doctors-list {
  width: calc(100% - 64px);
  max-width: none;
  margin: 22px 32px 0;
  padding: 18px 18px 16px;
  border-radius: var(--snv-radius-lg);
  background: var(--snv-bg-alt);
  border: 1px solid rgba(214, 222, 240, 0.9);
  box-shadow: var(--snv-shadow-subtle);
  box-sizing: border-box;
}

.doctors-list h2 {
  margin: 10px 0 16px;
  padding: 8px 12px 8px 10px;
  border-left: 3px solid var(--snv-primary);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(36, 89, 168, 0.09), rgba(36, 89, 168, 0.02));
  font-size: 20px;
  line-height: 1.3;
  font-weight: 650;
  color: var(--snv-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.doctors-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.doctor-item {
  background: linear-gradient(160deg, #f9fcff 0%, #ffffff 55%, #f5f9ff 100%);
  border: 1px solid rgba(190, 205, 232, 0.95);
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 8px 18px rgba(26, 57, 99, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 14px 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  cursor: pointer;
}

.doctor-item:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 170, 219, 0.95);
  box-shadow: 0 14px 28px rgba(26, 57, 99, 0.16), 0 0 0 3px rgba(36, 89, 168, 0.08);
}

.doctor-item:focus-visible {
  outline: 2px solid rgba(36, 89, 168, 0.55);
  outline-offset: 2px;
}

.doctor-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c9c7c, #2459a8);
}

.doctor-photo {
  width: 132px;
  height: 132px;
  margin-bottom: 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8f0fb;
  background: radial-gradient(circle at 30% 20%, #f7faff, #eef4fd);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(35, 72, 114, 0.12);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.doctor-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-info h3 {
  font-size: 16px;
  font-weight: 650;
  color: #1f3257;
  text-align: center;
  margin: 2px 0 4px;
  line-height: 1.35;
  min-height: 44px;
}

.doctor-name-main {
  display: block;
  white-space: nowrap;
}

.doctor-name-sub {
  display: block;
}

.doctor-meta {
  width: 100%;
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.doctor-position {
  max-width: 100%;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(36, 89, 168, 0.22);
  background: rgba(36, 89, 168, 0.07);
  color: #25476f;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.doctor-exp {
  font-size: 12px;
  color: #5f6470;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 768px) {
  body.snv-page {
    padding: 18px 10px;
  }

  .snv-layout {
    padding: 24px 18px 28px;
    border-radius: 18px;
  }

  .snv-header-title {
    font-size: 22px;
  }

  .snv-highlight-row {
    margin-top: 8px;
  }

  .snv-section {
    padding: 14px 14px 12px;
    border-radius: 14px;
  }

  .snv-diagnostics-cards {
    grid-template-columns: 1fr;
  }

  .snv-equip-grid {
    grid-template-columns: 1fr;
  }

  .snv-future-flow {
    padding-left: 10px;
  }

  .snv-future-step::before {
    left: -18px;
  }

  .doctors-list {
    width: calc(100% - 36px);
    margin: 22px 18px 0;
    padding: 14px 14px 12px;
    border-radius: 14px;
  }

  .doctors-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .doctor-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .doctors-container {
    grid-template-columns: 1fr;
  }

  .doctor-item {
    width: 100%;
  }
}
