.bp-sidebar {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: #fafbff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}
.bp-sidebar__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
}
.bp-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1.3;
}
.bp-sidebar__nav a::before {
  content: "";
  width: 3px;
  height: 14px;
  background: transparent;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.bp-sidebar__nav a:hover {
  color: #0A118E;
  background: #fff;
}
.bp-sidebar__nav a.active {
  color: #0A118E;
  background: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(10, 17, 142, 0.06);
}
.bp-sidebar__nav a.active::before {
  background: #FF8717;
}

@media (max-width: 1024px) {
  .bp-sidebar {
    position: static;
    order: -1;
    margin-bottom: 24px;
  }
  .bp-sidebar__nav {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .bp-sidebar__nav::-webkit-scrollbar {
    display: none;
  }
  .bp-sidebar__nav a {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 14px;
  }
  .bp-sidebar__nav a::before {
    display: none;
  }
}
.bp-section {
  padding-top: 24px;
  padding-bottom: 56px;
  scroll-margin-top: 100px;
}
.bp-section:first-child {
  padding-top: 0;
}
.bp-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.bp-section__icon {
  width: 44px;
  height: 44px;
  background: #f1f2fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bp-section__icon svg {
  width: 22px;
  height: 22px;
  color: #0A118E;
}
.bp-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0A118E;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .bp-section h2 {
    font-size: 18px;
  }
}
.bp-section p {
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.bp-section p:last-child {
  margin-bottom: 0;
}
.bp-section__content {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  grid-template-columns: repeat(min(var(--card-cols, 1), 3), 1fr);
  counter-reset: prg-card-num;
}
.bp-section__content > :not(.prg-card) {
  grid-column: 1/-1;
}

@media (max-width: 768px) {
  .bp-section__content {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=bolum_section.css.map */
