.supervision {
  padding: 60px 0 86px;
  background: linear-gradient(
    to bottom,
    rgb(168 215 255 / 0.05) 0%,
    rgb(255 194 36 / 0.09) 100%
  );
}

.supervision .breadcrumb {
  background: transparent none repeat scroll 0 0;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.supervision .breadcrumb li {
  padding-right: 20px;
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
}

.supervision .breadcrumb li a {
  font-weight: 500;
  font-family: var(--topas63-default);
}

.supervision .breadcrumb li::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  right: 5px;
  position: absolute;
  line-height: 0;
  top: 50%;
  font-size: 14px;
  color: var(--topas63-gray);
  margin-top: 2px;
}

.supervision .breadcrumb > li + li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  padding: 0 5px;
  color: var(--topas63-white);
  display: none;
}

.supervision .breadcrumb li i {
  margin-right: 3px;
  font-weight: 100;
}

.supervision .breadcrumb li:last-child::after {
  display: none;
}

.memo-section {
  background: #FCFCFC;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.memo-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.memo-card:hover {
  transform: translateY(-5px);
}

.memo-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: var(--topas63-base);
}

.memo-card h3 i {
  margin-right: 10px;
}

/* Списки материалов */
.materials-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 15px 0;
}

.materials-badge-list li {
  background: #e9ecef;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #495057;
  border: 1px solid #ced4da;
}

/* Акценты внутри текста */
.memo-card em {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--topas63-gray);
  background: #fdfdfe;
  padding: 10px;
  border-left: 3px solid #dee2e6;
  margin-top: 10px;
}

.important-note {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

.tech-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
  background: #f1f3f5;
  padding: 15px;
  border-radius: 8px;
}

.spec-item b {
  color: var(--topas63-base);
  display: block;
}

.contractor-card {
  border-top: 5px solid var(--topas63-base);
  background-color: var(--topas63-bdr-color);
}

.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 5px;
  color: var(--topas63-base);
  font-weight: bold;
}


@media only screen and (max-width: 767px) {

.supervision {
    padding: 10px 0 10px;
  }

  .memo-section {
    padding-top: 0px !important;
    padding-bottom: 15px !important;
  }

  .memo-title {
    font-size: 1.5rem;
  }
}