/* Param guest dashboard — PHP 8.0+, WordPress 6.0+. */
.param-dashboard-guest {
	--param-guest-primary: #648e50;
	--param-guest-primary-dark: #587b45;
	--param-guest-soft: #f2f6ec;
	--param-guest-accent: #f48652;
	--param-guest-ink: #282822;
	--param-guest-muted: #7b7a72;
	display: grid;
	width: 100%;
	max-width: none;
	min-height: clamp(32rem, 72vh, 48rem);
	margin-inline: auto;
	padding: clamp(1.25rem, 5vw, 4rem);
	background: transparent;
	color: var(--param-guest-ink);
	font-family: Kahroba, Tahoma, "Segoe UI", sans-serif;
	place-items: center;
}

.param-dashboard-guest,
.param-dashboard-guest *,
.param-dashboard-guest *::before,
.param-dashboard-guest *::after {
	box-sizing: border-box;
}

.param-dashboard-guest__card {
	display: flex;
	width: min(100%, 31rem);
	min-height: 25rem;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(2rem, 5vw, 3.75rem);
	border: 1px solid rgb(100 142 80 / 14%);
	border-radius: 2rem;
	background: rgb(255 253 250 / 92%);
	box-shadow: 0 1.5rem 5rem rgb(72 67 50 / 11%);
	text-align: center;
	backdrop-filter: blur(.8rem);
}

.param-dashboard-guest__icon-wrap {
	display: grid;
	width: 5rem;
	height: 5rem;
	margin-block-end: 1.5rem;
	border-radius: 1.55rem;
	color: var(--param-guest-primary);
	background: var(--param-guest-soft);
	box-shadow: inset 0 0 0 1px rgb(100 142 80 / 10%);
	place-items: center;
}

.param-dashboard-guest__icon {
	display: block;
	width: 2.35rem;
	height: 2.35rem;
}

.param-dashboard-guest h1 {
	margin: 0 0 .75rem;
	color: var(--param-guest-ink);
	font: 700 clamp(1.55rem, 3vw, 2rem)/1.5 Kahroba, Tahoma, "Segoe UI", sans-serif;
}

.param-dashboard-guest p {
	max-width: 23rem;
	margin: 0 0 1.75rem;
	color: var(--param-guest-muted);
	font-size: 1.02rem;
	font-weight: 380;
	line-height: 2;
}

.param-dashboard-guest__button {
	display: inline-flex;
	width: min(100%, 17rem);
	min-height: 3.4rem;
	align-items: center;
	justify-content: center;
	gap: .7rem;
	padding: .7rem 1.5rem;
	border: 1px solid var(--param-guest-primary);
	border-radius: .9rem;
	color: #fff !important;
	background: var(--param-guest-primary);
	box-shadow: 0 .75rem 1.7rem rgb(100 142 80 / 25%);
	font-size: 1.04rem;
	font-weight: 680;
	line-height: 1.5;
	text-decoration: none !important;
	transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.param-dashboard-guest__button:hover {
	color: #fff !important;
	background: var(--param-guest-primary-dark);
	box-shadow: 0 .9rem 2rem rgb(100 142 80 / 32%);
	transform: translateY(-2px);
}

.param-dashboard-guest__button:focus-visible {
	outline: 3px solid rgb(100 142 80 / 38%);
	outline-offset: 4px;
}

.param-dashboard-guest__button span {
	font-family: Tahoma, sans-serif;
	font-size: 1.25rem;
}

.param-dashboard-guest small {
	margin-block-start: 1.15rem;
	color: #99958d;
	font-size: .82rem;
	font-weight: 400;
}

.param-dashboard-guest--denied .param-dashboard-guest__icon-wrap {
	color: var(--param-guest-accent);
	background: #fff3ed;
	box-shadow: inset 0 0 0 1px rgb(244 134 82 / 14%);
}

@media (max-width: 40rem) {
	.param-dashboard-guest {
		min-height: 31rem;
		padding: 1rem;
	}

	.param-dashboard-guest__card {
		min-height: 27rem;
		padding: 2rem 1.35rem;
		border-radius: 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.param-dashboard-guest__button {
		transition: none;
	}
}
