/*
Theme Name: gm
Description: This is a child theme for gm
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
	/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
body {
	/* Font chữ chính được ưu tiên */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

	/* Các thông số bổ trợ thường thấy trên trang */
	font-size: 16px;
	line-height: 1.6; /* Khoảng cách dòng giúp dễ đọc hơn */
	color: #ffffff;    /* Màu chữ mặc định (thường là trắng trên nền tối) */
	-webkit-font-smoothing: antialiased; /* Làm mượt chữ trên trình duyệt Chrome/Safari */
}


/* h2:not(.post-title) {
	font-size: 24px;
	font-weight: bold;
	background: linear-gradient(90deg, #ff9c00, #9a0000);
	padding: 10px 20px;
	border-radius: 5px;
	color:#fff !important
}
 */
/* Background Ligh */
:root {
	--primary: #f4a038;
	--primary-dark: #921d11;
	--accent: #ffbd0d;
	--text: #ffffff;
	--text-inverse: #ffffff;
	--border: color-mix(in srgb, var(--primary-dark) 30%, transparent);
	--hover: color-mix(in srgb, var(--primary) 10%, transparent);
	--radius: 12px;
}

.content-home,
.taxonomy-description {
	max-height: 600px;
	overflow-y: scroll;
	padding-right: 8px;
	text-align: justify;
	padding: 10px 15px;
}

.taxonomy-description {
	max-height: 200px;
}

.content-home::-webkit-scrollbar,
.taxonomy-description::-webkit-scrollbar {
	width: 8px;
}

.content-home::-webkit-scrollbar-track,
.taxonomy-description::-webkit-scrollbar-track {
	background: rgba(18, 24, 31, 0.06);
	border-radius: 10px;
}

.content-home::-webkit-scrollbar-thumb,
.taxonomy-description::-webkit-scrollbar-thumb {
	background: linear-gradient(181deg, var(--primary), var(--primary-dark));
	border-radius: 10px;
}

.content-home::-webkit-scrollbar-thumb:hover,
.taxonomy-description::-webkit-scrollbar-thumb:hover {
	filter: brightness(1.15);
}

.content-home,
.taxonomy-description {
	scrollbar-width: thin;
	scrollbar-color: var(--primary) rgba(18, 24, 31, 0.06);
	margin-bottom: 20px
}

table {
	overflow: hidden;
	border-radius: var(--radius);
	border-collapse: separate;
	border-spacing: 0;
	color: var(--text);
	font-family: inherit;
	border:1px solid var(--primary)
}

table tr {
	transition: background-color 0.25s ease;
}

table tbody tr:nth-child(even) {
	background-color: color-mix(in srgb, var(--text) 4%, transparent);
}

table tbody tr:hover {
	background-color: var(--hover);
}

table thead tr,
table:not(:has(thead)) tr:first-child {
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

table thead tr:hover,
table:not(:has(thead)) tr:first-child:hover {
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

table thead th,
table thead td,
table:not(:has(thead)) tr:first-child th,
table:not(:has(thead)) tr:first-child td {
	color: var(--text-inverse);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.6px;
}

table th,
table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
	color: var(--text);
}

table th:first-child,
table td:first-child {
	padding-left: 10px !important;
}

table tbody tr:last-child td {
	border-bottom: none;
}

table tbody td:first-child {
	width: 35%;
	color: var(--primary);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.6px;
}

table tbody td:last-child {
	font-size: 15px;
}

table:not(:has(thead)) tr:first-child td:first-child {
	color: var(--text-inverse);
}

.wp-caption img {
	border-radius: 5px 5px 0 0
}

.wp-caption .wp-caption-text {
	color: var(--text-inverse);
	background: linear-gradient(120deg, var(--primary), var(--primary-dark));
	border-radius: 0px 0px 5px 5px
}

.entry-image img {
	border-radius: 5px;
	border: 1px solid var(--border);
}

.entry-header-text .entry-divider {
	display: none
}

/* Post List */
#post-list .box-image {
	border-radius: 5px 0px 0px 5px;
	border: 1px solid var(--primary);
	overflow: hidden;
	border-right: none
}

#post-list .box-text {
	border-radius: 0px 5px 5px 0px;
	border: 1px solid var(--primary);
	overflow: hidden;
	border-left: none
}

.section-title b {
	display: none
}

