/**
 * GEOCIKLO — Materials Intelligence Experience Stylesheet (/materiales/)
 *
 * Implements:
 * 1. Hero Section with Background Video and Inter Tight Black typography.
 * 2. 8 Corrientes 3D Visual Overview Grid (Materiales1-8.png).
 * 3. Interactive Material Selector Tabs & Active Ficha Técnica Canvas.
 * 4. 3-Column Intelligence Matrix & Connected Sectors.
 * 5. Premium Bottom CTA Card with Materiales9.png specialist visual.
 *
 * @package Geociklo\SiteSections
 */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap');

:root {
	--gc-m-dark: #073F4D;
	--gc-m-teal: #035877;
	--gc-m-deep-teal: #06605C;
	--gc-m-emerald: #3FAE6A;
	--gc-m-lime: #99D435;
	--gc-m-bg-light: #F7FAF8;
	--gc-m-bg-card: #FFFFFF;
	--gc-m-border: #E1ECE7;
	--gc-m-text-muted: #57737A;
	--gc-m-shadow-sm: 0 4px 20px rgba(7, 63, 77, 0.05);
	--gc-m-shadow-md: 0 14px 36px rgba(7, 63, 77, 0.08);
	--gc-m-shadow-lg: 0 24px 54px rgba(7, 63, 77, 0.12);
}

.gc-materials-root {
	font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background-color: #FFFFFF;
	color: var(--gc-m-dark);
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.gc-materials-root *,
.gc-materials-root *::before,
.gc-materials-root *::after {
	box-sizing: border-box;
}

/* Hide default theme shell titles */
.page:has(.gc-materials-root) .page-header,
.page:has(.gc-materials-root) .entry-header,
.page-id-46 .entry-title:not(.gc-mat-hero-title):not(.gc-mat-detail-h1),
body:has(.gc-materials-root) .page-header,
body:has(.gc-materials-root) .entry-header {
	display: none !important;
}

.gc-mat-container {
	max-width: var(--gc-page-max, 1380px);
	margin: 0 auto;
	padding-left: var(--gc-page-gutter, 24px);
	padding-right: var(--gc-page-gutter, 24px);
	box-sizing: border-box;
	width: 100%;
}

@media (max-width: 768px) {
	.gc-mat-container {
		padding-left: var(--gc-page-gutter-sm, 16px);
		padding-right: var(--gc-page-gutter-sm, 16px);
	}
}

.gc-highlight-text {
	color: var(--gc-m-emerald) !important;
	font-weight: 900;
	display: inline;
}

.gc-highlight-teal {
	color: var(--gc-m-teal) !important;
	font-weight: 900;
	display: inline;
}

/* Common Buttons */
.gc-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gc-m-emerald);
	color: #FFFFFF !important;
	font-family: 'Inter Tight', sans-serif;
	font-size: 14px;
	font-weight: 800;
	padding: 12px 24px;
	border-radius: 999px;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(63, 174, 106, 0.35);
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}

.gc-btn-primary:hover {
	background: #34965B;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(63, 174, 106, 0.45);
}

.gc-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #FFFFFF;
	color: var(--gc-m-dark) !important;
	font-family: 'Inter Tight', sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding: 11px 22px;
	border-radius: 999px;
	border: 1.5px solid rgba(7, 63, 77, 0.18);
	text-decoration: none !important;
	transition: all 0.2s ease;
	cursor: pointer;
}

.gc-btn-secondary:hover {
	border-color: var(--gc-m-dark);
	background: rgba(7, 63, 77, 0.04);
}

/* ==========================================================================
   01 — HUB HERO WITH VIDEO BACKGROUND
   ========================================================================== */
.gc-mat-hero-section {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #FFFFFF;
}

.gc-mat-hero-video-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.gc-mat-hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	opacity: 1;
}

