/**
 * iHub Category Archive — taxonomy-ihub-category.php
 *
 * Renders /ihub/{category-slug}/ for all 5 ihub-category terms.
 * Per-category accent is driven by the variant modifier class
 * on the root: .gc-ihub-cat--gp / --b2b / --pay / --aff / --prog.
 *
 * Sections (top → bottom):
 *   1. Breadcrumb
 *   2. Hero — 2-col grid (main content + stats sidebar)
 *   3. Companies grid — 3-up cards, premium pinned
 *   4. Get Listed CTA — navy panel matching /ihub/
 *   5. Other Categories — 4 variant-coloured tiles
 *
 * Container-width section dividers via ::after (matches /ihub/ pattern).
 * The hero's edge-to-edge border-bottom is the only full-bleed divider.
 */


/* ════════════════════════════════════════════════════════════════════
   ROOT — CSS custom properties for category accent variants
   The default (.gc-ihub-cat) inherits the teal theme accent.
   Each variant class overrides only the --cat-* tokens.
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat {
	--cat:        var(--gc-primary, #00C6AE);
	--cat-dark:   var(--gc-primary-dark, #00A894);
	--cat-soft:   var(--gc-primary-soft, #E8FAF8);
	--cat-border: rgba(0, 198, 174, .22);
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* Game Providers (default — kept explicit for clarity) */
.gc-ihub-cat--gp {
	--cat:        #00C6AE;
	--cat-dark:   #00A894;
	--cat-soft:   #E8FAF8;
	--cat-border: rgba(0, 198, 174, .22);
}

/* B2B Providers */
.gc-ihub-cat--b2b {
	--cat:        #2563EB;
	--cat-dark:   #1D4ED8;
	--cat-soft:   #EFF6FF;
	--cat-border: rgba(37, 99, 235, .22);
}

/* Payment Solutions */
.gc-ihub-cat--pay {
	--cat:        #EA580C;
	--cat-dark:   #C2410C;
	--cat-soft:   #FFF7ED;
	--cat-border: rgba(234, 88, 12, .22);
}

/* Affiliates / Publishers */
.gc-ihub-cat--aff {
	--cat:        #22C55E;
	--cat-dark:   #16A34A;
	--cat-soft:   #F0FDF4;
	--cat-border: rgba(34, 197, 94, .22);
}

/* Affiliate Programs */
.gc-ihub-cat--prog {
	--cat:        #8B5CF6;
	--cat-dark:   #7C3AED;
	--cat-soft:   #F5F3FF;
	--cat-border: rgba(139, 92, 246, .22);
}


/* ════════════════════════════════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__crumb {
	background: var(--gc-bg);
	padding: 18px 0 0;
}
.gc-ihub-cat__crumb-in {
	max-width: 1280px;
	margin: 0 auto;
	font-size: 12.5px;
	color: var(--gc-text-light, #94A3B8);
	padding: 0 25px;
}
.gc-ihub-cat__crumb-in a {
	color: var(--cat-dark);
	font-weight: 600;
	text-decoration: none;
	transition: color .15s ease;
}
.gc-ihub-cat__crumb-in a:hover { color: var(--cat); }
.gc-ihub-cat__crumb-sep { margin: 0 6px; color: var(--gc-border, #E4EAF2); }


/* ════════════════════════════════════════════════════════════════════
   HERO — 2-col grid (main + stats sidebar)
   The hero's bottom border is the ONLY edge-to-edge divider on the page.
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__hero {
	background: var(--gc-bg);
	padding: 38px 0 56px;
	border-bottom: 0.5px solid var(--gc-border, #E4EAF2);
}
.gc-ihub-cat__hero-in {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: 56px;
	align-items: center;
	padding: 0 25px;
}
.gc-ihub-cat__hero-main { min-width: 0; }
.gc-ihub-cat__hero-side { min-width: 0; }

/* Eyebrow badge with pulse dot — same pattern as /ihub/ */
.gc-ihub-cat__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--cat-soft);
	border: 1px solid var(--cat-border);
	color: var(--cat-dark);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.gc-ihub-cat__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cat);
	animation: gc-ihub-cat-pulse 2s infinite;
}
@keyframes gc-ihub-cat-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: .5; transform: scale(.85); }
}

.gc-ihub-cat__h1 {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -1.2px;
	line-height: 1.08;
	margin: 0 0 18px;
}

