:root {
	/* Color scheme */
	--primary-hue: 220;
	--accent-hue: 140;
	
	/* Light theme */
	--bg-primary: hsl(var(--primary-hue), 15%, 98%);
	--bg-secondary: hsl(var(--primary-hue), 20%, 95%);
	--bg-accent: hsl(var(--accent-hue), 60%, 96%);
	--text-primary: hsl(var(--primary-hue), 25%, 15%);
	--text-secondary: hsl(var(--primary-hue), 15%, 35%);
	--text-muted: hsl(var(--primary-hue), 10%, 55%);
	--border-color: hsl(var(--primary-hue), 20%, 88%);
	--accent-color: hsl(var(--accent-hue), 65%, 45%);
	--accent-hover: hsl(var(--accent-hue), 70%, 35%);
	--shadow-light: hsla(var(--primary-hue), 25%, 15%, 0.08);
	--shadow-medium: hsla(var(--primary-hue), 25%, 15%, 0.12);
	
	/* Typography */
	--font-base: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	--font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, monospace;
	
	/* Spacing */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 2rem;
	--space-2xl: 4rem;
	
	/* Border radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	
	/* Transitions */
	--transition-fast: 150ms ease-out;
	--transition-medium: 250ms ease-out;
}

/* Reset and base styles */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--bg-primary);
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: var(--space-md);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(135deg, var(--accent-color), hsl(var(--accent-hue), 65%, 35%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	margin-bottom: var(--space-lg);
}

h2 {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	margin-top: var(--space-2xl);
	margin-bottom: var(--space-lg);
	position: relative;
	padding-bottom: var(--space-sm);
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

h2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), transparent);
	border-radius: var(--radius-sm);
}

h3 {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	margin-top: var(--space-xl);
	color: var(--text-secondary);
}

p {
	margin-bottom: var(--space-md);
	color: var(--text-secondary);
}

strong {
	color: var(--text-primary);
	font-weight: 600;
}