.gc-mat-hero-overlay {
	display: block !important;
	position: absolute !important;
	inset: 0 !important;
	background: linear-gradient(
		90deg,
		#FFFFFF 0%,
		rgba(255, 255, 255, 0.96) 34%,
		rgba(255, 255, 255, 0.86) 48%,
		rgba(255, 255, 255, 0.35) 68%,
		rgba(255, 255, 255, 0.05) 100%
	) !important;
	z-index: 2 !important;
	pointer-events: none !important;
}

.gc-mat-hero-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 180px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.45) 45%,
		rgba(255, 255, 255, 0.90) 80%,
		#FFFFFF 100%
	);
	z-index: 2;
	pointer-events: none;
}

.gc-mat-hero-container {
	position: relative;
	z-index: 3;
	padding-top: calc(var(--gc-header-offset, 84px) + 32px);
	padding-bottom: 56px;
}

.gc-mat-hero-content {
	max-width: 820px;
}

.gc-mat-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #FFFFFF;
	border: 1.5px solid #D4ECE0;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 800;
	color: var(--gc-m-deep-teal);
	margin-bottom: 22px;
	letter-spacing: 0.08em;
	box-shadow: 0 2px 10px rgba(7, 63, 77, 0.04);
}

.gc-mat-hero-title {
	font-family: 'Inter Tight', sans-serif;
	font-size: clamp(34px, 4.2vw, 56px);
	font-weight: 900;
	line-height: 1.12;
	color: #032b36;
	margin: 0 0 22px 0;
	letter-spacing: -0.025em;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.gc-mat-hero-lead {
	font-size: clamp(16px, 1.2vw, 18.5px);
	font-weight: 500;
	line-height: 1.6;
	color: #0d3844;
	margin: 0;
	max-width: 740px;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   02 — 8 CORRIENTES VISUAL OVERVIEW GRID
   ========================================================================== */
.gc-mat-overview-section {
	padding: 48px 0 24px 0;
	background: #FFFFFF;
	border-bottom: 1px solid rgba(7, 63, 77, 0.06);
}

.gc-mat-streams-kicker-wrap {
	margin-bottom: 20px;
}

.gc-mat-streams-kicker {
	display: inline-block;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
	color: var(--gc-m-dark);
	text-transform: uppercase;
}

.gc-mat-top-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 1024px) {
	.gc-mat-top-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 580px) {
	.gc-mat-top-grid {
		grid-template-columns: 1fr;
	}
}

.gc-mat-top-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #FFFFFF;
	border: 1px solid rgba(7, 63, 77, 0.08);
	border-radius: 18px;
	padding: 16px 18px;
	text-align: left;
	cursor: pointer;
	position: relative;
	transition: all 0.22s ease;
	box-shadow: 0 4px 16px rgba(7, 63, 77, 0.03);
}

.gc-mat-top-card:hover {
	transform: translateY(-3px);
	border-color: var(--gc-m-emerald);
	box-shadow: 0 10px 28px rgba(7, 63, 77, 0.08);
}

.gc-mat-top-card__num {
	position: absolute;
	top: 10px;
	left: 14px;
	font-size: 11px;
	font-weight: 900;
	color: var(--gc-m-text-muted);
	letter-spacing: 0.05em;
}

.gc-mat-top-card__img-wrap {
	width: 68px;
	height: 68px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.gc-mat-top-card__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.22s ease;
}

.gc-mat-top-card:hover .gc-mat-top-card__img {
	transform: scale(1.06);
}

.gc-mat-top-card__body {
	flex: 1;
	min-width: 0;
	margin-top: 8px;
}

.gc-mat-top-card__title {
	font-family: 'Inter Tight', sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: var(--gc-m-dark);
	margin: 0 0 3px 0;
	line-height: 1.25;
}

.gc-mat-top-card__badge {
	font-size: 11.5px;
	font-weight: 500;
	color: var(--gc-m-text-muted);
	margin: 0;
	line-height: 1.35;
	white-space: normal;
}

/* ==========================================================================
   03 — MATERIAL INTELLIGENCE MATRIX (INTERACTIVE SWITCHER)
   ========================================================================== */
