:root {
    --primary: #1a5f2a;
    --primary-light: #2d8a3e;
    --primary-dark: #0f3d1a;
    --secondary: #c41e3a;
    --accent: #f4a020;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Header */
.hero-heme-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: white;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-heme-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-heme-page h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-heme-page p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}




/* Main Content */
.main_cont {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

/* Sections */
section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

section h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    line-height: 1.3;
}

section h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

section p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    text-align: justify;
    hyphens: auto;
}

section ul, section ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

section li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.6;
}

section li::marker {
    color: var(--primary);
}

/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.danger-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-left: 4px solid var(--secondary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

/* FAQ Section */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    margin-top: 0;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 2rem 1.5rem;
}

footer p {
    opacity: 0.9;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

footer .disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 2rem 1rem;
    }

    nav.toc ul {
        gap: 0.25rem 0.5rem;
    }

    nav.toc a {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    section {
        padding: 1.5rem;
        border-radius: 8px;
    }

    section h2 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    nav.toc {
        position: static;
    }
    
    section {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* ===========================================
   IMAGES STYLES - Scommesse Sportive Italia
   =========================================== */

/* ===== GENERAL IMAGE STYLES ===== */
.article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s ease;
}

.article-image:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(26, 95, 42, 0.25);
}

/* ===== IMAGE CONTAINER ===== */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 2rem 0;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 95, 42, 0.05) 0%, 
        transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover::after {
    opacity: 1;
}

/* ===== HERO IMAGE (Header) ===== */
.hero-image-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(15, 61, 26, 0.7) 0%, 
        transparent 100%);
    pointer-events: none;
}

/* ===== SECTION IMAGES ===== */
.section-image-wrapper {
    position: relative;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.section-image-wrapper:hover .section-image {
    transform: scale(1.02);
}

/* Image caption */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, 
        rgba(26, 95, 42, 0.95) 0%, 
        rgba(26, 95, 42, 0.8) 70%,
        transparent 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.section-image-wrapper:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== INFOGRAPHIC IMAGES ===== */
.infographic-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--border, #e5e7eb);
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.15);
}

/* ===== FEATURED IMAGE (Full Width) ===== */
.featured-image-container {
    position: relative;
    width: calc(100% + 5rem);
    margin: 2.5rem -2.5rem;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.featured-image-container:hover .featured-image {
    transform: scale(1.015);
}

/* ===== DECORATIVE ELEMENTS ===== */
.image-decorator {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        var(--primary, #1a5f2a) 0%, 
        var(--primary-light, #2d8a3e) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.image-decorator.top-left {
    top: -20px;
    left: -20px;
}

.image-decorator.bottom-right {
    bottom: -20px;
    right: -20px;
}

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

/* ===== FADE-IN ANIMATION ===== */
.image-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== ZOOM EFFECT ON CLICK ===== */
.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .article-image,
    .section-image-wrapper,
    .image-container {
        margin: 1.5rem 0;
        border-radius: 8px;
    }

    .hero-image-container {
        margin: 1.5rem auto 0;
        border-radius: 12px;
    }

    .featured-image-container {
        width: calc(100% + 3rem);
        margin: 1.5rem -1.5rem;
    }

    .infographic-image {
        max-width: 100%;
        margin: 1.5rem 0;
    }

    .image-caption {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .article-image:hover,
    .section-image-wrapper:hover .section-image {
        transform: none;
    }
}

@media (max-width: 480px) {
    .main_cont {
        padding: 0;
    }
    .hero-image-container {
        border-radius: 8px;
    }

    .section-image-wrapper,
    .article-image {
        border-radius: 6px;
    }

    .image-caption {
        position: relative;
        background: var(--primary, #1a5f2a);
        opacity: 1;
        transform: none;
        border-radius: 0 0 6px 6px;
    }
}







        






















/*_________________________________________*/
/*_____________________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,header.ro_obj::before, header.ro_obj::after {display: none;}
.ro_obj *:hover {outline: none;}
.ro_obj a {padding:8px;}
button{cursor:pointer;}
img{max-width: 100%;height: auto;}

.container_buk {padding: 0 16px}

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

.main__container {
	max-width: var(--gst-container-width);
	margin: clamp(24px, 4vw, 48px) 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;
    margin-bottom:16px;
    line-height: 1.2;
	}
.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 .post_thumbnail 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(-200%);
	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: 18px;
	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;
}

.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: 2px;}
.nav-toc li::marker {color: var(--gst-accent-color);}
.nav-toc li a {color: var(--gst-link-color);text-decoration: none;font-weight: 700;font-size: 16px;white-space: normal;padding: 2px 0;border-bottom: 2px solid transparent;}
.nav-toc li a:hover {border-bottom: 2px solid var(--gst-accent-color);}

@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;
}
