.prv-frontend {
	font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
	background: #ffffff;
	color: #454545;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.prv-hero {
	text-align: left;
	margin-bottom: 12px;
}

.prv-hero__title {
	display: inline-block;
	font-size: 24px;
	font-weight: 800;
	color: #3c3c3c;
	text-decoration: none;
	letter-spacing: -0.5px;
}

.prv-tabs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 10px;
	margin: 12px 0 16px;
}

.prv-tab {
	background: #f3f3f3;
	border: 1px solid #ebebeb;
	color: #555;
	padding: 12px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 700;
	font-size: 15px;
}

.prv-tab.is-active {
	background: #606060;
	color: #fff;
	border-color: #606060;
	box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
}

.prv-tab:hover {
	filter: brightness(0.95);
}

.prv-day-panel {
	display: none;
}

.prv-day-panel.is-active {
	display: block;
}

.prv-grid {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #ededed;
}

.prv-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.prv-card-item {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 14px 4px;
	border-bottom: 1px solid #ededed;
	gap: 14px;
}

.prv-card-item__left {
	min-width: 0;
}

.prv-card-item__time {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #6d6d6d;
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 4px;
}

.prv-time {
	font-variant-numeric: tabular-nums;
}

.prv-badge {
	background: #171717;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 20px;
}

.prv-card-item__title {
	font-size: 17px;
	font-weight: 700;
	color: #3c3c3c;
	letter-spacing: -0.2px;
}

.prv-card-item__right {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 8px;
	min-width: 220px;
}

.prv-card-item__label {
	font-size: 13px;
	color: #7a7a7a;
	grid-column: 1 / -1;
}

.prv-card-item__host {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: #3f3f3f;
}

.prv-card-item__photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}

.prv-empty {
	color: #777;
	font-style: italic;
	padding: 10px 2px;
}

.prv-banner {
	margin-top: 14px;
	text-align: center;
}

.prv-banner img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.prv-frontend-message {
	padding: 16px;
	background: #fdeeee;
	border: 1px solid #e59797;
	color: #7b1f1f;
	border-radius: 10px;
	font-weight: 600;
}