.gc-mat-matrix-section {
	padding: 48px 0 72px 0;
	background: var(--gc-m-bg-light);
}

.gc-mat-matrix-intro {
	margin-bottom: 24px;
}

.gc-mat-overview-lead {
	font-size: 15px;
	color: var(--gc-m-text-muted);
	line-height: 1.5;
	margin: 0;
	max-width: 900px;
}

/* 8-Column Selector Row */
.gc-mat-selector-row {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 36px;
	width: 100%;
}

@media (max-width: 1280px) {
	.gc-mat-selector-row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 12px;
	}
}

@media (max-width: 640px) {
	.gc-mat-selector-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}
}

.gc-mat-selector-card {
	background: #FFFFFF;
	border: 1.5px solid rgba(7, 63, 77, 0.09);
	border-radius: 18px;
	padding: 12px 10px 10px 10px;
	text-align: left;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.22s ease;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.gc-mat-selector-card:hover {
	transform: translateY(-2px);
	border-color: var(--gc-m-emerald);
	box-shadow: 0 8px 24px rgba(7, 63, 77, 0.06);
}

.gc-mat-selector-card.is-active {
	background: var(--gc-m-dark);
	border-color: var(--gc-m-dark);
	box-shadow: 0 10px 30px rgba(7, 63, 77, 0.16);
}

.gc-mat-scard-num {
	font-size: 11px;
	font-weight: 900;
	color: var(--gc-m-emerald);
	margin-bottom: 6px;
}

.gc-mat-selector-card.is-active .gc-mat-scard-num {
	color: var(--gc-m-lime);
}

.gc-mat-scard-img-wrap {
	width: 100%;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.gc-mat-scard-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gc-mat-scard-name {
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 900;
	color: var(--gc-m-dark);
	margin: 0 0 2px 0;
	line-height: 1.2;
	word-break: break-word;
	overflow-wrap: break-word;
}

.gc-mat-selector-card.is-active .gc-mat-scard-name {
	color: #FFFFFF;
}

.gc-mat-scard-badge {
	font-size: 10px;
	color: var(--gc-m-text-muted);
	line-height: 1.25;
	margin-bottom: 12px;
	flex: 1;
	word-break: break-word;
	overflow-wrap: break-word;
}

.gc-mat-selector-card.is-active .gc-mat-scard-badge {
	color: #A3C9D4;
}

.gc-mat-scard-arrow {
	font-size: 14px;
	font-weight: 900;
	color: var(--gc-m-emerald);
	align-self: flex-end;
	transition: transform 0.18s ease;
}

.gc-mat-selector-card.is-active .gc-mat-scard-arrow {
	color: var(--gc-m-lime);
	transform: translateX(2px);
}

/* Canvas Container */
.gc-mat-canvas {
	background: #FFFFFF;
	border: 1.5px solid var(--gc-m-border);
	border-radius: 28px;
	padding: 40px;
	box-shadow: var(--gc-m-shadow-lg);
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.gc-mat-canvas {
		padding: 24px;
		border-radius: 20px;
	}
}

.gc-mat-canvas-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 32px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--gc-m-border);
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.gc-mat-canvas-meta {
	max-width: 800px;
}

.gc-mat-stream-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
	color: var(--gc-m-emerald);
	margin-bottom: 8px;
	text-transform: uppercase;
}

.gc-mat-canvas-title {
	font-family: 'Inter Tight', sans-serif;
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 900;
	color: var(--gc-m-dark);
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.gc-mat-canvas-lead {
	font-size: 15px;
	line-height: 1.6;
	color: var(--gc-m-text-muted);
	margin: 0 0 16px 0;
}

.gc-mat-classification {
	background: rgba(3, 88, 119, 0.04);
	border-left: 3px solid var(--gc-m-teal);
	padding: 10px 14px;
	border-radius: 0 8px 8px 0;
}

.gc-mat-classification-title {
	display: block;
	font-size: 12.5px;
	font-weight: 800;
	color: var(--gc-m-dark);
	margin-bottom: 2px;
}

.gc-mat-classification-desc {
	font-size: 12px;
	color: var(--gc-m-text-muted);
	margin: 0;
	line-height: 1.45;
}

/* 3-Column Intelligence Matrix */
.gc-mat-matrix-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 36px;
}

