/* Scope everything to .csi-wrapper to prevent theme conflicts */
.csi-wrapper {
	font-family: ‘Open Sans’, -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif;
	color: #2a3033;
	line-height: 1.6;
	background-color: #f9fafb;
	padding-bottom: 4rem;
}

.csi-wrapper * {
	box-sizing: border-box;
}

/* WSU Colors */
.wsu-crimson-text {
	color: #981e32;
}

.wsu-crimson-bg {
	background-color: #981e32;
	color: white;
}

/* Typography */
.csi-wrapper h1, .csi-wrapper h2, .csi-wrapper h3 {
	font-family: ‘Montserrat’, sans-serif;
	margin-top: 0;
	color: #111827;
}

.csi-wrapper h1 {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.csi-wrapper h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.csi-wrapper h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: .5rem;
}

.csi-wrapper p {
	margin-bottom: 1rem;
}

/* Layout Containers */
.csi-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.csi-section {
	padding: 4rem 0;
	border-bottom: 1px solid #e5e7eb;
}

/* Hero Specific Layout */
.csi-hero-flex {
	display: flex;
	flex-direction: column;
}

@media (min-width: 1024px) {
	.csi-hero-flex {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.csi-hero-text {
		width: 50%;
	}
	
	.csi-hero-graphic {
		width: 45%;
	}
}

/* Abstract Graphic Grid */
.csi-graphic-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	opacity: .8;
	max-width: 400px;
	margin: 0 auto;
}

.csi-graphic-box {
	background: #f3f4f6;
	padding: 1.5rem;
	border-radius: .5rem;
	height: 8rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.csi-graphic-icon {
	width: 3rem;
	height: 3rem;
	fill: #9ca3af;
}

/* Transforms for the graphic “floating” effect */
.csi-box-up {
	transform: translateY(-2rem);
}

.csi-box-down {
	transform: translateY(2rem);
}

.csi-box-crimson {
	background-color: #981e32;
	color: white;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.csi-box-crimson .csi-graphic-icon {
	fill: white;
}

.csi-box-dark {
	background-color: #1f2937;
	color: white;
}

.csi-box-dark .csi-graphic-icon {
	fill: white;
}

/* Grid System */
.csi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	margin-top: 2rem;
}

/* Buttons */
.csi-btn {
	display: inline-block;
	padding: .75rem 1.5rem;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background .2s;
	text-align: center;
	cursor: pointer;
	border: none;
}

.csi-btn-primary {
	background-color: #981e32;
	color: white !important;
}

.csi-btn-primary:hover {
	background-color: #7d1829;
}

.csi-btn-secondary {
	background-color: white;
	color: #374151 !important;
	border: 1px solid #d1d5db;
}

.csi-btn-secondary:hover {
	background-color: #f3f4f6;
}

/* Cards */
.csi-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 1.5rem;
	transition: transform 0.2s, box-shadow .2s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.csi-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	border-top: 4px solid #981e32;
}

.csi-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.csi-badge {
	font-size: .75rem;
	padding: .25rem .75rem;
	border-radius: 9999px;
	font-weight: 600;
	background-color: #eff6ff;
	color: #1e40af;
}

.csi-card-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #f3f4f6;
	display: flex;
	justify-content: space-between;
	font-size: .85rem;
	font-weight: 600;
}

/* Comparison Table */
.csi-table-container {
	overflow-x: auto;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.csi-table {
	min-width: 100%;
	border-collapse: collapse;
	background-color: white;
}

.csi-table th {
	background-color: #f9fafb;
	color: #6b7280;
	font-weight: 600;
	text-transform: uppercase;
	font-size: .75rem;
	letter-spacing: .05em;
	padding: .75rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
}

.csi-table td {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	color: #4b5563;
	font-size: .875rem;
}

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

.csi-rating {
	color: #15803d;
	font-weight: bold;
	letter-spacing: 2px;
}

/* Modal Styling */
.csi-modal-overlay {
	display: none;
/* Hidden by default */
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	overflow-y: auto;
}

.csi-modal-content {
	background-color: #fff;
	margin: 5% auto;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
	position: relative;
}

.csi-modal-header {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	background: #f9fafb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px 8px 0 0;
}

.csi-modal-body {
	padding: 1.5rem;
}

.csi-modal-footer {
	padding: 1rem 1.5rem;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	text-align: right;
	border-radius: 0 0 8px 8px;
}

.csi-specs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 1rem;
}

.csi-spec-box {
	background: #f3f4f6;
	padding: 1rem;
	border-radius: 4px;
}

/* Icon Utilities */
.csi-icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
	display: block;
}

