/* feature-download (P-A) — locked/unlocked VIP download box.
   PLACEHOLDER styling: layout/colour come from the theme utilities + CSS vars the box markup uses
   (bg-soft/50, rounded-xl, p-6, btn, btn-edge, text-lead/subs). Refine to the designer's post
   design when it lands. Self-contained: only .sw-dl* selectors (no collisions). */

.sw-dl { margin-top: 1.5rem; }

/* Fallback box surface in case the arbitrary `bg-soft/50` utility is not compiled in main.css. */
.sw-dl:not([class*="bg-"]) { background: rgb( var( --soft ) / 0.5 ); border-radius: 0.75rem; padding: 1.5rem; }

.sw-dl .sw-dl-links { display: flex; flex-direction: column; gap: 0.75rem; }
.sw-dl .sw-dl-link { width: 100%; }

.sw-dl .sw-dl-unlock[disabled] { opacity: 0.6; cursor: default; }
.sw-dl .sw-dl-msg { margin: 0; color: #f87171; }
