/* Базовые переменные */
:root {
	--bg: #f7f7f9;
	--card: #ffffff;
	--text: #1c1c1e;
	--muted: #6b7280;
	--accent: #2563eb;
	--radius: 14px;
}

/* Общие стили */
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
	background-color: var(--bg);
	color: var(--text);
	line-height: 1.4;
}

/* Контейнер */
.container {
	padding: 16px;
	max-width: 480px;
	margin: 0 auto;
}

/* Заголовок */
.lection-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 16px;
}

/* Список */
.lection-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

/* Карточка лекции */
.lection-item {
	background-color: var(--card);
	border-radius: var(--radius);
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Описание */
.lection-item p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--muted);
}

/* Ссылка на лекцию */
.lection-link {
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	color: var(--accent);
}

/* Кнопка скачивания */
.lection-link-download {
	display: inline-block;
	width: 100%;
	height: 36px;
	border-radius: 10px;
	background-color: #eef2ff;
	text-align: center;
	line-height: 36px;
	font-size: 0.85rem;
	color: var(--accent);
	text-decoration: none;
}

.lection-link-download::before {
	content: 'Скачать';
}

/* Нажатие (мобилки) */
.lection-link:active,
.lection-link-download:active {
	opacity: 0.7;
}