/* Lede — accepts HTML from term_description() so allow normal block flow */
.gc-ihub-cat__lede {
	font-size: 16px;
	line-height: 1.75;
	color: var(--gc-text-muted, #64748B);
	max-width: 560px;
	margin-bottom: 28px;
}
.gc-ihub-cat__lede p { margin: 0 0 14px; }
.gc-ihub-cat__lede p:last-child { margin: 0; }
.gc-ihub-cat__lede strong { color: var(--gc-navy, #0D1B3E); font-weight: 600; }
.gc-ihub-cat__lede a {
	color: var(--cat-dark);
	font-weight: 600;
	border-bottom: 1px solid currentColor;
	transition: opacity .15s;
}
.gc-ihub-cat__lede a:hover { opacity: .7; }

.gc-ihub-cat__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}
.gc-ihub-cat__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-weight: 700;
	font-size: 13.5px;
	padding: 13px 22px;
	border-radius: 10px;
	text-decoration: none;
	transition: all .18s ease;
	cursor: pointer;
}
.gc-ihub-cat__btn--primary {
	background: var(--cat);
	color: #ffffff;
	border: 1.5px solid var(--cat);
}
.gc-ihub-cat__btn--primary:hover {
	background: var(--cat-dark);
	border-color: var(--cat-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0, 198, 174, .32);
	color: #ffffff;
}

/* Plain back-link sits inline with the primary CTA */
.gc-ihub-cat__back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gc-text-muted, #64748B);
	text-decoration: none;
	transition: color .15s ease;
}
.gc-ihub-cat__back-link:hover { color: var(--cat-dark); }

/* Stats — 2x2 boxed grid in the right column of the hero */
.gc-ihub-cat__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.gc-ihub-cat__stat {
	background: var(--gc-bg-soft);
	border: 1px solid var(--gc-border, #E4EAF2);
	border-radius: 12px;
	padding: 18px 14px;
	text-align: center;
	transition: border-color .18s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.gc-ihub-cat__stat:hover { border-color: var(--cat-border); }
.gc-ihub-cat__stat-num {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 28px;
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	line-height: 1;
	margin-bottom: 6px;
}
.gc-ihub-cat__stat-num span {
	color: var(--cat);
	font-size: 22px;
}
.gc-ihub-cat__stat-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gc-text-light, #94A3B8);
}

/* Accent variant for the "Vetted" tile */
.gc-ihub-cat__stat--accent {
	background: var(--cat-soft);
	border-color: var(--cat-border);
}
.gc-ihub-cat__stat--accent .gc-ihub-cat__stat-num,
.gc-ihub-cat__stat--accent .gc-ihub-cat__stat-num span { color: var(--cat-dark); }
.gc-ihub-cat__stat--accent .gc-ihub-cat__stat-label { color: var(--cat-dark); }


/* ════════════════════════════════════════════════════════════════════
   COMPANIES GRID — 3-up cards
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__list {
	background: var(--gc-bg);
	padding: 56px 0;
	position: relative;
}
.gc-ihub-cat__list-in { max-width: 1280px; margin: 0 auto;  padding: 0 25px; }

.gc-ihub-cat__section-head { margin-bottom: 32px; }
.gc-ihub-cat__eyebrow {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--cat-dark);
	margin-bottom: 8px;
}
.gc-ihub-cat__h2 {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.6px;
	line-height: 1.15;
	margin: 0;
}

.gc-ihub-cat__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gc-ihub-cat__card {
	background: var(--gc-bg-soft);
	border: 1px solid var(--gc-border, #E4EAF2);
	border-radius: 14px;
	padding: 20px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
	position: relative;
}
.gc-ihub-cat__card:hover {
	border-color: var(--cat);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(13, 27, 62, .08);
}

.gc-ihub-cat__card-logo {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: var(--gc-bg-soft, #F8FAFC);
	border: 1px solid var(--gc-border, #E4EAF2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}
.gc-ihub-cat__card-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 9px;
}
.gc-ihub-cat__card-logo-fallback {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 22px;
	font-weight: 800;
	color: var(--cat-dark);
}

.gc-ihub-cat__card-body { flex: 1; min-width: 0; }

.gc-ihub-cat__card-name {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 15px;
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.2px;
	margin-bottom: 4px;
}

.gc-ihub-cat__card-meta {
	font-size: 11.5px;
	color: var(--gc-text-light, #94A3B8);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.gc-ihub-cat__card-flag { font-size: 14px; line-height: 1; }

.gc-ihub-cat__card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 10px;
}
.gc-ihub-cat__tag {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--cat-soft);
	color: var(--cat-dark);
}

.gc-ihub-cat__card-desc {
	font-size: 13px;
	color: var(--gc-text-muted, #64748B);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gc-ihub-cat__card-footer {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--gc-border-soft, #F0F4F9);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gc-ihub-cat__card-cta {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--cat-dark);
}

/* Featured badge — subtle, top-right */
.gc-ihub-cat__card-featured-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--cat);
	color: #ffffff;
}

