/**
 * Someh 11.09 - video gallery play icon entity repair.
 *
 * The affected article uses an HTML entity inside CSS generated content.
 * CSS requires a CSS escape, so force the correct play glyph while cached
 * article HTML is being refreshed.
 */
.video-section .video-title::before {
	content: "\25B6" !important;
	direction: ltr;
	unicode-bidi: isolate;
}
