.about-downloads {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

.about-dl__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.about-dl__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(12, 20, 27, 0.1);
  box-shadow: 0 10px 26px rgba(12, 20, 27, 0.06);
}

.about-dl__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.about-dl__textwrap {
  min-width: 0;
}

.about-dl__ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(31, 58, 102, 0.1);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.about-dl__name {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #0c141b;
  white-space: nowrap;
  overflow: hidden;
  width: 400px;
  text-overflow: ellipsis;
}

.about-dl__meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(12, 20, 27, 0.72);
}

.about-dl__action {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(31, 58, 102, 0.26);
  padding-bottom: 1px;
  white-space: nowrap;
}

.about-dl__action:hover {
  border-bottom-color: rgba(31, 58, 102, 0.55);
}

.about-dl__aside {
  background: #ffffff;
  border: 1px solid rgba(12, 20, 27, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(12, 20, 27, 0.06);
  padding: 18px;
}

.about-dl__aside-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: #0c141b;
}

.about-dl__aside-desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 20, 27, 0.76);
}

@media (max-width: 980px) {
  .about-downloads {
    grid-template-columns: 1fr;
  }
}
