a {
	-webkit-tap-highlight-color: transparent;
}

.content-layout-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 25px;
	max-width: 950px;
}

.grid-full-width {
	grid-column: 1 / -1;
}

.panel-card {
	background-color: #f4f5f6;
	border: 1px solid #d6d6d6;
	border-radius: 8px;
	padding: 14px 20px 20px 20px;
	min-width: 0;
}

.panel-card h2 {
	font-family: 'Roboto Flex', sans-serif;
	font-size: 1rem;
	color: #4a5568;
	margin-top: 0;
	margin-bottom: 12px;
	padding-bottom: 0;
}

.course-links-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.action-link-item {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border: 1px solid #d6d6d6;
	border-radius: 6px;
	padding: 9px 14px;
	color: #06f !important;
	text-decoration: none;
	font-family: 'Roboto Flex', sans-serif;
	font-weight: 625 !important;
	font-size: 0.95rem;
	transition: background-color 0.15s ease, color 0.15s ease;
	box-sizing: border-box;
	height: 54px;
	min-width: 0;
	cursor: pointer;
}

.action-link-item:hover {
	background: linear-gradient(135deg, #1f8dd6 0%, #186fa9 100%);
	color: #ffffff !important;
	border-color: #1f8dd6;
	text-decoration: none !important;
}

.action-link-item:active {
	background: #1f8dd6 !important;
	color: #ffffff !important;
	border-color: #1f8dd6 !important;
	transition: none !important;
}

.course-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #06f !important;
	font-weight: 700 !important;
	line-height: 1.1;
	font-size: 1.1rem;
	white-space: normal;
	padding: 4px 8px;
}

.star-prefix {
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
	transform: scale(1.15);
	transform-origin: center;
	flex-shrink: 0;
}

.sparkle-boost {
	transform: scale(1.35);
}

.service-btn {
	text-align: center;
	line-height: 1.15;
	font-size: 1.1rem;
	font-weight: 700 !important;
	white-space: normal;
}

.vertical-links-stack .sponsor-item {
	padding: 0;
	overflow: hidden;
	background-color: #ffffff;
	justify-content: center;
	height: 54px;
	transition: border-color 0.15s ease-in-out;
	display: flex;
	align-items: center;
}

.vertical-links-stack .sponsor-item:hover {
	background: #ffffff !important;
	border-color: #1f8dd6 !important;
}

.sponsor-logo {
	max-width: 100%;
	max-height: 30px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	padding: 10px 14px;
}

.sponsor-logo-kip {
	max-width: 90%;
	max-height: 30px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	padding: 13px 14px 7px 14px;
}

.sponsor-logo-namiac {
	height: 85%;
	width: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	padding: 4px 0;
}

.sponsor-text-node {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 1.22rem;
	font-weight: 400;
	color: #0054a6 !important;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.vertical-links-stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer,
.social-links-footer {
	text-align: center;
}

@media (max-width: 950px) {
	.course-links-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 800px) {
	.content-layout-grid {
		grid-template-columns: 1fr;
	}

	.action-link-item,
	.vertical-links-stack .sponsor-item {
		height: 54px;
	}
}