










        /* CSS Variables for theming and consistency */
        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #10b981;
            --accent: #f59e0b;
            --danger: #ef4444;
            --bg: #ffffff;
            --bg-secondary: #f9fafb;
            --text: #1f2937;
            --text-muted: #6b7280;
            --border: #e5e7eb;
            --shadow: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
            --radius: 0.5rem;
            --max-width: 72rem;
            --font-sans: system-ui, -apple-system, sans-serif;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* @media (prefers-color-scheme: dark) {
            :root {
                --bg: #111827;
                --bg-secondary: #1f2937;
                --text: #f9fafb;
                --text-muted: #9ca3af;
                --border: #374151;
                --shadow: 0 1px 3px rgba(0,0,0,0.5);
                --shadow-lg: 0 10px 25px rgba(0,0,0,0.7);
            }
        } */

        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: clamp(16px, 2.5vw, 18px);
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            transition: background var(--transition), color var(--transition);
        }

        img {
            max-width: 800px;
            height: auto;
            margin: 0 auto;
        }

        /* Typography */
        h1 {
            text-align: center;
            font-size: clamp(1.875rem, 5vw, 3rem);
            line-height: 1.2;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            line-height: 1.3;
            margin: 2rem 0 1rem;
            color: var(--primary-dark);
            position: relative;
            padding-left: 1rem;
        }

        /* h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 70%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 2px;
        } */

        h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            margin: 1.5rem 0 0.75rem;
            color: var(--text);
        }

        p {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: var(--text);
        }

        /* Layout containers */
        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        .main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        section {
            margin: 3rem 0;
            padding: 2rem;
            background: var(--bg-secondary);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        section:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Header styling */
        .header-main {
            text-align: center;
           
            
            position: relative;
            overflow: hidden;
        }

        /* header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        } */

        .header-main p {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 48rem;
            margin: 1rem auto;
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            background: var(--bg);
            border-bottom: 1px solid var(--border);
            padding: 1rem;
            margin-bottom: 2rem;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: all var(--transition);
            font-weight: 500;
        }

        nav a:hover, nav a:focus {
            color: var(--primary);
            background: var(--bg-secondary);
            transform: translateY(-2px);
        }

        /* Info boxes */
        .info-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .info-box::before {
  
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 2rem;
            opacity: 0.3;
        }

        /* Lists styling */
        ul, ol {
            margin: 1rem 0 1rem 2rem;
        }

        li {
            margin: 0.5rem 0;
            position: relative;
        }

        /* FAQ Section */
        details {
            margin: 1rem 0;
            padding: 1rem;
            background: var(--bg);
            border-radius: var(--radius);
            border: 2px solid var(--border);
            transition: all var(--transition);
        }

        details:hover {
            border-color: var(--primary);
        }

        summary {
            cursor: pointer;
            font-weight: 600;
            padding: 0.5rem;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        summary::before {
            content: "▶";
            display: inline-block;
            transition: transform var(--transition);
        }

        details[open] summary::before {
            transform: rotate(90deg);
        }

        /* Footer */
        footer {
            margin-top: 4rem;
            padding: 2rem;
            text-align: center;
            background: var(--bg-secondary);
            border-top: 2px solid var(--border);
        }

        footer p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }
        .footer {
            margin-top: 4rem;
            padding: 2rem;
            text-align: center;
            background: var(--bg-secondary);
            border-top: 2px solid var(--border);
        }

        .footer p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Blockquote */
        blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-muted);
        }

        /* Aside */
        aside {
            padding: 1.5rem;
            background: var(--accent);
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
            border-radius: var(--radius);
            margin: 2rem 0;
            border-left: 4px solid var(--accent);
        }

        /* Links */
        a {
            color: var(--primary);
            transition: color var(--transition);
        }

        a:hover, a:focus {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Focus styles for accessibility */
        :focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
            border-radius: 2px;
        }

        /* Mark text */
        mark {
            background: rgba(245, 158, 11, 0.2);
            padding: 0.125rem 0.25rem;
            border-radius: 0.25rem;
            color: inherit;
        }

        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }

        th, td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        th {
            background: var(--bg-secondary);
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Print styles */
        @media print {
            nav, aside, footer {
                display: none;
            }
            
            section {
                page-break-inside: avoid;
            }
        }

        /* Smooth scroll animation */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
    







/* ========================================
   Images Styles for Paris Sportifs Guide
   ======================================== */

/* Base image styles */
.article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 2rem 0;
    display: block;
}

/* Hero banner specific */
.hero-banner {
    position: relative;
    width: 1200px;
    height: 600px;
    margin: 2rem 0 3rem;
    overflow: hidden;
    border-radius: 20px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    
    filter: brightness(0.95);
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* .hero-banner:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
} */

/* Section images container */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 2.5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3px;
}

.image-container img {
    width: 800px;
    height: 450px;
    display: block;
    border-radius: 9px;
    background: white;
}

/* Hover effects */
/* .article-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
} */

/* Loading animation */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 300px;
    border-radius: 12px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Lazy loading fade-in */
.lazy-loaded {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image captions */
.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Responsive images */
@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
        margin: 1rem 0 2rem;
    }
    
    .article-image {
        border-radius: 8px;
        margin: 1.5rem 0;
    }
    
    .image-container {
        margin: 1.5rem -1rem;
        border-radius: 0;
        padding: 2px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 300px;
    }
    
    /* .article-image:hover {
        transform: none;
    } */
}

/* Dark mode support */
/* @media (prefers-color-scheme: dark) {
    .article-image {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        filter: brightness(0.9);
    }
    
    .article-image:hover {
        filter: brightness(1);
        box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
    } */
    
    .image-container {
        background: linear-gradient(135deg, #4c5fd5 0%, #8b5cf6 100%);
    }
    
    .hero-banner img {
        filter: brightness(0.85);
    }


/* Print styles */
@media print {
    .hero-banner,
    .article-image,
    .image-container {
        break-inside: avoid;
        box-shadow: none;
    }
    
    .hero-banner {
        height: auto;
        max-height: 300px;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .article-image,
    .hero-banner img {
        transition: none;
    }
    
    .lazy-loaded {
        animation: none;
    }
    
    .article-image:hover,
    .hero-banner:hover img {
        transform: none;
    }
}

/* Special effects for key images */
.glow-effect {
    position: relative;
}

/* .glow-effect::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2563eb, #10b981, #f59e0b, #2563eb);
    background-size: 400% 400%;
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient-shift 3s ease infinite;
} */

/* .glow-effect:hover::before {
    opacity: 1;
} */

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/*_________________________________________*/
/*_____________________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:1000px; margin: 0 auto; padding: 0;}

.main__container {
	max-width: 1000px;
	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: 0;}

.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;
    justify-content: center;
    align-items: center;
}

.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;
	background: linear-gradient(135deg, #fff, #fff);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.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;
}