.dux-download-box {
  clear: both;
  margin: 34px 0 8px;
  color: var(--tb--base);
}

.article-content .dux-download-heading {
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--tb--line);
  font-size: 20px;
  font-weight: 700;
}

.article-content .dux-download-description {
  margin: 0 0 14px;
  color: var(--tb--base);
  font-weight: 600;
}

.dux-download-list {
  overflow: hidden;
  border: 1px solid var(--tb--line);
  border-radius: 6px;
  background: var(--tb--tint);
}

.dux-download-row-front {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--tb--line);
}

.dux-download-row-front:last-child {
  border-bottom: 0;
}

.dux-download-provider {
  font-weight: 700;
  color: var(--tb--base);
}

.article-content .dux-download-link {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--tb--main);
  text-decoration: none;
}

.article-content .dux-download-link:hover {
  text-decoration: underline;
}

.dux-download-password {
  color: var(--tb--gray);
  white-space: nowrap;
}

.article-content .dux-download-password code {
  top: 0;
  margin: 0 0 0 4px;
  padding: 3px 8px;
  color: var(--tb--main);
  opacity: 1;
}

.dux-download-locked {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 12px 16px;
  border-left: 4px solid var(--tb--main);
  border-radius: 4px;
  background: var(--tb--tint);
}

.article-content .dux-download-locked a {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 4px;
  color: #fff;
  background: var(--tb--main);
  text-decoration: none;
}

.article-content .dux-download-locked a:hover {
  opacity: .88;
}

@media (max-width: 600px) {
  .dux-download-box {
    margin-top: 26px;
  }

  .dux-download-row-front {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 6px 10px;
    padding: 11px 12px;
  }

  .dux-download-password {
    grid-column: 2;
    white-space: normal;
  }

  .dux-download-locked {
    align-items: flex-start;
    flex-direction: column;
  }
}
