/* ============================================================
   DOWNLOADS — surgical technique / PDF library listing.
   ============================================================ */

.download-group { margin-bottom: 56px; }
.download-group:last-child { margin-bottom: 0; }

.download-group-heading {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.download-list { list-style: none; }

.download-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: padding-left 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.download-item a:hover { padding-left: 8px; color: var(--navy); }

.download-name { font-size: 17px; line-height: 1.4; }
.download-name .reg { color: var(--navy); }

.download-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.download-pill {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 8px;
}
.download-arrow { color: var(--cyan); font-size: 15px; }

.download-intro { font-size: 16px; color: var(--mid); line-height: 1.7; max-width: 620px; }