.csi-icon-container {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
}

#########################
.csi-wrapper {
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #2a3033;
	line-height: 1.6;
	background-color: #f9fafb;
	padding-bottom: 4rem;
}

.csi-wrapper * {
	box-sizing: border-box;
}

/* WSU Colors */
.wsu-crimson-text {
	color: #981e32;
}

.wsu-crimson-bg {
	background-color: #981e32;
	color: white;
}

/* Typography */
.csi-wrapper h1, .csi-wrapper h2, .csi-wrapper h3 {
	font-family: 'Montserrat', sans-serif;
	margin-top: 0;
	color: #111827;
}

.csi-wrapper h1 {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.csi-wrapper h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.csi-wrapper h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: .5rem;
}

.csi-wrapper p {
	margin-bottom: 1rem;
}

/* Layout Containers */
.csi-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.csi-section {
	padding: 4rem 0;
	border-bottom: 1px solid #e5e7eb;
}

/* Hero Specific Layout */
.csi-hero-flex {
	display: flex;
	flex-direction: column;
}

@media (min-width: 1024px) {
	.csi-hero-flex {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.csi-hero-text {
		width: 50%;
	}
	
	.csi-hero-graphic {
		width: 45%;
	}
}

/* Abstract Graphic Grid */
.csi-graphic-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	opacity: .8;
	max-width: 400px;
	margin: 0 auto;
}

.csi-graphic-box {
	background: #f3f4f6;
	padding: 1.5rem;
	border-radius: .5rem;
	height: 8rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.csi-graphic-icon {
	width: 3rem;
	height: 3rem;
	fill: #9ca3af;
}

/* Transforms for the graphic "floating" effect */
.csi-box-up {
	transform: translateY(-2rem);
}

.csi-box-down {
	transform: translateY(2rem);
}

.csi-box-crimson {
	background-color: #981e32;
	color: white;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.csi-box-crimson .csi-graphic-icon {
	fill: white;
}

.csi-box-dark {
	background-color: #1f2937;
	color: white;
}

.csi-box-dark .csi-graphic-icon {
	fill: white;
}

/* Grid System */
.csi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	margin-top: 2rem;
}

/* Buttons */
.csi-btn {
	display: inline-block;
	padding: .75rem 1.5rem;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background .2s;
	text-align: center;
	cursor: pointer;
	border: none;
}

.csi-btn-primary {
	background-color: #981e32;
	color: white !important;
}

.csi-btn-primary:hover {
	background-color: #7d1829;
}

.csi-btn-secondary {
	background-color: white;
	color: #374151 !important;
	border: 1px solid #d1d5db;
}

.csi-btn-secondary:hover {
	background-color: #f3f4f6;
}

/* Cards */
.csi-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 1.5rem;
	transition: transform 0.2s, box-shadow .2s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.csi-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	border-top: 4px solid #981e32;
}

.csi-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.csi-badge {
	font-size: .75rem;
	padding: .25rem .75rem;
	border-radius: 9999px;
	font-weight: 600;
	background-color: #eff6ff;
	color: #1e40af;
}

.csi-card-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #f3f4f6;
	display: flex;
	justify-content: space-between;
	font-size: .85rem;
	font-weight: 600;
}

/* Comparison Table */
.csi-table-container {
	overflow-x: auto;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.csi-table {
	min-width: 100%;
	border-collapse: collapse;
	background-color: white;
}

.csi-table th {
	background-color: #f9fafb;
	color: #6b7280;
	font-weight: 600;
	text-transform: uppercase;
	font-size: .75rem;
	letter-spacing: .05em;
	padding: .75rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
}

.csi-table td {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	color: #4b5563;
	font-size: .875rem;
}

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

.csi-rating {
	color: #15803d;
	font-weight: bold;
	letter-spacing: 2px;
}

/* Modal Styling */
.csi-modal-overlay {
	display: none;
/* Hidden by default */
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	overflow-y: auto;
}

.csi-modal-content {
	background-color: #fff;
	margin: 5% auto;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
	position: relative;
}

.csi-modal-header {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	background: #f9fafb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px 8px 0 0;
}

.csi-modal-body {
	padding: 1.5rem;
}

.csi-modal-footer {
	padding: 1rem 1.5rem;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	text-align: right;
	border-radius: 0 0 8px 8px;
}

.csi-specs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 1rem;
}

.csi-spec-box {
	background: #f3f4f6;
	padding: 1rem;
	border-radius: 4px;
}

/* Icon Utilities */
.csi-icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
	display: block;
}

.csi-icon-container {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
}