.docs__catalog {
  columns: 2;
  column-gap: 160px;
}

.docs-sections__wrapper {
  display: inline-block;
  min-width: 540px;
  flex-direction: column;
  margin-bottom: 30px;
}

.docs-sections__top {
  padding: 10px;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  border-radius: var(--small-border-radius);
  background: var(--color-primary);
}

.docs-sections__title {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.docs-sections__list {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.docs-sections__morebtn-wrapper {
  display: flex;
  justify-content: flex-end;
}

.docs-sections__morebtn {
  /* text-decoration-style: dashed; */
  text-decoration: none;
  color: black;
  transition: all 500ms ease;
}

.docs-sections__morebtn:hover {
  color: #007bff;
  opacity: 1;
}

.docs__item-link {
  text-decoration: none;
  color: black;
}

@media (max-width: 1250px) {
  .docs__catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }

  .docs-sections__wrapper {
    min-width: 100%;
  }
}

@media (max-width: 735px) {
  .docs__catalog {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 580px) {
  .docs-sections__wrapper {
    min-width: 100%;
  }
}

@media (max-width: 460px) {
  .docs-sections__title {
    font-size: 17px;
  }
  /* .docs-sections__list {
		display: none;
	} */
  .docs-sections__wrapper {
    margin: 0px;
  }
  .docs__catalog {
    gap: 35px;
  }
  /* .docs-sections__morebtn-wrapper {
		display: none;
	} */
}
.all-documents__btn-wrapper {
  display: flex;
  justify-content: center;
}
