/**
 * Frontend styles for locked content display.
 */

/* Lock icon in curriculum listing (lesson sidebar) */
.gco-dl-lock-icon {
	color: #d63638;
	margin-left: 8px;
	font-size: 14px;
	cursor: help;
}

.gco-dl-unlock-link {
	display: none; /* Hidden by default; shown if purchase URL exists */
	color: #3858e9;
	margin-left: 6px;
	font-size: 13px;
	text-decoration: none;
	white-space: nowrap;
}

.gco-dl-unlock-link:hover {
	text-decoration: underline;
}

/* Show unlock link when lock icon is present */
.gco-dl-lock-icon + .gco-dl-unlock-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

/* Topic-level lock indicator (course single page) */
.gco-dl-topic-lock {
	display: inline-flex;
	align-items: center;
	margin-left: 10px;
	color: #d63638;
	font-size: 14px;
	cursor: help;
}

.gco-dl-topic-locked .tutor-accordion-item-header {
	opacity: 0.75;
}

.gco-dl-topic-locked .tutor-course-content-list-item {
	opacity: 0.6;
}

/* Locked content block (replaces lesson/quiz/assignment body) */
.gco-dl-locked-content {
	text-align: center;
	padding: 60px 30px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin: 30px 0;
}

.gco-dl-locked-icon {
	font-size: 48px;
	color: #d63638;
	margin-bottom: 16px;
}

.gco-dl-locked-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #1d2327;
}

.gco-dl-locked-content p {
	color: #50575e;
	margin-bottom: 8px;
}

.gco-dl-purchase-btn {
	display: inline-block;
	padding: 10px 24px;
	background: #3858e9;
	color: #fff !important;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 10px;
	transition: background 0.2s;
}

.gco-dl-purchase-btn:hover {
	background: #2145d4;
	color: #fff !important;
	text-decoration: none;
}