@media (max-width: 992px) {
	.gc-mat-matrix-columns {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.gc-mat-col {
	background: #F8FAFC;
	border: 1px solid rgba(7, 63, 77, 0.08);
	border-radius: 20px;
	padding: 24px;
}

.gc-mat-col-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(7, 63, 77, 0.08);
	margin-bottom: 18px;
}

.gc-col-icon {
	font-size: 18px;
}

.gc-mat-col-head h4 {
	font-family: 'Inter Tight', sans-serif;
	font-size: 15px;
	font-weight: 900;
	color: var(--gc-m-dark);
	margin: 0;
}

.gc-mat-col-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gc-mat-prop-item {
	font-size: 13px;
	line-height: 1.5;
}

.gc-mat-prop-item strong {
	color: var(--gc-m-dark);
	font-weight: 800;
	display: block;
	margin-bottom: 2px;
}

.gc-mat-prop-item span {
	color: var(--gc-m-text-muted);
}

/* Viable Processes Stepper */
.gc-mat-steps-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gc-mat-step-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.gc-mstep-num {
	font-size: 11px;
	font-weight: 900;
	color: var(--gc-m-emerald);
	background: rgba(63, 174, 106, 0.12);
	padding: 3px 8px;
	border-radius: 6px;
	line-height: 1.2;
	flex-shrink: 0;
	margin-top: 2px;
}

.gc-mstep-info strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--gc-m-dark);
	margin-bottom: 2px;
}

.gc-mstep-info p {
	font-size: 12px;
	color: var(--gc-m-text-muted);
	margin: 0;
	line-height: 1.45;
}

/* Related Solutions Chips */
.gc-mat-sols-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gc-mat-sol-chip {
	display: block;
	background: #FFFFFF;
	border: 1px solid rgba(7, 63, 77, 0.10);
	border-radius: 12px;
	padding: 12px 14px;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.gc-mat-sol-chip:hover {
	border-color: var(--gc-m-emerald);
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(7, 63, 77, 0.05);
}

.gc-msol-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}

.gc-msol-eyebrow {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--gc-m-emerald);
	text-transform: uppercase;
}

.gc-msol-arrow {
	font-size: 12px;
	color: var(--gc-m-dark);
}

.gc-msol-name {
	font-family: 'Inter Tight', sans-serif;
	font-size: 13.5px;
	font-weight: 900;
	color: var(--gc-m-dark);
	margin: 0;
	line-height: 1.3;
}

/* Sectores Relacionados */
.gc-mat-rel-col-full {
	border-top: 1px solid var(--gc-m-border);
	padding-top: 28px;
}

.gc-mat-rel-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.gc-rel-icon {
	font-size: 24px;
}

.gc-rel-eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	color: var(--gc-m-emerald);
	text-transform: uppercase;
}

.gc-mat-rel-head h3 {
	font-family: 'Inter Tight', sans-serif;
	font-size: 18px;
	font-weight: 900;
	color: var(--gc-m-dark);
	margin: 2px 0 0 0;
}

.gc-mat-rel-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 768px) {
	.gc-mat-rel-list {
		grid-template-columns: 1fr;
	}
}

.gc-mat-rel-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #F8FAFC;
	border: 1px solid rgba(7, 63, 77, 0.08);
	border-radius: 16px;
	padding: 16px 18px;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.gc-mat-rel-card:hover {
	background: #FFFFFF;
	border-color: var(--gc-m-emerald);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(7, 63, 77, 0.06);
}

.gc-mrel-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--gc-m-teal);
	text-transform: uppercase;
	margin-bottom: 4px;
}

.gc-mrel-info h4 {
	font-family: 'Inter Tight', sans-serif;
	font-size: 14px;
	font-weight: 900;
	color: var(--gc-m-dark);
	margin: 0 0 4px 0;
}

