/* 下载资料 — 行式列表（非卡片网格） */
.downloads-list-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3.5rem, 7vw, 5rem);
}

.downloads-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border, #e4e7ed);
}

.downloads-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--color-border, #e4e7ed);
}

.downloads-list__main {
  min-width: 0;
  flex: 1;
}

.downloads-list__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text, #303133);
}

.downloads-list__desc {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-secondary, #606266);
}

.downloads-list__meta {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--color-text-muted, #909399);
}

.downloads-list__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1.15rem;
  background: var(--color-primary, #2b7cd3);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md, 4px);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.downloads-list__btn:hover {
  filter: brightness(1.05);
}

.downloads-list__empty {
  margin: 2rem 0;
  text-align: center;
  color: var(--color-text-muted, #909399);
}

@media (max-width: 640px) {
  .downloads-list__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .downloads-list__btn {
    align-self: stretch;
    text-align: center;
  }
}
