.contentVerticalGallery  {
    --background:  transparent;     /* var(--logo-color-1-light); */  /* background color */
}

/* Darstellungsvariante odd/even */
.contentVerticalGallery .item .picture { order: 3; flex-basis: 45%; }
.contentVerticalGallery .item .separator { order: 2; flex-basis: 10%; }
.contentVerticalGallery .item .title { order: 1; flex-basis: 45%; box-sizing: border-box; justify-content: flex-end; }
.contentVerticalGallery .item .separator:before { width: 40px; height: 40px; }
.contentVerticalGallery .item:nth-child(odd) .picture { order: 1; }
.contentVerticalGallery .item:nth-child(odd) .separator { order: 2; }
.contentVerticalGallery .item:nth-child(odd) .title { order: 3; justify-content: flex-start; }
.contentVerticalGallery .item:nth-child(odd) .picture .text { order: 1; }
.contentVerticalGallery .item:nth-child(odd) .picture a { order: 2; }
@media all and (max-width: 700px) {
    .contentVerticalGallery .item .title { font-size: 14px; }
    .contentVerticalGallery .item .separator { flex-basis: 10%; }
    .contentVerticalGallery .item .separator:before { width: 40px; height: 40px; }
    .contentVerticalGallery .item .picture .text { font-size: 14px; }
}
@media all and (max-width: 400px) {
    .contentVerticalGallery .item .separator:before { width: 20px; height: 20px; }
    .contentVerticalGallery .item .picture { flex-wrap: wrap; }
    .contentVerticalGallery .item .picture > * { flex-basis: 100%; hyphens: auto; }
    .contentVerticalGallery .item .picture a { order: 1 !important; }
    .contentVerticalGallery .item .picture .text { order: 2 !important; }
}
    
