.raskr-docs {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 0 0 2rem;
}
.raskr-docs .raskr-docs__title {
  margin: 0 0 1.25rem;
  font-size: clamp(18px, 1.5vw, 22px) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.25;
}
.raskr-docs__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.raskr-docs__tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-width: 5.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: #e8e8e8;
  color: #6b6b6b;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  transition: background .2s ease, color .2s ease;
}
.raskr-docs__tab:hover {
  background: #dcdcdc;
}
.raskr-docs__tab.is-active {
  background: #1e3a6e;
  color: #fff;
}
.raskr-docs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.raskr-docs__link {
  color: #2f6fed;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.raskr-docs__link:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .raskr-docs {
    gap: 2.5rem;
  }
  .raskr-docs__tab {
    min-width: 4.5rem;
    padding: 0.55rem 1.1rem;
  }
}
