/* ---------------------------- success stories color themes ---------------------------- */
/*
  Colours are applied per item from successstories.js based on the data-color value.
  This file consumes the --ss-border-color custom property that the script sets on
  each themed item and applies it to the content-right border.
*/

.is--story-themed {
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.is--story-themed .success-story-item-content-right {
  border-color: var(--ss-border-color, currentColor);
  transition: border-color 0.3s ease;
}
