.downloads-widget h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 20px;
}
.downloads-widget .download-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.downloads-widget .download-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
}
.downloads-widget .download-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.downloads-widget .download-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  background: var(--red-light);
  color: var(--red);
}
.downloads-widget .download-item__icon--doc {
  background: var(--blue-100);
  color: var(--blue-900);
}
.downloads-widget .download-item__icon--pdf {
  background: var(--red-light);
  color: var(--red);
}
.downloads-widget .download-item__icon--xls {
  background: var(--green-light);
  color: var(--green);
}
.downloads-widget .download-item__icon--zip {
  background: var(--gold-50);
  color: var(--gold-dark);
}
.downloads-widget .download-item__info {
  flex: 1;
  min-width: 0;
}
.downloads-widget .download-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
.downloads-widget .download-item__size {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}
.downloads-widget .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--blue-900);
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition);
}
.downloads-widget .download-btn:hover {
  background: rgba(1, 73, 142, 0.08);
}