.downloads-section { padding: 28px 0 40px; }
.container { width: min(90%, var(--container-width, 960px)); margin: 0 auto; }
.section-title { margin: 0 0 14px; font-size: 1.6rem; font-weight: 800; }

.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 768px) {
  .downloads-grid { grid-template-columns: 1fr; }
}

.doc-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.doc-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: #f4f7ff; display: grid; place-items: center;
  border: 1px solid #e6ecff;
}
.doc-icon svg { width: 22px; height: 22px; }

.doc-meta h3 {
  margin: 0 0 4px; font-size: 1rem; font-weight: 700; color: #1a1a1a;
}
.doc-meta p {
  margin: 0; font-size: .92rem; color: #555;
}
.doc-sub {
  margin-top: 2px;
  font-size: .85rem; color: #666;
}

.doc-actions a.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 8px; text-decoration: none;
  background: var(--uni-blue); color: #fff; font-weight: 600;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.doc-actions a.btn-download:hover {
  background: #0055c7; transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* „Új” jelölő (opcionális) */
.badge-new {
  display: inline-block; margin-left: 8px;
  background: #e6f2ff; color: var(--uni-blue);
  border: 1px solid #cfe4ff; border-radius: 999px;
  padding: 2px 8px; font-size: .75rem; font-weight: 700;
}