:root {
	--bg-primary: #f8fafc;
	--bg-secondary: #ffffff;
	--bg-accent: #f0fdf4;
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-muted: #64748b;
	--accent-green: #16a34a;
	--accent-green-dark: #15803d;
	--accent-gold: #ca8a04;
	--accent-gold-light: #fef3c7;
	--border-color: #e2e8f0;
	--border-accent: #bbf7d0;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-serif: Georgia, Cambria, 'Times New Roman', serif;
	--max-width: 1200px;
	--content-width: 800px;
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
	font-size: 100%;
}

body {
	font-family: var(--font-sans);
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
	line-height: 1.75;
	color: var(--text-primary);
	background: var(--bg-primary);
}

.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	background: var(--accent-green);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	z-index: 9999;
	transition: top var(--transition);
}

.skip-link:focus {
	top: 1rem;
	outline: 3px solid var(--accent-gold);
	outline-offset: 2px;
}

a {
	color: var(--accent-green);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--accent-green-dark);
}

a:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

main {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: clamp(1rem, 3vw, 2rem);
}

main > header {
	text-align: center;
	padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
	border: 1px solid var(--border-accent);
	border-radius: var(--radius-xl);
	margin-bottom: clamp(2rem, 4vw, 3rem);
	position: relative;
	overflow: hidden;
}

main > header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-green), var(--accent-gold), var(--accent-green));
}

h1 {
	font-family: var(--font-serif);
	font-size: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

h1 span {
	display: block;
	font-size: 0.55em;
	font-weight: 400;
	font-family: var(--font-sans);
	color: var(--text-secondary);
	margin-top: 0.5rem;
	letter-spacing: 0;
}

.header-meta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1.5rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.header-intro {
	max-width: var(--content-width);
	margin: 1.5rem auto 0;
	color: var(--text-secondary);
	font-size: 1.1rem;
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 64rem) {
	.content-grid {
		grid-template-columns: minmax(0, 1fr) 280px;
	}
}

article {
	min-width: 0;
}

section {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	scroll-margin-top: 2rem;
}

section:last-of-type {
	margin-bottom: 0;
}

h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.375rem, 1.1rem + 1vw, 1.875rem);
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	padding-bottom: 0.625rem;
	border-bottom: 3px solid var(--accent-green);
	display: inline-block;
}

h3 {
	font-size: clamp(1.125rem, 1rem + 0.5vw, 1.35rem);
	font-weight: 600;
	color: var(--text-primary);
	margin: 2rem 0 1rem;
}

section p {
	margin-bottom: 1.25rem;
	color: var(--text-secondary);
}

section p:last-child {
	margin-bottom: 0;
}

figure.key-facts {
	background: linear-gradient(135deg, var(--bg-secondary), var(--bg-accent));
	border: 1px solid var(--border-accent);
	border-left: 4px solid var(--accent-gold);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	padding: 1.5rem;
	margin: 2rem 0;
}

figure.key-facts h3 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 1rem;
}

figure.key-facts ul {
	list-style: none;
	display: grid;
	gap: 0.625rem;
}

figure.key-facts li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: var(--text-primary);
}

figure.key-facts li::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--accent-green);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 0.5rem;
}

blockquote {
	background: var(--bg-secondary);
	border-left: 4px solid var(--accent-green);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	padding: 1.25rem 1.5rem;
	margin: 2rem 0;
	font-style: italic;
	color: var(--text-secondary);
}

section.faq-section {
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

section.faq-section h2 {
	display: block;
	text-align: center;
	border-bottom: none;
	margin-bottom: 2rem;
}

details {
	background: var(--bg-primary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	margin-bottom: 0.75rem;
	overflow: hidden;
	transition: box-shadow var(--transition);
}

details:hover {
	box-shadow: var(--shadow-md);
}

details[open] {
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-green);
}

summary {
	padding: 1.25rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	list-style: none;
	transition: background var(--transition), color var(--transition);
}

summary::-webkit-details-marker {
	display: none;
}

summary::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--accent-green);
	transition: transform var(--transition);
	flex-shrink: 0;
}

details[open] summary::after {
	transform: rotate(45deg);
}

summary:hover {
	background: var(--bg-accent);
}

summary:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: -2px;
}

.faq-answer {
	padding: 0 1.25rem 1.25rem;
	color: var(--text-secondary);
	border-top: 1px solid var(--border-color);
	padding-top: 1.25rem;
}

aside {
	position: sticky;
	top: 1rem;
	height: fit-content;
}

aside section {
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	margin-bottom: 1rem;
}

aside section.warning {
	border-color: var(--accent-gold);
	background: linear-gradient(135deg, var(--bg-secondary), var(--accent-gold-light));
}

aside h3 {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
}

aside section.warning h3 {
	color: var(--accent-gold);
}

aside p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

aside p:last-child {
	margin-bottom: 0;
}

aside ul {
	list-style: none;
}

aside li {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.9rem;
	color: var(--text-secondary);
}

aside li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

aside li strong {
	color: var(--text-primary);
}

@media (max-width: 64rem) {
	aside {
		display: none;
	}
}

footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
	margin-top: clamp(3rem, 6vw, 5rem);
	padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
	text-align: center;
}

footer p {
	max-width: var(--content-width);
	margin: 0 auto 1rem;
	color: var(--text-muted);
	font-size: 0.9rem;
}

footer p:last-child {
	margin-bottom: 0;
}

