/* WP Semantic Graph Orchestrator - Frontend Styles */

/* FAQ Shortcode */
.wpsgo-faq {
	margin: 2em 0;
	padding: 1.5em;
	background: #f9f9f9;
	border-radius: 8px;
}

.wpsgo-faq__title {
	margin-top: 0;
	color: #333;
	border-bottom: 2px solid #0073aa;
	padding-bottom: 0.5em;
}

.wpsgo-faq__list {
	margin-top: 1.5em;
}

.wpsgo-faq__item {
	margin-bottom: 1.5em;
	padding: 1em;
	background: #fff;
	border-left: 4px solid #0073aa;
	border-radius: 4px;
}

.wpsgo-faq__question {
	margin: 0 0 0.5em;
	color: #0073aa;
	font-size: 1.1em;
}

.wpsgo-faq__answer {
	color: #555;
	line-height: 1.6;
}

/* HowTo Shortcode */
.wpsgo-howto {
	margin: 2em 0;
	padding: 1.5em;
	background: #f0f8ff;
	border-radius: 8px;
}

.wpsgo-howto__title {
	margin-top: 0;
	color: #333;
}

.wpsgo-howto__time {
	color: #666;
	font-style: italic;
}

.wpsgo-howto__steps {
	counter-reset: step-counter;
	list-style: none;
	padding-left: 0;
}

.wpsgo-howto__step {
	counter-increment: step-counter;
	margin-bottom: 1.5em;
	padding: 1em;
	background: #fff;
	border-radius: 4px;
	position: relative;
	padding-left: 3em;
}

.wpsgo-howto__step::before {
	content: counter(step-counter);
	position: absolute;
	left: 0.5em;
	top: 0.5em;
	background: #0073aa;
	color: #fff;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.wpsgo-howto__step-name {
	margin-top: 0;
	color: #0073aa;
}




/* Breadcrumbs */
.wpsgo-breadcrumbs {
	margin: 1em 0;
	padding: 0.75em 0em;
	border-radius: 4px;
}

.wpsgo-breadcrumbs__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.wpsgo-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
}

.wpsgo-breadcrumbs__separator {
	margin: 0 0.5em;
}




/* Rating */
.wpsgo-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.5em 1em;
	background: #fff3cd;
	border-radius: 4px;
	border: 1px solid #ffc107;
}

.wpsgo-rating__stars {
	color: #ffc107;
	font-size: 1.2em;
}

.wpsgo-rating__star--full {
	color: #ffc107;
}

.wpsgo-rating__star--half {
	color: #ffc107;
	opacity: 0.5;
}

.wpsgo-rating__star--empty {
	color: #ddd;
}

.wpsgo-rating__value {
	font-weight: bold;
	color: #333;
}

.wpsgo-rating__best {
	color: #666;
}

.wpsgo-rating__count {
	color: #666;
	font-size: 0.9em;
}

/* Event */
.wpsgo-event {
	margin: 2em 0;
	padding: 1.5em;
	background: #fff;
	border: 2px solid #0073aa;
	border-radius: 8px;
}

.wpsgo-event__title {
	margin-top: 0;
	color: #0073aa;
}

.wpsgo-event__details {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5em 1em;
}

.wpsgo-event__details dt {
	font-weight: bold;
	color: #333;
}

.wpsgo-event__details dd {
	margin: 0;
	color: #666;
}

/* Service */
.wpsgo-service {
	margin: 2em 0;
	padding: 1.5em;
	background: #f0f8ff;
	border-radius: 8px;
	border-left: 5px solid #0073aa;
}

.wpsgo-service__name {
	margin-top: 0;
	color: #0073aa;
}

.wpsgo-service__description {
	color: #555;
	line-height: 1.6;
}

.wpsgo-service__price {
	font-size: 1.5em;
	font-weight: bold;
	color: #0073aa;
	margin: 1em 0;
}

.wpsgo-service__provider {
	color: #666;
	font-style: italic;
}

/* Collection */
.wpsgo-collection {
	margin: 2em 0;
}

.wpsgo-collection__title {
	color: #333;
	border-bottom: 2px solid #0073aa;
	padding-bottom: 0.5em;
}

.wpsgo-collection__grid {
	display: grid;
	gap: 2em;
	margin-top: 2em;
}

.wpsgo-collection__grid--columns-2 {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.wpsgo-collection__grid--columns-3 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.wpsgo-collection__grid--columns-4 {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.wpsgo-collection__item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.2s;
}

.wpsgo-collection__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.wpsgo-collection__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.wpsgo-collection__link {
	text-decoration: none;
	color: inherit;
}

.wpsgo-collection__item-title {
	padding: 1em;
	margin: 0;
	color: #0073aa;
}

.wpsgo-collection__excerpt {
	padding: 0 1em 1em;
	color: #666;
	font-size: 0.9em;
}