/**
 * Google Reviews Embed — frontend container styles.
 *
 * Dynamic values (width, padding, colors, etc.) are appended after this
 * file via wp_add_inline_style(), based on the site's saved settings.
 */

.gre-container {
	box-sizing: border-box;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.gre-container * {
	box-sizing: border-box;
	max-width: 100%;
}

/* Alignment */
.gre-align-left {
	margin-left: 0;
	margin-right: auto;
}

.gre-align-center {
	margin-left: auto;
	margin-right: auto;
}

.gre-align-right {
	margin-left: auto;
	margin-right: 0;
}

/* Empty-state notice shown only to admins */
.gre-container.gre-empty {
	padding: 1em;
	border: 1px dashed #c3c4c7;
	color: #646970;
	font-style: italic;
}

/* Responsive visibility: mobile (<768px) */
@media (max-width: 767px) {
	.gre-hide-mobile {
		display: none !important;
	}
}

/* Responsive visibility: tablet (768px–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.gre-hide-tablet {
		display: none !important;
	}
}

/* Responsive visibility: desktop (>1024px) */
@media (min-width: 1025px) {
	.gre-hide-desktop {
		display: none !important;
	}
}
