body.download-docs-page,
.download-docs-shell {
  background: #fff;
}

.download-docs-main {
  padding: 0 15px calc(24px + var(--safe-bottom));
  background: #fff;
}

.download-switch {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.download-switch__item {
  position: relative;
  padding: 14px 0 11px;
  color: #161616;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  white-space: nowrap;
}

.download-switch__item.is-active {
  color: #0c8454;
}

.download-switch__item.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #0c8454;
  transform: translateX(-50%);
}

.download-docs-list {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.download-docs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 0 16px;
  border-radius: 8px;
  background: #f6f7f9;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
}

.download-docs-item__title {
  min-width: 0;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.download-docs-item__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: #0c8454;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
}

.download-docs-item__icon {
  position: relative;
  width: 18px;
  height: 20px;
  background: linear-gradient(currentColor, currentColor) center bottom / 16px 2px no-repeat;
}

.download-docs-item__icon::before,
.download-docs-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.download-docs-item__icon::before {
  top: 1px;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: currentColor;
}

.download-docs-item__icon::after {
  bottom: 4px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 359px) {
  .download-switch {
    gap: 18px;
  }

  .download-switch__item {
    font-size: 15px;
  }

  .download-docs-item {
    min-height: 70px;
    padding: 0 14px;
  }

  .download-docs-item__title,
  .download-docs-item__action {
    font-size: 14px;
  }
}