.widget .current-cat {
	color: var(--text);
}

.widget .current-cat>a {
	color: var(--accent);
	font-weight: 600;
}

.section-title.section-title-center {
	justify-content: center;
	text-align: center;
}

#page-breadcrumbs {
	margin-top: 10px;
}

#page-breadcrumbs a {
	font-weight: 600;
}

#page-breadcrumbs+#content {
	padding-top: 0;
}

/* 
h1,
.section-title-main {
	display: inline-block;
	background: linear-gradient(120deg,
		#ff006e, #ff4d00, #ffbd0d, #fae54e,
		#00f5a0, #00d9ff, #0072ff, #7a5cff,
		#c724b1, #ff006e);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: gradient-rainbow 8s ease infinite;
	filter: drop-shadow(0 0 8px color-mix(in srgb, var(--primary) 40%, transparent));
	font-weight: 800;
}

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

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
} */

.img-inner::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	transform: skewX(-25deg);
	transition: left 0.75s ease-out;
}

.img-inner:hover::before {
	left: 125%;
}

.cx68-home-v3{--purple-950:#12021f;--purple-900:#21043a;--purple-800:#360861;--purple-700:#54108b;--purple-500:#8f35d1;--purple-300:#c893ef;--purple-100:#efe1fb;--cream:#fff7e8;--gold:#ffb72e;--orange:#f07222;--ink:#24132e;--muted:#765d83;--line-light:rgba(255,255,255,.16);--shadow:0 28px 90px rgba(17,0,32,.32);--radius:22px;--font-flatsome:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}
.cx68-home-v3,.cx68-home-v3 *{box-sizing:border-box}
.cx68-home-v3{scroll-behavior:smooth;scroll-padding-top:24px;background:var(--purple-950)}
.cx68-home-v3{position:relative;isolation:isolate;overflow-x:clip;overflow-y:visible;margin:0;padding:0;background:radial-gradient(circle at 72% 5%,#592092 0,transparent 30%),linear-gradient(180deg,var(--purple-950),#250445 38%,#140220);color:var(--cream);font-family:inherit;font-size:16px;line-height:1.68}
.cx68-home-v3::before{content:"";position:absolute;z-index:0;width:540px;height:540px;left:-180px;top:24vh;border-radius:50%;background:rgba(139,49,202,.44);filter:blur(110px);pointer-events:none}
.cx68-home-v3::after{content:"";position:absolute;z-index:0;width:480px;height:480px;right:-160px;bottom:4vh;border-radius:50%;background:rgba(240,114,34,.22);filter:blur(120px);pointer-events:none}
.cx68-home-v3 a{color:inherit;text-underline-offset:4px}
.cx68-home-v3 img{display:block;max-width:100%}
.cx68-home-v3 .shell{position:relative;z-index:1;margin:0 auto}
.cx68-home-v3 .blur-shell{overflow:hidden;border:1px solid var(--line-light);border-radius:var(--radius);background:rgba(37,7,67,.66);box-shadow:var(--shadow),inset 0 1px 0 rgba(255,255,255,.1);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);padding:10px;row-gap:10px}
.cx68-home-v3 .hero-shell{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(420px,.97fr);min-height:560px;overflow:hidden;border:1px solid rgba(255,255,255,.18);border-radius:10px;background:linear-gradient(135deg,rgba(25,3,47,.96),rgba(79,12,132,.93));box-shadow:var(--shadow),inset 0 1px 0 rgba(255,255,255,.11)}
.cx68-home-v3 .hero-copy{position:relative;z-index:3;display:flex;flex-direction:column;justify-content:center;padding:54px 26px 54px 58px}
.cx68-home-v3 .hero-kicker{margin:0 0 14px;color:var(--gold);font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.cx68-home-v3 h1{display:inline-block;width:100%;max-width:none;margin:0;background:linear-gradient(110deg,#9a6208 0%,#e8ad2d 22%,#fff0a6 43%,#f7cd59 58%,#b97808 78%,#f5d77e 100%);background-size:200% 100%;color:#f5c852;font-size:clamp(22px,3.5vw,32px);font-weight:900;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;animation:gradient-run 5s linear infinite}
@keyframes gradient-run{0%{background-position:200% 0}100%{background-position:-200% 0}}
.cx68-home-v3 h1 span{display:block;margin-top:12px;color:var(--gold);font-size:.46em;line-height:1.15;letter-spacing:-.025em}
.cx68-home-v3 .hero-intro{margin:22px 0 0}
.cx68-home-v3 .hero-intro p{width:100%;max-width:none;margin:0 0 10px}
.cx68-home-v3 .hero-intro p:last-child{margin-bottom:0}
.cx68-home-v3 .hero-points{display:flex;flex-wrap:wrap;gap:8px;margin:22px 0 0;padding:0;list-style:none}
.cx68-home-v3 .hero-points li{margin:0;padding:8px 11px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.07);color:#f6e8ff;font-size:12px;font-weight:700}
.cx68-home-v3 .hero-domain{margin:22px 0 0;color:var(--purple-300);font-size:13px;font-weight:700}
.cx68-home-v3 .hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}
.cx68-home-v3 .hero-button{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 20px;border:1px solid transparent;border-radius:10px;font-size:13px;font-weight:900;text-decoration:none;text-transform:uppercase}
.cx68-home-v3 .hero-button-primary{background:linear-gradient(180deg,#ffd15b,var(--gold));color:#351008;box-shadow:inset 0 -3px 0 rgba(132,57,0,.26)}
.cx68-home-v3 .hero-button-secondary{border-color:rgba(255,255,255,.35);color:var(--cream);background:rgba(255,255,255,.06)}
.cx68-home-v3 .hero-art{position:relative;min-height:0;overflow:hidden;background:#481177}
.cx68-home-v3 .hero-art::before{content:"";position:absolute;z-index:2;inset:0;background:linear-gradient(90deg,#330958 0%,rgba(51,9,88,.72) 12%,transparent 44%),linear-gradient(0deg,rgba(20,1,37,.54),transparent 42%);pointer-events:none}
.cx68-home-v3 .hero-art img{width:100%;height:100%;object-fit:cover;object-position:center;filter:saturate(1.08) contrast(1.04)}
.cx68-home-v3 .hero-art-label{position:absolute;z-index:3;right:22px;bottom:20px;padding:8px 10px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(28,2,48,.5);color:rgba(255,255,255,.72);font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;backdrop-filter:blur(12px)}
.cx68-home-v3 .cx68-category-row{position:relative;z-index:1;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:0 auto 20px;padding:10px}
.cx68-home-v3 .cx68-category-row>.col{width:auto;max-width:none;padding:0;flex-basis:auto}
.cx68-home-v3 .cx68-category-row>.col>.col-inner{height:100%;margin:0;padding:0}
.cx68-home-v3 .cx68-category-heading-col{grid-column:1 / -1;padding-bottom:0}
.cx68-home-v3 .category-heading{display:block;margin:20px 10px 10px}
.cx68-home-v3 .category-heading h2{display:block;width:100%;max-width:none;margin:0;color:var(--gold);font-size:clamp(26px,3.2vw,38px);font-weight:900;letter-spacing:-.04em;line-height:1.04}
.cx68-home-v3 .category-heading p{width:100%;max-width:none;margin:14px 0 0;color:rgba(255,247,232,.74)}
.cx68-home-v3 .category-card{position:relative;min-height:0;overflow:hidden;border:1px solid rgba(255,255,255,.2);border-radius:14px;background:#2f0751;padding:0}
.cx68-home-v3 .category-card>.col-inner{position:relative;display:flex;flex-direction:column;height:100%;min-height:0;overflow:hidden}
.cx68-home-v3 .category-card .category-image{position:relative;flex:0 0 auto;width:100%;height:auto;min-height:0;aspect-ratio:1/1;margin:0;overflow:hidden;background:#190229}
.cx68-home-v3 .category-card .category-image .img-inner{width:100%;height:100%}
.cx68-home-v3 .category-card .category-image img{width:100%;height:100%;object-fit:contain;object-position:center;filter:saturate(1.06) contrast(1.04)}
.cx68-home-v3 .category-copy{position:relative;z-index:2;display:flex;flex:1 1 auto;flex-direction:column;justify-content:flex-start;min-width:0;padding:18px 18px 20px;background:linear-gradient(135deg,rgba(58,8,98,.96),rgba(29,3,50,.98))}
.cx68-home-v3 .category-copy>p{width:100%;max-width:none;margin:0 0 10px}
.cx68-home-v3 .category-copy>p:first-child{margin-bottom:4px}
.cx68-home-v3 .category-copy>p:last-child{margin-top:auto;margin-bottom:0}
.cx68-home-v3 .category-card small{color:var(--gold);font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.cx68-home-v3 .category-card h3{width:100%;margin:4px 0 7px;color:var(--cream);font-size:22px;font-weight:900;letter-spacing:-.03em}
.cx68-home-v3 .category-card p{width:100%;max-width:none;margin:0 0 10px;color:rgba(255,247,232,.78);font-size:13px}
.cx68-home-v3 .category-card a{color:var(--gold);font-size:11px;font-weight:900;text-decoration:none;text-transform:uppercase}
.cx68-home-v3 .content-group{position:relative;z-index:1;padding:0 0 20px}
.cx68-home-v3 .content-group .blur-shell{padding:30px}
.cx68-home-v3 .group-light .blur-shell{border-color:rgba(255,255,255,.46);background:rgba(248,240,255,.93);color:var(--ink);box-shadow:0 28px 90px rgba(16,0,28,.28)}
.cx68-home-v3 .group-heading{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:end;margin-bottom:4px;padding-bottom:12px}
.cx68-home-v3 .group-heading .group-label{margin:0;color:var(--gold);font-size:clamp(22px,2.5vw,30px);font-weight:900;letter-spacing:-.04em;line-height:1}
.cx68-home-v3 .group-light .group-heading .group-label{color:var(--purple-700)}
.cx68-home-v3 .group-heading>p:last-child{width:100%;max-width:none;margin:0;opacity:.68}
.cx68-home-v3 .group-heading-glass{display:block;margin:0 0 14px;padding:15px 17px;border:1px solid rgba(255,183,46,.35);border-radius:12px;background:rgba(255,255,255,.06)}
.cx68-home-v3 .group-heading-glass .group-label{margin:0 0 5px;color:var(--gold);font-size:18px;letter-spacing:-.02em;line-height:1.2;text-transform:none}
.cx68-home-v3 .group-heading-glass>p:last-child{margin:0;color:rgba(255,247,232,.76);font-size:14px;opacity:1}
.cx68-home-v3 .group-light .group-heading-glass{border-color:rgba(84,16,139,.22);background:rgba(84,16,139,.06)}
.cx68-home-v3 .group-light .group-heading-glass>p:last-child{color:rgba(36,19,46,.72)}
.cx68-home-v3 .group-heading-glass+.content-block{padding-top:20px}
.cx68-home-v3 .content-block{scroll-margin-top:22px}
.cx68-home-v3 .content-block:last-child{padding-bottom:0}
.cx68-home-v3 .content-block h2{width:100%;max-width:none;margin:0 0 10px;font-size:clamp(26px,3vw,2px);font-weight:900;letter-spacing:-.048em;line-height:1.04}
.cx68-home-v3 .content-block h3{width:100%;max-width:none;color:#ffc653;font-weight:900;letter-spacing:-.03em}
.cx68-home-v3 .group-light .content-block h3{color:#b64f12}
.cx68-home-v3 .content-body p,.cx68-home-v3 .content-block p{width:100%;max-width:none;margin:0 0 20px;color:inherit;opacity:.88}
.cx68-home-v3 .content-block a{color:var(--gold);font-weight:700}
.cx68-home-v3 .group-light .content-block a{color:var(--purple-700)}
.cx68-home-v3 .table-scroll{width:100%;margin:20px auto;overflow:auto;border:1px solid rgba(52,14,76,.14);border-radius:14px;background:#fff;box-shadow:0 14px 42px rgba(11,0,20,.17);isolation:isolate;-webkit-mask-image:-webkit-radial-gradient(#fff,#000)}
.cx68-home-v3 table{width:100%;min-width:660px;margin:0;overflow:hidden;border-collapse:separate;border-spacing:0;border-radius:inherit;background:#fff;color:var(--ink);font-size:14px;line-height:1.45}
.cx68-home-v3 thead{background:linear-gradient(90deg,#41106d,#7119a9);color:#fff}
.cx68-home-v3 th,.cx68-home-v3 td{padding:14px 16px;border-right:1px solid rgba(52,14,76,.1);border-bottom:1px solid rgba(52,14,76,.1);text-align:left;vertical-align:top}
.cx68-home-v3 th:last-child,.cx68-home-v3 td:last-child{border-right:0}
.cx68-home-v3 tbody tr:nth-child(even){background:#f8f1fc}
.cx68-home-v3 table thead tr,.cx68-home-v3 table:not(:has(thead)) tr:first-child{background:linear-gradient(90deg,#41106d 0%,#8f35d1 100%)}
.cx68-home-v3 table thead tr:hover,.cx68-home-v3 table:not(:has(thead)) tr:first-child:hover{background:linear-gradient(90deg,#41106d 0%,#8f35d1 100%)}
.cx68-home-v3 table thead th,.cx68-home-v3 table thead td,.cx68-home-v3 table:not(:has(thead)) tr:first-child th,.cx68-home-v3 table:not(:has(thead)) tr:first-child td{color:#fff;font-size:14px;font-weight:800;letter-spacing:0;text-transform:none}
.cx68-home-v3 table th,.cx68-home-v3 table td{padding:14px 16px;border-right:1px solid rgba(52,14,76,.1);border-bottom:1px solid rgba(52,14,76,.1);color:var(--ink);font-size:14px;letter-spacing:0;line-height:1.45;text-align:left;text-transform:none;vertical-align:top}
.cx68-home-v3 table th:first-child,.cx68-home-v3 table td:first-child{padding-left:16px!important}
.cx68-home-v3 table tbody tr:nth-child(odd){background:#fff}
.cx68-home-v3 table tbody tr:nth-child(even){background:#f8f1fc}
.cx68-home-v3 table tbody tr:hover{background:#efe1f7}
.cx68-home-v3 table tbody td:first-child{width:auto;color:var(--ink);font-size:14px;font-weight:600;letter-spacing:0;text-transform:none}
.cx68-home-v3 table tbody td:last-child{font-size:14px}
.cx68-home-v3 table tbody tr:last-child td{border-bottom:0}
.cx68-home-v3 table thead tr:first-child th:first-child,.cx68-home-v3 table thead tr:first-child td:first-child,.cx68-home-v3 table:not(:has(thead)) tr:first-child th:first-child,.cx68-home-v3 table:not(:has(thead)) tr:first-child td:first-child{border-top-left-radius:13px}
.cx68-home-v3 table thead tr:first-child th:last-child,.cx68-home-v3 table thead tr:first-child td:last-child,.cx68-home-v3 table:not(:has(thead)) tr:first-child th:last-child,.cx68-home-v3 table:not(:has(thead)) tr:first-child td:last-child{border-top-right-radius:13px}
.cx68-home-v3 table tbody tr:last-child td:first-child{border-bottom-left-radius:13px}
.cx68-home-v3 table tbody tr:last-child td:last-child{border-bottom-right-radius:13px}
.cx68-home-v3 .faq-shell{padding:30px}
.cx68-home-v3 .cx68-faq-col h2,.cx68-home-v3 .news-shell>h2{width:100%;max-width:none;margin:0 0 30px;color:var(--cream);font-size:clamp(28px,3.4vw,40px);font-weight:900;letter-spacing:-.05em;line-height:1}
.cx68-home-v3 .news-shell{padding:30px}
.cx68-home-v3 .warning{padding:20px;border-left:4px solid var(--gold);background:rgba(255,183,46,.08);color:rgba(255,247,232,.82)}
.cx68-home-v3 .warning-title{display:block;margin-bottom:7px;color:var(--gold);font-size:15px;font-weight:900;text-transform:uppercase}
.cx68-home-v3 .warning p{margin:0;line-height:1.6}
@media(max-width:900px){.cx68-home-v3 .hero-shell{grid-template-columns:1fr}.cx68-home-v3 .hero-copy{padding:44px 32px}.cx68-home-v3 .hero-art{min-height:0}.cx68-home-v3 .cx68-category-row{grid-template-columns:repeat(2,minmax(0,1fr))}.cx68-home-v3 .category-heading,.cx68-home-v3 .group-heading{grid-template-columns:1fr}}
@media(max-width:620px){.cx68-home-v3{font-size:16px}.cx68-home-v3 .hero-shell{min-height:0;border-radius:20px}.cx68-home-v3 .hero-copy{padding:30px 22px}.cx68-home-v3 h1{font-size:34px}.cx68-home-v3 .hero-art{min-height:0}.cx68-home-v3 .category-shell,.cx68-home-v3 .content-group .blur-shell,.cx68-home-v3 .faq-shell,.cx68-home-v3 .news-shell{padding:22px 16px}.cx68-home-v3 .cx68-category-row{grid-template-columns:1fr}.cx68-home-v3 .content-block{padding:30px 0}.cx68-home-v3 .table-scroll{width:100%;margin-left:0;border-radius:14px}}
.cx68-home-v3>.section-content{z-index:1;width:100%;margin-top:20px}
.cx68-home-v3 h1,.cx68-home-v3 h2,.cx68-home-v3 h3{max-width:none;border:0;border-bottom:0;padding-bottom:0;text-transform:none}
.cx68-home-v3 p{max-width:none}
.cx68-home-v3 .cx68-main-row>.col{max-width:100%;flex-basis:100%;padding:10px 0}
.cx68-home-v3 .cx68-category-col>.col-inner,.cx68-home-v3 .cx68-content-col>.col-inner{margin:0;padding:0}
.cx68-home-v3 .cx68-main-row>.cx68-faq-row,.cx68-home-v3 .cx68-main-row>.cx68-news-row{max-width:none;flex-basis:auto;padding:30px}
.cx68-home-v3 .cx68-hero-row{width:min(1500px,calc(100% - 36px));max-width:none;margin:12px auto 20px;padding:0}
@media(min-width:1201px){.cx68-home-v3 .hero-shell{grid-template-columns:minmax(0,1fr) 600px}}
.cx68-home-v3 .cx68-hero-row>.col{max-width:none;flex-basis:auto;width:auto;padding:0}
.cx68-home-v3 .cx68-hero-row>.col>.col-inner{height:100%;margin:0;padding:0}
.cx68-home-v3 .hero-copy{padding:0}
.cx68-home-v3 .hero-copy>.col-inner{display:flex;align-items:center}
.cx68-home-v3 .hero-copy-inner{width:100%;padding:20px}
.cx68-home-v3 .hero-art>.col-inner{position:relative;height:auto;min-height:0;aspect-ratio:1/1;overflow:hidden}
.cx68-home-v3 .hero-art .img,.cx68-home-v3 .hero-art .img-inner,.cx68-home-v3 .hero-art picture{height:100%;margin:0}
.cx68-home-v3 .hero-art .img-inner{padding-top:0}
.cx68-home-v3 .hero-art .img img{position:absolute;inset:0;width:100%;height:100%;object-position:center}
.cx68-home-v3 .cx68-faq-row{max-width:none;margin:0 auto 20px}
.cx68-home-v3 .cx68-faq-col>.col-inner{margin:0;padding:0}
.cx68-home-v3 .cx68-faq-row .accordion{margin:0}
.cx68-home-v3 .cx68-faq-row .accordion-item{overflow:hidden;margin:0 0 10px;border:1px solid var(--line-light);border-radius:12px;background:rgba(255,255,255,.05)}
.cx68-home-v3 .cx68-faq-row .accordion-item:last-child{margin-bottom:0}
.cx68-home-v3 .cx68-faq-row .accordion-title{border:0;padding:18px 54px 18px 20px;color:var(--cream);font-size:16px;font-weight:800;text-transform:none}
.cx68-home-v3 .cx68-faq-row .accordion-title.active{border:0;background:rgba(255,255,255,.06);color:var(--gold)}
.cx68-home-v3 .cx68-faq-row .accordion-title .toggle{right:12px;left:auto;top:50%;margin:0;transform:translateY(-50%)}
.cx68-home-v3 .cx68-faq-row .accordion-title.active .toggle{transform:translateY(-50%) rotate(-180deg)}
.cx68-home-v3 .cx68-faq-row .accordion-inner{padding:0 20px 20px;color:rgba(255,247,232,.72);font-size:16px;line-height:1.68}
.cx68-home-v3 .cx68-faq-row .accordion-inner p{width:100%;max-width:none;margin:0}
.cx68-home-v3 .cx68-news-row{max-width:none;margin:0 auto 20px;padding:30px}
.cx68-home-v3 .cx68-news-col>.col-inner{margin:0;padding:0}
.cx68-home-v3 .news-shell .blog-posts{margin:0 -8px}
.cx68-home-v3 .news-shell .post-item{padding:8px}
.cx68-home-v3 .news-shell .post-item>.col-inner{height:100%}
.cx68-home-v3 .news-shell .box{height:100%;overflow:hidden;border:1px solid var(--line-light);border-radius:14px;background:rgba(255,255,255,.05);box-shadow:none}
.cx68-home-v3 .news-shell .box-text{padding:20px;color:var(--cream)}
.cx68-home-v3 .news-shell .box-text .post-title a{color:var(--cream);font-size:19px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;line-height:1.4}
.cx68-home-v3 .news-shell .box-text p,.cx68-home-v3 .news-shell .box-text .from_the_blog_excerpt{color:rgba(255,247,232,.68)}
.cx68-home-v3 .news-shell .is-divider{display:none}
.cx68-home-v3 .news-shell .badge-inner{background:var(--gold);color:#351008}
.cx68-home-v3 .news-shell>h2,.cx68-home-v3{width:100%;max-width:none;margin:0 0 20px;color:var(--cream);letter-spacing:-.05em}
@media(max-width:900px){.cx68-home-v3 .cx68-main-row>.cx68-faq-row{width:min(100% - 36px,1200px)}.cx68-home-v3 .cx68-hero-row{display:grid;grid-template-columns:1fr}.cx68-home-v3 .cx68-hero-row>.col{width:100%}.cx68-home-v3 .cx68-main-row>.cx68-news-row{width:min(100% - 36px,1200px)}}
@media(max-width:620px){.cx68-home-v3 .cx68-main-row>.cx68-faq-row{width:min(100% - 24px,1200px);padding:22px 16px}.cx68-home-v3 .cx68-hero-row{width:min(100% - 24px,1200px);margin-top:12px}.cx68-home-v3 .hero-copy-inner{padding:20px}.cx68-home-v3 .hero-art>.col-inner{min-height:0;aspect-ratio:1/1}.cx68-home-v3 .cx68-main-row>.cx68-news-row{width:min(100% - 24px,1200px);padding:22px 16px;margin-bottom:68px}}
.header-button .button{position:relative;isolation:isolate;border:0;border-radius:9px;animation:header-button-pulse .8s ease infinite}
.header-button .button.primary.is-bevel{position:relative;z-index:0;isolation:isolate;overflow:visible!important;animation:header-button-pulse .8s ease infinite;background:linear-gradient(40deg,#f00 60%,orange)}
.header-button .button.primary.is-bevel::before{content:"";position:absolute;inset:0;z-index:-1;border-radius:inherit;pointer-events:none;animation:header-button-shockwave 1s .65s ease-out infinite}
.cx68-home-v3 .category-copy>p.cx68-card-cta-wrap{width:100%;margin:auto 0 0;text-align:center}
.cx68-home-v3 .category-card a.cx68-card-cta{position:relative;z-index:1;display:inline-flex;align-items:center;justify-content:center;min-width:140px;padding:9px 16px;overflow:hidden;border:1px solid rgba(255,183,46,.62);border-radius:999px;background:linear-gradient(180deg,rgba(255,183,46,.18),rgba(143,53,209,.22));box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 8px 20px rgba(18,2,31,.28);color:var(--cream);line-height:1.2;letter-spacing:.06em;transition:transform .25s ease,border-color .25s ease,background .25s ease,box-shadow .25s ease,color .25s ease}
.cx68-home-v3 .category-card a.cx68-card-cta::before{content:"";position:absolute;top:-70%;left:-45%;width:28%;height:240%;transform:rotate(18deg);background:linear-gradient(90deg,transparent,rgba(255,255,255,.68),transparent);pointer-events:none;animation:cx68-card-shine 3s ease-in-out infinite}
.cx68-home-v3 .category-card a.cx68-card-cta:hover{transform:translateY(-2px);border-color:var(--gold);background:linear-gradient(180deg,rgba(255,183,46,.3),rgba(143,53,209,.34));box-shadow:inset 0 1px 0 rgba(255,255,255,.24),0 10px 24px rgba(18,2,31,.38);color:#fff}
@keyframes cx68-card-shine{0%,55%{left:-45%}85%,100%{left:125%}}
@keyframes header-button-pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.1)}}
@keyframes header-button-shockwave{0%{transform:scale(1);box-shadow:0 0 2px #c874f4,inset 0 0 1px #c874f4}95%{box-shadow:0 0 16px #f8ec5c,inset 0 0 16px #f8ec5c}100%{transform:scale(1.3)}}