/* ===== SKELETON - ПРОСТАЯ ОРИГИНАЛЬНАЯ ВЕРСИЯ ===== */

/* Контейнер skeleton: центрирование по viewport */
#skeleton-screen {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.skeleton {
	position: relative;
	overflow: hidden;
	background: #e5e7eb;
}

.skeleton::after {
	content: "";
	position: absolute;
	top: 0;
	left: -150px;
	height: 100%;
	width: 150px;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.6),
			transparent);
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	100% {
		left: 100%;
	}
}

/* Заголовок */
.skeleton-title {
	height: 24px;
	width: 60%;
	margin: 0 auto 20px auto;
	/* центрируем */
	border-radius: 8px;
}

/* Карточки */
.skeleton-card {
	height: 100px;
	border-radius: 12px;
	margin-bottom: 20px;
}

/* Текстовые линии */
.skeleton-text {
	height: 14px;
	width: 100%;
	border-radius: 6px;
	margin-bottom: 10px;
}