.gc-mrel-info p {
	font-size: 12px;
	color: var(--gc-m-text-muted);
	margin: 0;
	line-height: 1.4;
}

.gc-mrel-arrow {
	font-size: 16px;
	font-weight: 900;
	color: var(--gc-m-emerald);
	margin-left: 12px;
}

/* ==========================================================================
   04 — GLOBAL MATERIAL CTA CARD (WITH MATERIALES9.PNG)
   ========================================================================== */
.gc-mat-cta-section {
	padding: 40px 0 84px 0;
	background: var(--gc-m-bg-light);
}

.gc-mat-cta-card {
	background: #FFFFFF;
	border: 1.5px solid var(--gc-m-border);
	border-radius: 28px;
	padding: 44px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	box-shadow: 0 16px 44px rgba(7, 63, 77, 0.06);
	overflow: hidden;
	position: relative;
}

@media (max-width: 992px) {
	.gc-mat-cta-card {
		flex-direction: column;
		padding: 32px;
		gap: 28px;
		text-align: left;
	}
}

.gc-mat-cta-content {
	max-width: 580px;
	flex: 1;
}

.gc-mat-cta-title {
	font-family: 'Inter Tight', sans-serif;
	font-size: clamp(24px, 2.6vw, 36px);
	font-weight: 900;
	color: var(--gc-m-dark);
	line-height: 1.18;
	letter-spacing: -0.02em;
	margin: 0 0 14px 0;
}

.gc-mat-cta-desc {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--gc-m-text-muted);
	margin: 0 0 24px 0;
}

.gc-mat-cta-buttons {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.gc-icon-chat {
	color: var(--gc-m-teal);
}

.gc-mat-cta-visual {
	flex: 0 0 380px;
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 992px) {
	.gc-mat-cta-visual {
		flex: none;
		width: 100%;
		justify-content: center;
	}
}

.gc-mat-cta-arch {
	width: 360px;
	height: 240px;
	border-radius: 120px 120px 16px 16px;
	overflow: hidden;
	border: 3px solid rgba(63, 174, 106, 0.3);
	box-shadow: 0 12px 36px rgba(7, 63, 77, 0.12);
}

.gc-mat-cta-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==========================================================================
   OFFICIAL LIVE INTELLIGENCE BANNER & NEXT BEST ACTION
   ========================================================================== */
.gc-mat-intel-card {
	display: grid;
	grid-template-columns: 240px 1fr 280px;
	gap: 20px;
	background: #073F4D;
	border: 1px solid rgba(63, 174, 106, 0.3);
	border-radius: 16px;
	padding: 20px 24px;
	margin-bottom: 32px;
	color: #F4F8F6;
	font-family: 'Inter Tight', sans-serif;
	box-shadow: 0 12px 32px rgba(7, 63, 77, 0.12);
	position: relative;
	overflow: hidden;
}

.gc-mat-intel-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: #3FAE6A;
}

/* Column 1: Metric */
.gc-mat-intel-card__metric-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-mat-intel-card__badge-row {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.gc-mat-intel-card__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #3FAE6A;
	box-shadow: 0 0 8px #3FAE6A;
}

.gc-mat-intel-card__badge-text {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #3FAE6A;
	text-transform: uppercase;
}

.gc-mat-intel-card__figure-row {
	display: flex;
	flex-direction: column;
}

.gc-mat-intel-card__value {
	font-size: clamp(32px, 3vw, 42px);
	font-weight: 900;
	color: #FFFFFF;
	line-height: 1;
	letter-spacing: -0.03em;
	font-feature-settings: 'tnum' on, 'lnum' on;
	margin-bottom: 6px;
}

.gc-mat-intel-card__period {
	font-size: 11.5px;
	font-weight: 600;
	color: #94A3B8;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Column 2: Description & Provenance */
.gc-mat-intel-card__desc-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-mat-intel-card__label {
	font-size: 15px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 6px 0;
	line-height: 1.3;
}

.gc-mat-intel-card__note {
	font-size: 12.5px;
	line-height: 1.45;
	color: #CBD5E1;
	margin: 0 0 10px 0;
}

.gc-mat-intel-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 11.5px;
}

