/**
 * Ohanashi Schedule - /schedule/ ページ
 * 仕様書 v1.0 Section 12.7
 */

.oh-schedule {
	max-width: 720px;
	margin: 0 auto;
	padding: var(--oh-space-4);
}

.oh-schedule__header {
	margin-bottom: 16px;
}

.oh-schedule__title {
	font-size: 22px;
	font-weight: 800;
	color: var(--oh-text-primary);
	margin: 0;
}

.oh-schedule__subtitle {
	font-size: 13px;
	color: var(--oh-text-secondary);
	margin-top: 4px;
}

.oh-schedule__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}

.oh-lesson-card {
	background: var(--oh-bg-card);
	border-radius: var(--oh-r-lg);
	padding: 16px;
	box-shadow: var(--oh-shadow-md);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: transform 0.15s;
}

.oh-lesson-card:hover { transform: translateY(-2px); }

.oh-lesson-card__provider {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: var(--oh-r-full);
	color: #fff;
	width: max-content;
}
.oh-lesson-card__provider--jlc { background: var(--oh-badge-jlc); }
.oh-lesson-card__provider--jpn { background: var(--oh-badge-jpn); }

.oh-lesson-card__date {
	font-size: 14px;
	font-weight: 700;
	color: var(--oh-text-primary);
}

.oh-lesson-card__teacher {
	font-size: 13px;
	color: var(--oh-text-secondary);
}

.oh-lesson-card__category {
	font-size: 12px;
	color: var(--oh-text-tertiary);
}

.oh-lesson-card__times {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 12px;
	color: var(--oh-text-secondary);
	border-top: 1px dashed var(--oh-border-soft);
	padding-top: 8px;
	margin-top: 4px;
}

.oh-lesson-card__times span:first-child {
	font-weight: 700;
	color: var(--oh-text-primary);
}

.oh-lesson-card__action {
	margin-top: 8px;
	display: flex;
	gap: 8px;
}

.oh-zoom-btn {
	flex: 1;
	background: linear-gradient(135deg, #5BA9F0, #3A8BE0);
	color: #fff;
	border: 0;
	border-radius: var(--oh-r-full);
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-decoration: none;
	transition: filter 0.15s;
}
.oh-zoom-btn:hover { filter: brightness(1.05); }
.oh-zoom-btn[disabled],
.oh-zoom-btn.is-locked {
	background: var(--oh-bg-app);
	color: var(--oh-text-tertiary);
	cursor: not-allowed;
}

.oh-upgrade-cta {
	text-align: center;
	padding: 12px;
	background: linear-gradient(135deg, rgba(123, 95, 233, 0.08), rgba(91, 169, 240, 0.08));
	border-radius: var(--oh-r-md);
	font-size: 13px;
	color: var(--oh-text-secondary);
	margin-top: 16px;
}

.oh-upgrade-cta a {
	color: #7B5FE9;
	font-weight: 700;
	text-decoration: none;
}
