@media all {

  .ce-type-dw_downloads {

    & > .ce-header ,
    & > .ce-nested-container {
      max-width: var(--max-inline-width);
      margin-inline: auto;
      width: 100%; 
      grid-column: 3 / -3;      
    }

    & > .ce-nested-container {
      display: grid;
      grid-gap: var(--page-grid-gap);

      & > .ce-element-nested {

        & > .ce-inner {
          display: flex;
          gap: var(--element-gap-text);

          & > .ce-download-icon {
            order: 0;
            font-size: 2em;
            line-height: 1.25;
            color: var(--current-link-color);
          }

          & > .ce-text {
            align-self: center;
            order: 1;
          }

        }

      }

    }

  }

}