/* Layout */
.container {
	max-width: min(90vw, 1200px);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

main {
	min-height: 100vh;
}

/* Header */
main > header {
	text-align: center;
	padding: var(--space-2xl) 1rem;
	background: 
		radial-gradient(circle at 20% 50%, hsla(var(--accent-hue), 50%, 50%, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, hsla(var(--primary-hue), 50%, 50%, 0.1) 0%, transparent 50%);
}
main > header h1 {
	max-width: 1400px;
	margin: 0 auto;
}
.header-intro {
	max-width: 60ch;
	margin: 0 auto;
	font-size: clamp(1.1rem, 3vw, 1.25rem);
	color: var(--text-secondary);
	font-weight: 400;
}
/* Sections */
section {
	max-width:1000px;
	margin:auto;
	margin-bottom: 48px;
}
section img {
	width:100%;
	height:100%;
	border-radius:var(--radius-md);
}
/* Lists */
ul, ol {
	margin: var(--space-md) 0;
	padding-left: var(--space-lg);
}

li {
	margin-bottom: var(--space-xs);
	color: var(--text-secondary);
}

li::marker {
	color: var(--accent-color);
}

/* Interactive elements */
.calculator-demo {
	background: var(--bg-accent);
	border: 2px solid var(--accent-color);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	margin: var(--space-lg) 0;
	text-align: center;
}

.calculator-form {
	display: grid;
	gap: var(--space-md);
	max-width: 400px;
	margin: 0 auto;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}

label {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.9rem;
}

input {
	width:100%;
	padding: var(--space-sm);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 1rem;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	transition: border-color var(--transition-fast);
}

input:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px hsla(var(--accent-hue), 65%, 45%, 0.1);
}

.btn {
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	color: white;
	border: none;
	padding: var(--space-sm) var(--space-lg);
	border-radius: var(--radius-md);
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn:hover,
.btn:focus {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px hsla(var(--accent-hue), 65%, 45%, 0.3);
}

.result {
	margin-top: var(--space-md);
	padding: var(--space-md);
	background-color: var(--bg-primary);
	border-radius: var(--radius-md);
	border-left: 4px solid var(--accent-color);
}

/* Aside */
aside {
	background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	margin: var(--space-lg) 0;
}

.author-info {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin-bottom: var(--space-md);
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.5rem;
}

/* FAQ */
.faq-item {
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-md);
	overflow: hidden;
}

.faq-question {
	background-color: var(--bg-secondary);
	padding: var(--space-md);
	margin: 0;
	cursor: pointer;
	transition: background-color var(--transition-fast);
}

.faq-question:hover {
	background-color: var(--bg-accent);
}

.faq-answer {
	padding: 0 var(--space-md) var(--space-md);
	color: var(--text-secondary);
}

/* Footer */
footer {
	background-color: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
	padding: var(--space-xl) 0;
	text-align: center;
	color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.container {
		padding: 0 var(--space-sm);
	}
	
	section {
		padding: var(--space-md);
	}
	
	.nav-list {
		gap: var(--space-sm);
	}
	
	.nav-link {
		padding: var(--space-xs);
		font-size: 0.9rem;
	}
}

@media (max-width: 468px) {
	section {
		padding: 0;
	}
}

/* Animation keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section {
	animation: fadeInUp var(--transition-medium) ease-out;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Images Styles */
.hero-image {
	width: 100%;
	max-width: 800px;
	height: auto;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 40px var(--shadow-medium);
	margin: var(--space-xl) 0;
	animation: fadeInUp 0.6s ease-out;
}

.section-icon {
	width: 48px;
	height: 48px;
	display: inline-block;
	margin-right: var(--space-sm);
	vertical-align: middle;
	transition: transform var(--transition-fast);
	filter: drop-shadow(0 2px 4px var(--shadow-light));
}

.section-icon:hover {
	transform: scale(1.1) rotate(5deg);
}

.content-image {
	width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	box-shadow: 0 8px 16px var(--shadow-light);
	margin: var(--space-lg) 0;
	transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.content-image:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px var(--shadow-medium);
}

.site-logo {
	width: 120px;
	border-radius:1rem;
	height: auto;
	display: block;
	margin: 0 auto var(--space-md);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.image-container {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	margin: var(--space-md) 0;
}

.image-container img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform var(--transition-medium);
}

.image-container:hover img {
	transform: scale(1.05);
}

.image-caption {
	text-align: center;
	font-size: 0.9rem;
	color: var(--text-muted);
	font-style: italic;
	margin-top: var(--space-xs);
	margin-bottom: var(--space-md);
}




















/*_________________________________________*/
/*_____________________RO__________________*/
/*_________________________________________*/
:root {
	--bg-color: #ffffff;
	--text-color: #1a1a1a;
	--menu-bg: #f8f9fa;
	--border-color: #dee2e6;
	--shadow-color: rgba(0, 0, 0, 0.1);
	--bg-header-page-other: #1e40af;
}

.site-mm *,footer.ro_obj,header.ro_obj,.home-hero, .ro_obj *::after,.ro_obj *::before,.ro_obj * {position: static;outline: none;list-style: none;margin: 0; padding: 0; background: transparent; border: 0; box-shadow: none;width: auto;height: auto;max-width: none;max-height: none;color: var(--text-color);border-radius:0;}
.ro_obj *::after, .ro_obj *::before, .site-mm *::after, .site-mm *::before {display: none;}
.ro_obj *:hover {outline: none;}
.ro_obj a {padding:8px;}
button{cursor:pointer;}

.container_buk {padding: 0 16px}

main:has(.main__container){max-width:none;padding: 0;}

.main__container {
	max-width: var(--gst-container-width);
	margin: 0 auto clamp(32px, 4.5vw, 64px);
	padding: 0 16px 16px;
}

.main__container :is(li,p){margin-bottom: clamp(8px, 4.5vw, 16px);}
.main__container h1{
	color:var(--gst-text-color);
	background: linear-gradient(135deg, var(--gst-text-color), var(--gst-text-color));
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	}
.main__container h2{margin: clamp(24px, 4vw, 32px) 0 clamp(8px, 4vw, 16px);}
.main__container h3{margin: clamp(16px, 4vw, 24px) 0 clamp(8px, 4vw, 16px);}
.main__container :is(ul, ol){padding-left: 32px;}

.main__container :is( figure, img) {
	max-width: var(--gst-image-container-width);
}
.main__container .ro-page-hero__var1 ~ figure:first-of-type , 
.main__container .ro-page-hero__var1 ~ img:first-of-type, 
.main__container .ro-page-hero__var1 ~ figure:first-of-type img {
	max-width: 100%;
}
.main__container a {color: var(--gst-link-color);}
.main__container a:hover {color: var(--gst-link-hover-color);}

/*______header 2_________*/

.site-mm{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	z-index: 99;
}

.site-mm a{text-decoration: none;font-weight: 700;padding: 8px 16px;}
.site-mm a:hover{color: #fff;background-color: var(--gst-accent-color);}

.site-mm a.logo-image img{max-width: 100%;}

.site-mm a.logo-image,
.header__logo-box a.logo-image{line-height: 1;}

.site-mm.open{transform: translateX(0);}
.site-mm__box{
	background-color: #fff;
	padding: 32px;
	height: 100%;
	width: max-content;
	position: absolute;
	z-index: 2;
	overflow-y: auto;
}
.site-mm__box .sub-menu{
	height: 0;
    overflow: hidden;
	padding-left: 16px;
}
.open-sm.sub-menu{height: auto;}
.site-mm__box li{
	display: grid;
	grid-template-columns: 1fr 16px;
	padding: 8px 0;
	align-items: center;
}
.site-mm__box li button{
	font-weight: 700;
	font-size: 18px;
	color: var(--text-color);
}
li > .sub-menu{
	grid-column: 1/3;
}
.site-mm__dbg{
	position: absolute;
	top: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
	background-color: #0000006e;
}
.site-mm__close{
	font-weight: 500;
	font-size: 20px;
	padding: 8px;
}
header.ro_obj button.header__open-mm{
	padding: 8px 12px;
    font-size: 16px;
    border-radius: 10px;
	  display: flex;
    gap: 8px;
}

.site-mm__box-top{
	padding: 8px 0;
	display: flex;
	justify-content: end; 
}
.site-mm__nav-box{display: flex;gap: 32px;}
.site-mm__nav-logo-box{display: flex; justify-content: center;}
.site-mm__nav-logo-box a:hover{background-color: transparent;}

.header__menu-list{display: block;}

/*______header 1_________*/
header.ro_obj, header.ro_obj *{display: block;}

.ro_obj .header__cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding: 16px 8px;
	margin: 0 auto;
}
.header__logo-box :is(a, span) {
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
    line-height: 1;
    text-align: left;
}

.header__logo-box img {
	max-width: 100%;
}
.header__logo-box-mob {
	display: none;
	margin: 16px;
}
.header__logo-box-mob img {
	max-width: 64px;
}

.ro_obj .burger-btn {
	display: none;
}

.mega_menu_burger-btn,
.ro_obj .burger-btn {
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 12px;
	border-radius: 4px;
	transition: background-color 0.3s;
}
.mega_menu_burger-btn span,
.ro_obj .burger-btn span {
	width: 25px;
	height: 2px;
	margin: 3px 0;
	transition: 0.3s;
	transform-origin: center;
}

header.ro_obj .menu {
	top: 0;
	z-index: 999;
	display: flex;
	flex-direction: column;
}

.ro_obj .menu-item-has-children {
	position: relative;
}

.ro_obj .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--menu-bg);
	min-width: 220px;
	box-shadow: 0 5px 15px var(--shadow-color);
	border-radius: 0 0 6px 6px;
	list-style: none;
	z-index: 1000;
	border: 1px solid var(--border-color);
	border-top: none;
}

