.wch-dashboard-summary {
	margin-top: 2rem;
}

.wch-dashboard-summary h2,
.wch-account-section h2,
.wch-review-form-wrap h2 {
	margin-bottom: 1rem;
}

.wch-dashboard-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.wch-dashboard-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 8rem;
	padding: 1.25rem;
	border: 1px solid currentColor;
	border-radius: 10px;
	color: inherit;
	text-decoration: none;
}

.wch-dashboard-card:hover,
.wch-dashboard-card:focus-visible {
	background: rgba(0, 0, 0, 0.04);
}

.wch-dashboard-card strong {
	font-size: 2rem;
	line-height: 1;
}

.wch-dashboard-card span {
	margin-top: 0.5rem;
}

.wch-address-link {
	margin-top: 1rem;
}

.wch-account-section,
.wch-review-form-wrap {
	margin-bottom: 2.5rem;
}

.wch-review-form-wrap {
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}

.wch-account-list {
	display: grid;
	gap: 1rem;
}

.wch-account-list-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 10px;
}

.wch-account-list-item h3,
.wch-account-list-item p {
	margin-top: 0;
}

.wch-account-list-item p:last-child {
	margin-bottom: 0;
}

.wch-customer-stars,
.wch-rating-options {
	color: #b78b38;
}

.wch-review-status {
	flex: 0 0 auto;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.08);
	font-size: 0.82em;
}

.wch-review-status--publish {
	background: #e2f2e5;
	color: #215c2c;
}

.wch-rating-field {
	margin: 1.5rem 0;
	padding: 0;
	border: 0;
}

.wch-rating-options {
	display: inline-flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	font-size: 2rem;
}

.wch-rating-options input {
	position: absolute;
	opacity: 0;
}

.wch-rating-options label {
	cursor: pointer;
	color: #aaa;
	line-height: 1;
}

.wch-rating-options label:hover,
.wch-rating-options label:hover ~ label,
.wch-rating-options input:checked ~ label {
	color: #b78b38;
}

.wch-rating-options input:focus-visible + label {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.wch-review-form textarea {
	width: 100%;
}

.wch-consent-field label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

@media (max-width: 600px) {
	.wch-dashboard-cards {
		grid-template-columns: 1fr;
	}

	.wch-account-list-item {
		align-items: flex-start;
		flex-direction: column;
	}
}