/* Empty state — no companies yet */
.gc-ihub-cat__empty {
	text-align: center;
	padding: 80px 24px;
	border: 1px dashed var(--gc-border, #E4EAF2);
	border-radius: 16px;
	background: var(--gc-bg-soft, #F8FAFC);
}
.gc-ihub-cat__empty-icon {
	font-size: 38px;
	margin-bottom: 16px;
}
.gc-ihub-cat__empty-title {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 22px;
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.4px;
	margin: 0 0 10px;
}
.gc-ihub-cat__empty-text {
	font-size: 14.5px;
	color: var(--gc-text-muted, #64748B);
	line-height: 1.7;
	max-width: 520px;
	margin: 0 auto 24px;
}


/* ════════════════════════════════════════════════════════════════════
   ABOUT THIS SECTION — conditional editorial block (term description)
   Single-column reading width (max 980px), full prose styling.
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__about {
	background: var(--gc-bg);
	padding: 56px 0;
	position: relative;
}
.gc-ihub-cat__about-in {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 25px;
}
.gc-ihub-cat__about .gc-ihub-cat__eyebrow {
	margin-bottom: 14px;
}
.gc-ihub-cat__about-body {
	/* full container width — matches the divider lines above */
}
.gc-ihub-cat__about-body h2 {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.6px;
	line-height: 1.2;
	margin: 0 0 28px;
}
.gc-ihub-cat__about-body h3 {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 19px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.3px;
	line-height: 1.3;
	margin: 32px 0 14px;
}
.gc-ihub-cat__about-body p {
	font-size: 15px;
	line-height: 1.85;
	color: var(--gc-text-muted, #64748B);
	margin: 0 0 20px;
}
.gc-ihub-cat__about-body p:last-child { margin: 0; }
.gc-ihub-cat__about-body strong {
	color: var(--gc-navy, #0D1B3E);
	font-weight: 700;
}
.gc-ihub-cat__about-body em { font-style: italic; }
.gc-ihub-cat__about-body a {
	color: var(--cat-dark);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--cat-border);
	text-underline-offset: 3px;
	transition: text-decoration-color .15s ease;
}
.gc-ihub-cat__about-body a:hover {
	text-decoration-color: var(--cat);
}
.gc-ihub-cat__about-body ul,
.gc-ihub-cat__about-body ol {
	margin: 0 0 20px 24px;
	padding: 0;
	color: var(--gc-text-muted, #64748B);
	font-size: 15px;
	line-height: 1.85;
}
.gc-ihub-cat__about-body li { margin-bottom: 6px; }


/* ════════════════════════════════════════════════════════════════════
   GET LISTED CTA — navy panel (matches /ihub/ main page)
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__cta {
	background: var(--gc-bg);
	padding: 56px 0;
	position: relative;
}
.gc-ihub-cat__cta-in { max-width: 1280px; margin: 0 auto;  padding: 0 25px; }

.gc-ihub-cat__cta-panel {
	position: relative;
	background: linear-gradient(135deg, #0D1B3E 0%, #14264F 100%);
	border-radius: 18px;
	padding: 48px 56px;
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	overflow: hidden;
}
.gc-ihub-cat__cta-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 80% at 85% 50%, rgba(0, 198, 174, .12), transparent 55%);
	pointer-events: none;
}

.gc-ihub-cat__cta-body { position: relative; z-index: 1; max-width: 640px; }
.gc-ihub-cat__cta-eyebrow {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gc-primary, #00C6AE);
	margin-bottom: 8px;
}
.gc-ihub-cat__cta-title {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -.4px;
	line-height: 1.2;
	margin-bottom: 10px;
}
.gc-ihub-cat__cta-sub {
	font-size: 14.5px;
	color: rgba(255, 255, 255, .7);
	line-height: 1.65;
	margin: 0;
}
.gc-ihub-cat__cta-action { position: relative; z-index: 1; }
.gc-ihub-cat__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gc-primary, #00C6AE);
	color: #ffffff;
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-weight: 700;
	font-size: 14px;
	padding: 14px 26px;
	border-radius: 10px;
	text-decoration: none;
	transition: all .2s ease;
}
.gc-ihub-cat__cta-btn:hover {
	background: var(--gc-primary-dark, #00A894);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 198, 174, .3);
}


/* ════════════════════════════════════════════════════════════════════
   OTHER CATEGORIES — 4 variant-coloured tiles
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__others {
	background: var(--gc-bg);
	padding: 56px 0;
	position: relative;
}
.gc-ihub-cat__others-in { max-width: 1280px; margin: 0 auto;  padding: 0 25px; }

.gc-ihub-cat__others-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 32px;
}

.gc-ihub-cat__other {
	background: var(--gc-bg-soft);
	border: 1px solid var(--gc-border, #E4EAF2);
	border-radius: 14px;
	padding: 24px 22px;
	text-decoration: none;
	color: inherit;
	transition: all .2s ease;
	position: relative;
	display: block;
}
.gc-ihub-cat__other:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(13, 27, 62, .08);
}
.gc-ihub-cat__other-pill {
	display: inline-block;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 4px;
	margin-bottom: 14px;
}
.gc-ihub-cat__other-name {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 15px;
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.3px;
	margin-bottom: 6px;
}
.gc-ihub-cat__other-desc {
	font-size: 12.5px;
	color: var(--gc-text-muted, #64748B);
	line-height: 1.55;
	margin-bottom: 14px;
}
.gc-ihub-cat__other-cta {
	font-size: 11.5px;
	font-weight: 700;
}

/* Variant tokens for the OTHER-categories tile — independent of the
   parent .gc-ihub-cat--{x} so each tile picks up its own colour. */
.gc-ihub-cat__other--gp    { --tile: #00A894; --tile-soft: #E8FAF8; }
.gc-ihub-cat__other--b2b   { --tile: #2563EB; --tile-soft: #EFF6FF; }
.gc-ihub-cat__other--pay   { --tile: #C2410C; --tile-soft: #FFF7ED; }
.gc-ihub-cat__other--aff   { --tile: #16A34A; --tile-soft: #F0FDF4; }
.gc-ihub-cat__other--prog  { --tile: #7C3AED; --tile-soft: #F5F3FF; }

.gc-ihub-cat__other:hover { border-color: var(--tile); }
.gc-ihub-cat__other-pill { background: var(--tile-soft); color: var(--tile); }
.gc-ihub-cat__other-cta  { color: var(--tile); }


/* ════════════════════════════════════════════════════════════════════
   Container-width section dividers (matches /ihub/ pattern)
   Hero already has an edge-to-edge border-bottom; everything below
   uses ::after for a container-width 0.5px line.
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__list::after,
.gc-ihub-cat__about::after,
.gc-ihub-cat__cta::after,
.gc-ihub-cat__others::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 64px);
	max-width: 1280px;
	height: 0.5px;
	background: var(--gc-border, #E4EAF2);
}


/* ════════════════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
	.gc-ihub-cat__hero-in       { grid-template-columns: 1fr; gap: 32px; }
	.gc-ihub-cat__grid          { grid-template-columns: repeat(2, 1fr); }
	.gc-ihub-cat__others-grid   { grid-template-columns: repeat(2, 1fr); }
	.gc-ihub-cat__cta-panel     { padding: 36px 28px; }
}
@media (max-width: 600px) {
	.gc-ihub-cat__grid          { grid-template-columns: repeat(2, 1fr); }
	.gc-ihub-cat__card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 12px;
	}
	.gc-ihub-cat__card-body     { width: 100%; text-align: center; }
	.gc-ihub-cat__card-meta     { justify-content: center; }
	.gc-ihub-cat__card-tags     { justify-content: center; }
	.gc-ihub-cat__card-footer,
	.gc-ihub-cat__card-cta      { justify-content: center; text-align: center; }
	.gc-ihub-cat__others-grid   { grid-template-columns: 1fr; }
	.gc-ihub-cat__hero          { padding: 32px 0 44px; }
	.gc-ihub-cat__list,
	.gc-ihub-cat__about,
	.gc-ihub-cat__cta,
	.gc-ihub-cat__others        { padding: 44px 0; }
	.gc-ihub-cat__crumb-in,
	.gc-ihub-cat__hero-in,
	.gc-ihub-cat__list-in,
	.gc-ihub-cat__about-in,
	.gc-ihub-cat__cta-in,
	.gc-ihub-cat__others-in,
	.gc-ihub-cat__tabs-in,
	.gc-ihub-cat__premium-in    { padding-left: 20px; padding-right: 20px; }
	.gc-ihub-cat__h1            { font-size: 30px; letter-spacing: -.8px; }
	.gc-ihub-cat__stats         { grid-template-columns: repeat(4, 1fr); gap: 8px; align-items: stretch; }
	.gc-ihub-cat__stat          { padding: 14px 6px; }
	.gc-ihub-cat__stat-num      { font-size: 20px; }
	.gc-ihub-cat__stat-label    { font-size: 8.5px; letter-spacing: 0.4px; line-height: 1.3; }
	.gc-ihub-cat__cta-panel     { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
	.gc-ihub-cat__list::after,
	.gc-ihub-cat__about::after,
	.gc-ihub-cat__cta::after,
	.gc-ihub-cat__others::after { width: calc(100% - 40px); }
}

/* ════════════════════════════════════════════════════════════════════
   ★ TAB FILTER ROW — horizontal scrollable tabs + search input
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__tabs-wrap {
	background: var(--gc-bg);
	padding: 14px 0 0;
	border-bottom: 1px solid var(--gc-border, #E4EAF2);
}
.gc-ihub-cat__tabs-in {
	max-width: var(--max-width, 1280px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding: 0 25px;
}
.gc-ihub-cat__tabs {
	display: flex;
	align-items: center;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	flex: 1;
	min-width: 0;
}
.gc-ihub-cat__tabs::-webkit-scrollbar { display: none; }
.gc-ihub-cat__tab {
	padding: 13px 16px 15px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--gc-text-muted, #64748B);
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: all .15s ease;
	text-decoration: none;
	letter-spacing: -.1px;
}
.gc-ihub-cat__tab:hover { color: var(--gc-navy, #0D1B3E); }
.gc-ihub-cat__tab--active {
	color: var(--cat-curr-dark, #00A894);
	border-bottom-color: var(--cat-curr, #00C6AE);
	font-weight: 700;
}

.gc-ihub-cat__tabs-tools {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 8px;
	flex-shrink: 0;
	margin: 0;
}
.gc-ihub-cat__tabs-search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--gc-bg-soft);
	border: 1.5px solid var(--gc-border, #E4EAF2);
	border-radius: 9px;
	padding: 7px 13px;
	transition: border-color .15s ease;
	min-width: 200px;
}
.gc-ihub-cat__tabs-search:focus-within { border-color: var(--cat-curr, #00C6AE); }
.gc-ihub-cat__tabs-search input {
	border: none;
	background: none;
	outline: none;
	font-family: inherit;
	font-size: 13px;
	color: var(--gc-text, #1E293B);
	width: 100%;
}
.gc-ihub-cat__tabs-search input::placeholder { color: var(--gc-text-light, #94A3B8); }
.gc-ihub-cat__tabs-search-icon {
	width: 13px;
	height: 13px;
	color: var(--gc-text-light, #94A3B8);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gc-ihub-cat__tabs-search-icon svg { width: 100%; height: 100%; display: block; }


/* ════════════════════════════════════════════════════════════════════
   ★ PREMIUM PARTNERS SECTION — gold accent, 4-up centered cards
   ════════════════════════════════════════════════════════════════════ */
.gc-ihub-cat__premium {
	background: var(--gc-bg);
	padding: 48px 0 28px;
}
.gc-ihub-cat__premium-in {
	max-width: var(--max-width, 1280px);
	margin: 0 auto;
	padding: 0 25px;
}
.gc-ihub-cat__eyebrow--premium {
	color: #D97706;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.gc-ihub-cat__premium-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.gc-ihub-cat__pcard {
	background: var(--gc-bg-soft);
	border: 1.5px solid var(--gc-border, #E4EAF2);
	border-radius: 14px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
	position: relative;
	text-decoration: none;
	color: inherit;
}
.gc-ihub-cat__pcard:hover {
	border-color: #F59E0B;
	transform: translateY(-3px);
	box-shadow: 0 10px 32px rgba(245, 158, 11, .15);
}
.gc-ihub-cat__pcard-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .08em;
	background: linear-gradient(135deg, #F59E0B, #D97706);
	color: #fff;
	margin-bottom: 12px;
}
.gc-ihub-cat__pcard-logo {
	width: 64px;
	height: 64px;
	border-radius: 13px;
	background: var(--gc-bg-soft, #F8FAFC);
	border: 1px solid var(--gc-border, #E4EAF2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 13px;
	overflow: hidden;
}
.gc-ihub-cat__pcard-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}
.gc-ihub-cat__pcard-logo-fallback {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 22px;
	font-weight: 800;
	color: var(--cat-curr-dark, #00A894);
}
.gc-ihub-cat__pcard-name {
	font-family: var(--gc-font-display, 'Sora', system-ui, sans-serif);
	font-size: 15px;
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.3px;
	margin-bottom: 6px;
}
.gc-ihub-cat__pcard-meta {
	font-size: 11.5px;
	color: var(--gc-text-light, #94A3B8);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.gc-ihub-cat__pcard-flag { font-size: 14px; line-height: 1; }
.gc-ihub-cat__pcard-desc {
	font-size: 12.5px;
	color: var(--gc-text-muted, #64748B);
	line-height: 1.6;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.gc-ihub-cat__pcard-tags {
	margin-bottom: 14px;
	display: flex;
	gap: 4px;
	justify-content: center;
	flex-wrap: wrap;
}
.gc-ihub-cat__pcard-cta {
	margin-top: auto;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--cat-curr-dark, #00A894);
}


/* ════════════════════════════════════════════════════════════════════
   FEATURED → PREMIUM rename: card badge gold variant (kept old class
   names where they don't appear, the template doesn't use the old
   "card-featured-badge" anymore).
   ════════════════════════════════════════════════════════════════════ */


/* Premium slider dots — hidden on desktop (grid), shown on mobile. */
.gc-ihub-cat__premium-dots { display: none; }
.gc-ihub-cat__premium-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gc-border, #E4EAF2);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background .2s ease, width .2s ease;
}
.gc-ihub-cat__premium-dot.is-active {
	background: #F59E0B;
	width: 20px;
	border-radius: 4px;
}

/* Responsive */
@media (max-width: 1100px) {
	.gc-ihub-cat__premium-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	/* Premium becomes a swipe slider — one card per view, scroll-snap. */
	.gc-ihub-cat__premium-grid {
		display: flex;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 14px;
		padding-bottom: 4px;
	}
	.gc-ihub-cat__premium-grid::-webkit-scrollbar { display: none; }
	.gc-ihub-cat__pcard {
		flex: 0 0 100%;
		scroll-snap-align: center;
	}
	.gc-ihub-cat__premium-dots {
		display: flex;
		justify-content: center;
		gap: 7px;
		margin-top: 14px;
	}
	.gc-ihub-cat__tabs {
		flex-wrap: wrap;
		overflow-x: visible;
		gap: 2px 10px;
	}
	.gc-ihub-cat__tab { padding: 8px 8px 10px; }
	.gc-ihub-cat__tabs-in { flex-direction: column; align-items: stretch; }
	.gc-ihub-cat__tabs-tools { padding-bottom: 14px; }
	.gc-ihub-cat__tabs-search { min-width: 0; }
}
/* ── Dark mode: soft-tint badges/stats ──
   --cat-soft and --tile-soft are light tints that look like white blocks on
   dark. Swap to a subtle translucent fill so they blend into the dark UI
   while keeping their accent text colour. */
[data-theme="dark"] .gc-ihub-cat__stat--accent {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.10);
}
[data-theme="dark"] .gc-ihub-cat__tag {
	background: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .gc-ihub-cat__other-pill {
	background: rgba(255, 255, 255, 0.06);
}

/* ── Dark mode: page eyebrow badge (IHUB · GAME PROVIDERS) ──
   --cat-soft is a light tint that renders as a white pill on dark. Use a
   translucent teal fill + teal border so it matches the iHub hub badge. */
[data-theme="dark"] .gc-ihub-cat__badge {
	background: rgba(0, 198, 174, 0.10);
	border-color: rgba(0, 198, 174, 0.30);
}
/* ── Dark: logo plates blend into the card with only a subtle grey
      border (no white plate) — matches the casino logo treatment. ── */
[data-theme="dark"] .gc-ihub-cat__card-logo,
[data-theme="dark"] .gc-ihub-cat__pcard-logo {
	background: transparent;
	border-color: var(--gc-border);
}