.ro_obj .sub-menu .sub-menu {
	left: 100%;
	top: 0;
	border-top: 1px solid var(--border-color);
	border-radius: 6px;
}

.ro_obj .menu-item-has-children:hover > .sub-menu {
	display: block;
	animation: fadeInUp 0.3s ease;
}

.ro_obj .sub-menu a {
	text-decoration: none;
	padding: 12px 20px;
	display: block;
	transition: background-color 0.3s;
	font-size: 0.95em;
}

.ro_obj .sub-menu a:hover {
	background-color: var(--hover-color);
}


.ro_obj .submenu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	padding: 5px 12px;
	position: absolute;
	right: 10px;
	top: 24px;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	z-index: 2;
}

.ro_obj .close-btn {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 5px;
	z-index: 1002;
	transition: color 0.3s;
}

@media (max-width: 720px) {
    .main__container :is( figure, img) {
        margin: 32px 0;
        max-width: none;
    }
}

@media (max-width: 1000px) {
	.ro_obj.header {
		padding-top: 8px;
		margin-bottom:  16px;
	}

	.ro_obj .header__cont {
		padding: 16px 8px;
	}

	.header__logo-box-mob {
		display: flex;
		justify-content: center;
	}

	.ro_obj .burger-btn {
		display: flex;
	}

	.ro_obj .submenu-toggle {
		display: block;
	}
}

