.section-downloads {
  background: #f8fafc;
}

.section-downloads .section-header {
  margin-bottom: 1.25rem;
}

.downloads-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.downloads-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.downloads-item {
  background: #fff;
  border: 1px solid rgba(13, 53, 105, 0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 30px rgba(13, 53, 105, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: flex-start;
}

.downloads-item__body {
  flex: 1;
}

.downloads-item__body h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #0d3569;
}

.downloads-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.25rem 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5b6d86;
}

.downloads-item__meta span {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 53, 105, 0.15);
  background: rgba(13, 53, 105, 0.05);
}

.downloads-item__summary {
  margin: 0;
  color: #1f2a44;
  line-height: 1.5;
}

.downloads-item__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.downloads-item__actions .btn {
  min-width: 160px;
}

.downloads-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.downloads-form .btn {
  width: 100%;
}

.downloads-form textarea {
  min-height: 90px;
}

@media (max-width: 960px) {
  .downloads-item {
    flex-direction: column;
  }

  .downloads-item__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .downloads-item__actions .btn {
    min-width: 120px;
  }
}