footer small {
	font-size: 0.8rem;
}

.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 - Fußball Wetten News 2025
   Responsive, hover effects, soft animations
   =========================================== */

/* Hero Image - Full Width */
.article-hero-image {
    width: 100%;
    max-width: var(--max-width, 1200px);
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl, 1.5rem);
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    display: block;
    box-shadow: 
        0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
    transition: 
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroFadeIn 0.8s ease-out;
}

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

.article-hero-image:hover {
    transform: scale(1.01);
    box-shadow: 
        0 25px 50px -12px rgb(0 0 0 / 0.25),
        0 12px 15px -8px rgb(0 0 0 / 0.15);
}

/* Content Images */
.article-content-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg, 1rem);
    margin: 2rem 0;
    display: block;
    box-shadow: 
        0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: 
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: contentImageFadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

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

.article-content-image:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 
        0 20px 25px -5px rgb(0 0 0 / 0.15),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Subtle brightness effect on hover */
.article-content-image:hover {
    filter: brightness(1.02) contrast(1.01);
}

/* Border accent on hover */
.article-content-image {
    border: 1px solid transparent;
}

.article-content-image:hover {
    border-color: var(--accent-green, #16a34a);
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

/* Tablet */
@media (max-width: 64rem) {
    .article-hero-image {
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-lg, 1rem);
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }
    
    .article-content-image {
        margin: 1.5rem 0;
        border-radius: var(--radius-md, 0.5rem);
    }
}

/* Mobile */
@media (max-width: 40rem) {
    .article-hero-image {
        aspect-ratio: 4 / 3;
        border-radius: var(--radius-md, 0.5rem);
        margin-bottom: 1.5rem;
        box-shadow: 
            0 10px 15px -3px rgb(0 0 0 / 0.1),
            0 4px 6px -4px rgb(0 0 0 / 0.1);
    }
    
    .article-hero-image:hover {
        transform: none;
        box-shadow: 
            0 10px 15px -3px rgb(0 0 0 / 0.1),
            0 4px 6px -4px rgb(0 0 0 / 0.1);
    }
    
    .article-content-image {
        aspect-ratio: 3 / 2;
        margin: 1.25rem 0;
        border-radius: var(--radius-sm, 0.375rem);
    }
    
    .article-content-image:hover {
        transform: none;
        box-shadow: 
            0 10px 15px -3px rgb(0 0 0 / 0.1),
            0 4px 6px -4px rgb(0 0 0 / 0.1);
    }
}

/* Small Mobile */
@media (max-width: 30rem) {
    .article-hero-image,
    .article-content-image {
        border-radius: var(--radius-sm, 0.375rem);
    }
    
    .article-hero-image {
        aspect-ratio: 1 / 1;
    }
    
    .article-content-image {
        aspect-ratio: 4 / 3;
        margin: 1rem 0;
    }
}






































/*_________________________________________*/
/*_____________________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;
	}
.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;
	min-width: 280px;
}
.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;}
.site-mm__nav li a{
	padding: 0;
}

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

header.ro_obj .header__nav .header__menu-list{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.header__nav .header__menu-list a {
    text-decoration: none;
}
.header__nav .header__menu-list a:hover {
    color: var(--gst-accent-color);
}

.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);
}

header.ro_obj button.header__v1 {
    display: none;
}


.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;
    }
	.site-mm__nav{max-width: 256px;}
}

@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;
	}
    header.ro_obj button.header__v1 {
        display: block;
    }
    header.ro_obj .header__nav{
        display: none;
    }
}

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

	.site-mm__box{
		padding: 32px 16px;
	}

	.site-mm__nav li a{
		font-size: 14px;
	}
}


/*____________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;
}

/*_________________sitemap___________________*/
.sitemap *{
	list-style: none;
	padding: 0;
	margin: 0;
	text-decoration: none;
	border: none;
}
.sitemap ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding: 0;
	margin: 32px 0;
}
.sitemap ul a {
	padding: 0;
}

@media (max-width: 960px) {
	.sitemap ul{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 512px) {
	.sitemap ul{
		grid-template-columns: 1fr;
	}
}

.articles-list{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    list-style: none;
    padding: 0;
    gap: 32px 16px;
	margin: 48px 0 32px;
}
.article-item{
	max-width: 512px;
}
.article-item a {
	color: var(--gst-accent-color);
	text-decoration: none;
	padding: 0;
}
h2.article-item__title{
	margin: 4px 0 8px;
	font-size: 18px;
}
.article-item__image a {
	aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
	display: block;
}
.article-item__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.main__container .article-item__image :is( figure, img) {
	max-width: none;
}

.main__container .page-numbers{
	list-style: none;
	padding-left: 0;
	display: flex;
	gap: 16px;
}

.page-numbers a{
	padding: 0;
}

.main__container .page-numbers li{
	padding: 0;
}
.ro_obj.footer-col{
	border-top: 2px solid var(--gst-accent-color);
}

.footer-grid-3{
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 16px;
}
.footer-grid-3 a{
	text-decoration: none;
}
.footer-grid-title{
	font-size: 18px;
	font-weight: 700;
	color: var(--gst-accent-color);
	margin-bottom: 16px;
}
.footer_cont_copyright p{
	text-align: center;
}

@media screen and (max-width:500px){
    .footer-grid-3 {
        display: flex !important;
        flex-direction: column;
    }
}