@media (max-width: 480px) {
	.ro_obj .menu {
		width: 100%;
		max-width: none;
	}

	.header__logo-box :is(a, span) {
		font-size: 20px;
	}
	.header__open-mm{padding:16px;}
	.header__open-mm .header__open-mm-text{ display: none;}
	.header__open-mm{font-size: 24px; font-weight: 700;}

	.ro_obj .burger-btn {
		padding: 10px;
	}

	.ro_obj .menu__list > li > a {
		padding: 12px 15px;
	}
}


/*____________breadcrumbs___________*/


.ro_obj .breadcrumbs-site ul{
	display: flex;
	flex-wrap: wrap;
	gap: 2px 8px;
	padding-left: 0;
}

.ro_obj .breadcrumbs-site a {
	text-decoration: none;
	padding: 0;
}
.ro_obj .breadcrumbs-site a:hover{
	color: var(--text-color);
	background-color: transparent;
	transform: none;
}

.ro_obj .breadcrumbs-site li{
	display: flex;
}
.ro_obj .breadcrumbs-site :is(span, a){
	font-size: 16px;
	font-weight: 400;
}

.ro_obj .breadcrumbs-site span{color: var(--gst-text-color);}
.ro_obj .breadcrumbs-site a span {color: var(--gst-link-color);}
.ro_obj .breadcrumbs-site a:hover span  {color: var(--gst-link-hover-color);}

.ro_obj .breadcrumbs-site li::after {
	display: inline;
	content: var(--gst-breadcrumb-separator);
	padding-left: 8px;
  color: var(--gst-text-color);
}

.ro_obj .breadcrumbs-site li:last-child:after {
	content: "";
	padding-left: 0;
}



/*____________footer___________*/

.ro_obj.footer {
	background-color: var(--footer-bg-color);
	color: var(--footer-text-color);
	border-top: solid var(--footer-border-top-size) var(--footer-border-top-color);
}
.ro_obj.footer a {
	color: var(--footer-link-color);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
}
.ro_obj.footer .footer_cont_copyright{
	background-color: var(--footer_copyright_bg_color);
	padding: 16px 8px;
	display: flex;
	justify-content: center;

}
.ro_obj.footer .footer_cont_copyright :is(p, small, a, time){
	color: var(--footer_copyright_text_color);
	font-size: 14px;
}

