/**
* Theme Name: Pure Skin Child
* Description: This is a child theme of Pure Skin.
* Author: <a href="https://cmsmasters.net/">cmsmasters</a>
* Template: pure-skin
* Version: 1.0.0
* Tested up to: 6.6
* Requires PHP: 7.4
* License:
* License URI:
* Text Domain: pure-skin-child
* Copyright: cmsmasters 2025 / All Rights Reserved
*/

/*
 * Parent sets `body, html { overflow-x: hidden }`.
 * CSS then computes overflow-y to `auto` on BOTH, which creates a double scrollbar.
 * Keep horizontal clipping, but only scroll the document (html).
 */
html {
	overflow-x: hidden;
	overflow-y: auto;
}

body,
body#cmsmasters_body {
	overflow-x: hidden;
	overflow-y: hidden;
}

/*
 * English meta uses prefix "by Name". TRP translates "by" -> "tarafından",
 * which must follow the name in Turkish: "emre tarafından".
 */
html[lang^="tr"] .cmsmasters-meta-data__item__inner:has(> .content-before) {
	display: inline-flex;
	flex-direction: row-reverse;
	align-items: baseline;
	gap: 0.35em;
}

