@namespace DeepDrftPublic.Client.Controls
@* Shared presentational blurb block for release detail pages. Renders the release's short
Description paragraph in a uniform styled block placed just below the hero/header on every
medium (Session, Mix, Cut). Purely presentational — owns no data fetch and no player wiring.
A null/whitespace Description renders nothing at all: no block, no divider, no whitespace
artifact (the guard lives here so every consumer gets it for free). *@
@if (!string.IsNullOrWhiteSpace(Description))
{
}
@code {
/// The release's short description blurb. Null/whitespace renders nothing.
[Parameter] public string? Description { get; set; }
}