.footer_cont {
	max-width: var(--gst-container-width);
	margin: 0 auto;
	padding: 48px 8px 32px;
}
.footer_var_3 .footer_cont,
.footer_var_1 .footer_cont {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 32px;
}
.footer_var_3 .footer_cont .footer_cont_nav{
    order: 2;
}
.footer_var_3 .menu-footer-container ul,
.footer_var_1 .menu-footer-container ul{
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.footer_var_3 .footer_cont_text *,
.footer_var_1 .footer_cont_text *{
	text-align: center;
	margin-bottom: 8px;
	color: var(--footer-text-color);
}

.footer_var_2 .footer_cont{
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 32px;
}
.footer_var_2 :is(p,a,li,ul){
	text-align: left;
	margin-bottom: 8px;
}

@media (max-width: 600px) {
	.footer_var_2 .footer_cont{
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
	}
}


/*_________404___________*/
.page-404 {margin: 64px 0;}
.page-404 p{text-align: center;}
.page-404__num {font-size: 20vw;line-height: 1;color: var(--gst-accent-color);}
.page-404 a {color: var(--gst-link-color);}
.page-404 a:hover {color: var(--gst-link-hover-color);}

/*_________header-page-other___________*/

.ro_obj.header-page-other {
	padding-left: 8px;
	padding-right: 8px;
	padding-top: clamp(16px, 3vw, 128px);
	padding-bottom: clamp(16px, 3vw, 128px);
	display: flex;
	flex-direction: column;
	background-color: var(--gst-accent-color);
	align-items: center;
	margin-bottom: 48px;
}

.ro_obj.header-page-other .breadcrumbs-site ul {margin-top: 0;}
.ro_obj.header-page-other :is(a, p, h1, span), 
.ro_obj.header-page-other .breadcrumbs-site a span,
.ro_obj.header-page-other li::after {
	color: #fff;
}
.ro_obj.header-page-other :is( p, h1) {
	margin: 0 auto;
	padding: 8px;
	max-width: 1000px;
}
.ro_obj.header-page-other h1 {
	background: linear-gradient(135deg, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*_________wp-block-image___________*/
.wp-block-image {
	max-width: 100%;
	height: auto;
	margin: 24px 0;
}

.wp-block-image :is(img, figcaption) {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--gst-image-border-radius);
}

.wp-element-caption{
	font-size: 14px;
	margin-top: 8px;
	font-style: italic;
}

.nav-toc{margin: 32px 0; padding-left: 32px;display: block;}
.nav-toc :is(ul, ol){padding-left: 32px;}
.nav-toc li {margin-bottom: 8px;}
.nav-toc li a {color: var(--gst-link-color);text-decoration: none;font-weight: 400;font-size: 16px;white-space: normal;}
.nav-toc li a:hover {color: var(--gst-link-hover-color);text-decoration:underline;}

@media (max-width: 600px) {
	.nav-toc{padding-left: 0;}
	.nav-toc :is(ul, ol){padding-left: 20px;}
}

div.matches a, div.tc-brand-list a{color: #fff;}
div.matches a:hover, div.tc-brand-list a:hover{color: #fff;}

.ro-page-hero{margin-top: clamp(16px, 4vw, 48px);}
.ro-page-hero__var2{
	background-position: center;
	background-size: cover;
    background-repeat: no-repeat;
	}
.ro-page-hero.ro-page-hero__var2{border-radius: 20px;}
.ro_obj.ro-page-hero.ro-page-hero__var2 .ro-page-hero__cont :is(h1, a, span){
	color: #fff;
}
.ro-page-hero__var2 .ro-page-hero__cont{
	padding: clamp(48px, 20vw, 256px) clamp(16px, 4vw, 48px);
	background-color: #000000a2;
	border-radius: 20px;
	}
.ro-page-hero__var2 .ro-page-hero__cont > * {
	max-width: 800px;
	margin-bottom: 16px;
}

.ro-page-hero__var2 .ro-page-hero__cont h1{
	font-size: clamp(24px, 4.5vw, 36px);
}

.ro_obj.ro-page-hero.ro-page-hero__var2 .ro-page-hero__cont .breadcrumbs-site li::after {
  	color: #fff;
}

/*_________________page-data______________________*/

.page-data{
    padding: 32px 0;
    border-top: 1px #636e72 solid;
}
.page-data div > * {
    font-weight: 700;
    margin-right: 8px;
    color: var(--gst-text-color)
}

.page-data__top strong,
.page-data__bottom strong{
    color: var(--gst-accent-color);
}

.page-data__top{
    display: flex;
    gap: 0 16px;
    border: none;
    padding: 16px 0 0;
    flex-wrap: wrap;
}
.page-data__top div :is(time, span){
    font-weight: 400;
}
.ro-page-hero__var2 .page-data div > * {
    color: #fff;
}