section.checkerboard.checkerboard--rtl div.checkerboards .card--checkerboard:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; 
}

section.checkerboard.checkerboard--rtl div.checkerboards .card--checkerboard:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

section.checkerboard.checkerboard--rtl div.checkerboards .card--checkerboard:nth-child(odd) .card__media {
    padding-left: 1.875rem;
    padding-right: 0;
}


section.checkerboard.checkerboard--rtl div.checkerboards .card--checkerboard:nth-child(even) .card__media {
    padding-right: 1.875rem;
    padding-left: 0;
}


section.checkerboard.checkerboard--rtl div.checkerboards .card--checkerboard:nth-child(even) .card__content {
      padding-right: 1.875rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

section.checkerboard.checkerboard--rtl div.checkerboards .card--checkerboard:nth-child(odd) .card__content {
      padding-right: 1.875rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}