/* Zero vertical spacing in sections */
.download-block { margin: 0 !important; padding: 0 !important; }
.download-block h2 { 
  text-align: center; 
  font-size: clamp(24px, 3vw, 40px); 
  margin: 0 0 12px 0 !important;
}

/* RTL list layout */
.download-block.rtl .download-list { list-style: none; margin: 0; padding: 0; }
.download-block.rtl .download-list li {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  align-items: center; padding: 12px 0;   /* compact rows */
  border-bottom: 1px solid rgba(0,0,0,.08);
  direction: rtl;
}
.download-block.rtl .title { text-align: right; }

/* Smaller, regular-weight, black download button */
.download-block .btn {
  display: inline-block; padding: 6px 12px;
  border: 1px solid #000; border-radius: 16px;
  text-decoration: none; font-weight: 400; font-size: 14px;
  color: #000; background: transparent; line-height: 1;
}
.download-block .btn:hover { background: #f2f2f2; color: #000; }

@media (max-width: 768px) {
  .download-block.rtl .download-list li { grid-template-columns: 1fr; gap: 8px; }
  .download-block .btn { justify-self: start; }
}
