SystemVerilog Clocking Block Timing Behavior with cycle delays - Need Clarification

I’m trying to understand the timing and expected output for the first two lines in the initial block. Specifically, what should I expect in terms of timing for
cb.rst <= 0; and ##2cb.rst <= 1;? How does the clocking block influence these delays?

module test_clocking_ex;
  
  bit clk;
  logic rst;

  always #5 clk = ~clk;

  default clocking cb @(posedge clk);
    default input #1step output #5;
    output rst;
  endclocking


  initial begin
       cb.rst <= 0; //at 1st  posedge clk then drive @ +5ns
    ##2cb.rst <= 1; //w8 2x   posedge clk then drive @ +5ns
    ##3cb.rst <= 0; //w8 3x   posedge clk then drive @ +5ns
    ##5cb.rst <= 1; //w8 5x   posedge clk then drive @ +5ns
  end

  
  initial begin
    $dumpfile("waveform.vcd");
    $dumpvars;
    #180 $stop;
  end
  
endmodule


14.4 Input and output skews
Input (or inout) signals are sampled at the designated clock event. If an input skew is specified, then the
signal is sampled at skew time units before the clock event. Similarly, output (or inout) signals are driven
skew simulation time units after the corresponding clock event.

In assertions, 16.5.1 Sampling
If a variable is an input variable of a clocking block, the variable shall be sampled by the clocking
block with #1step sampling.

Your #5 is confusing because it represents 1/2 the clock period. I changed it to 2

default clocking cb @(posedge clk);
    default input #1step output #2;
    output rst;
  endclocking


  initial begin
       cb.rst <= 0; 
//at  posedge clk from initial drive 0 @ +2ns
    ##2cb.rst <= 1;
// AT 2nd posedge clk from initial drive 1 @+2ns
// NOTE 
// This is different than 
initial begin
      ##1 cb.rst <= 0; 
//at  posedge clk from initial drive 0 @ +2ns/
      ##2cb.rst <= 1;
// AT 2nd posedge clk after that  drive 1 @+2ns

   end

Link to the list of papers and books that I wrote, many are now donated.

Clarification on usage of clocking block for inputs.
1800 says: 14.4 Input and output skews
Input (or inout) signals are sampled at the designated clock event. If an input skew is specified, then the signal is sampled at skew time units before the clock event.
Similarly, output (or inout) signals are driven
skew simulation time units after the corresponding clock event.
In assertions, 16.5.1 Sampling If a variable is an input variable of a clocking block, the variable shall be sampled by the clocking block with #1step sampling.
Question: Why would you want to sample the data x ns before the clocking event?
From an 1800 viewpoint, it is to provide flexibility in verification. For example, if a data point has a setup time of 2ns, the data must be stable 2ns before clocking it into a register. For verification, one could envision comparing a clocked output with data sampled 2ns before the clock edge and a clocked output with data sampled at the clock edge.
Usage example:

default clocking cb @(posedge clk);
    default input #0 output #4 ;
    input d1;
    input #2 d2; //  default to be 2 instead of 0
    output reset;
  endclocking
always @(cb or negedge reset)
    begin
      if (!reset)
        begin
          q1 <= 0;
          q2 <= 0;
        end
      else
        begin
          q1 <= d2; //  q1 is sampled at posedge clk
          q2 <= cb.d2; // d2 is sampled 2ns prior to posedge clk
        end
    end

(4) - EDA Playground code
EPWave Waveform Viewer wave