.gc-mat-intel-card__source {
	color: #94A3B8;
}

.gc-mat-intel-card__source strong {
	color: #E2E8F0;
}

.gc-mat-intel-card__link {
	display: inline-flex;
	align-items: center;
	color: #3FAE6A;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.15s ease;
}

.gc-mat-intel-card__link:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

/* Column 3: Next Best Action */
.gc-mat-intel-card__nba-col {
	display: flex;
	align-items: center;
}

.gc-mat-intel-nba {
	background: rgba(6, 96, 92, 0.35);
	border: 1px solid rgba(63, 174, 106, 0.25);
	border-radius: 12px;
	padding: 14px 16px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.gc-mat-intel-nba__badge {
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #3FAE6A;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.gc-mat-intel-nba__prompt {
	font-size: 12px;
	line-height: 1.35;
	color: #E2E8F0;
	margin: 0 0 10px 0;
	font-weight: 500;
}

.gc-mat-intel-nba__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #3FAE6A;
	color: #073F4D;
	font-size: 11.5px;
	font-weight: 800;
	padding: 8px 12px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.18s ease, transform 0.18s ease;
	text-align: center;
}

.gc-mat-intel-nba__cta:hover {
	background: #4ADE80;
	color: #032b36;
	transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1100px) {
	.gc-mat-intel-card {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.gc-mat-intel-card__metric-col,
	.gc-mat-intel-card__desc-col,
	.gc-mat-intel-card__no-stream-col,
	.gc-mat-intel-card__context-col {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 14px;
	}
}

/* National Aggregate Layout (Honest Non-Stream Hierarchy) */
.gc-mat-intel-card--aggregate {
	background: #062F3A;
	border-color: rgba(148, 163, 184, 0.25);
}

.gc-mat-intel-card--aggregate::before {
	background: #94A3B8;
}

.gc-mat-intel-card__no-stream-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-mat-intel-card__badge-text--neutral {
	color: #E2E8F0;
	background: rgba(255, 255, 255, 0.08);
	padding: 3px 8px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 9.5px;
	letter-spacing: 0.08em;
}

.gc-mat-intel-card__no-stream-notice {
	font-size: 13px;
	line-height: 1.45;
	color: #CBD5E1;
	margin: 8px 0 0 0;
}

.gc-mat-intel-card__context-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-mat-intel-card__context-eyebrow {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.07em;
	color: #94A3B8;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.gc-mat-intel-card__context-figure {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 4px;
}

.gc-mat-intel-card__context-val {
	font-size: 22px;
	font-weight: 900;
	color: #F8FAFC;
	line-height: 1.1;
}

.gc-mat-intel-card__context-metric {
	font-size: 12px;
	color: #CBD5E1;
}

.gc-mat-intel-card__context-scope {
	font-size: 11px;
	color: #94A3B8;
	margin-bottom: 6px;
}

.gc-mat-intel-card__mandatory-disclaimer {
	font-size: 11px;
	font-weight: 700;
	color: #FBBF24;
	margin: 0;
	line-height: 1.35;
}

/* Unavailable State */
.gc-mat-intel-card__dot--muted {
	background-color: #94A3B8;
	box-shadow: none;
}

.gc-mat-intel-card__unavailable-label {
	font-size: 14px;
	font-weight: 700;
	color: #CBD5E1;
	margin-top: 6px;
}



/* Verification Gate: keep material selector cards inside narrow mobile containers. */
@media (max-width: 580px) {
	.gc-materials-root .gc-mat-top-card,
	#gc-materials-hub-root .gc-mat-top-card {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
		white-space: normal;
	}

	.gc-materials-root .gc-mat-top-card__body,
	#gc-materials-hub-root .gc-mat-top-card__body {
		min-width: 0;
		white-space: normal;
	}
}
