/**
 * Frontend styles for Evenzo Events Manager for WooCommerce.
 *
 * Minimal styles that work with any theme.
 * Uses CSS custom properties for easy customization.
 *
 * @package EventsAndTicketsForWooCommerce
 * @since   1.0.0
 */

/* ==========================================================================
   CSS Custom Properties (Theme Customization)
   ========================================================================== */

:root {
	--emwc-primary-color: #7f54b3;
	--emwc-secondary-color: #2271b1;
	--emwc-text-color: #1d2327;
	--emwc-text-light: #646970;
	--emwc-border-color: #c3c4c7;
	--emwc-background: #fff;
	--emwc-background-alt: #f0f0f1;
	--emwc-success-color: #00a32a;
	--emwc-error-color: #d63638;
	--emwc-spacing-sm: 8px;
	--emwc-spacing-md: 16px;
	--emwc-spacing-lg: 24px;
	--emwc-border-radius: 4px;
}

/* ==========================================================================
   Event List
   ========================================================================== */

.emwc-events-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.emwc-event-item {
	border: 1px solid var(--emwc-border-color);
	border-radius: var(--emwc-border-radius);
	margin-bottom: var(--emwc-spacing-md);
	overflow: hidden;
}

.emwc-event-item-inner {
	display: flex;
	flex-wrap: wrap;
}

.emwc-event-thumbnail {
	flex: 0 0 200px;
}

.emwc-event-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

.emwc-event-content {
	flex: 1;
	padding: var(--emwc-spacing-md);
	min-width: 250px;
}

.emwc-event-title {
	margin: 0 0 var(--emwc-spacing-sm) 0;
	font-size: 1.25em;
}

.emwc-event-title a {
	color: var(--emwc-text-color);
	text-decoration: none;
}

.emwc-event-title a:hover {
	color: var(--emwc-primary-color);
}

.emwc-event-meta {
	color: var(--emwc-text-light);
	font-size: 0.9em;
	margin-bottom: var(--emwc-spacing-sm);
}

.emwc-event-meta-item {
	display: inline-flex;
	align-items: center;
	margin-right: var(--emwc-spacing-md);
}

.emwc-event-meta-item .dashicons {
	margin-right: 4px;
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.emwc-event-excerpt {
	color: var(--emwc-text-color);
	margin-bottom: var(--emwc-spacing-sm);
}

/* ==========================================================================
   Single Event
   ========================================================================== */

.emwc-single-event {
	max-width: 1200px;
}

.emwc-event-header {
	margin-bottom: var(--emwc-spacing-lg);
}

.emwc-event-featured-image {
	margin-bottom: var(--emwc-spacing-md);
}

.emwc-event-featured-image img {
	width: 100%;
	height: auto;
	border-radius: var(--emwc-border-radius);
}

.emwc-event-details {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: var(--emwc-spacing-lg);
}

.emwc-event-description {
	line-height: 1.7;
}

/* Section headings - consistent styling for About, Speakers, etc. */
.emwc-event-description h2,
.emwc-event-speakers h2,
.emwc-event-map h2 {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 700;
	color: var(--emwc-text-color);
}

.emwc-event-sidebar {
	background: var(--emwc-background-alt);
	padding: var(--emwc-spacing-md);
	border-radius: var(--emwc-border-radius);
}

.emwc-event-info-box {
	margin-bottom: var(--emwc-spacing-md);
}

.emwc-event-info-box:last-child {
	margin-bottom: 0;
}

.emwc-event-info-label {
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--emwc-text-light);
	font-size: 0.85em;
	text-transform: uppercase;
}

.emwc-event-info-value {
	color: var(--emwc-text-color);
}

/* ==========================================================================
   Calendar Styles
   ========================================================================== */

.emwc-calendar {
	background: var(--emwc-background);
	border: 1px solid var(--emwc-border-color);
	border-radius: var(--emwc-border-radius);
}

.emwc-calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--emwc-spacing-md);
	border-bottom: 1px solid var(--emwc-border-color);
}

.emwc-calendar-title {
	font-weight: 600;
	font-size: 1.1em;
}

.emwc-calendar-nav {
	display: flex;
	gap: var(--emwc-spacing-sm);
}

.emwc-calendar-nav button {
	background: transparent;
	border: 1px solid var(--emwc-border-color);
	border-radius: var(--emwc-border-radius);
	padding: 4px 12px;
	cursor: pointer;
}

.emwc-calendar-nav button:hover {
	background: var(--emwc-background-alt);
}

.emwc-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.emwc-calendar-day-header {
	padding: var(--emwc-spacing-sm);
	text-align: center;
	font-weight: 600;
	font-size: 0.85em;
	color: var(--emwc-text-light);
	border-bottom: 1px solid var(--emwc-border-color);
}

.emwc-calendar-day {
	min-height: 100px;
	padding: var(--emwc-spacing-sm);
	border-right: 1px solid var(--emwc-border-color);
	border-bottom: 1px solid var(--emwc-border-color);
}

.emwc-calendar-day:nth-child(7n) {
	border-right: none;
}

.emwc-calendar-day-number {
	font-weight: 600;
	margin-bottom: 4px;
}

.emwc-calendar-day.today .emwc-calendar-day-number {
	background: var(--emwc-primary-color);
	color: #fff;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.emwc-calendar-day.other-month {
	background: var(--emwc-background-alt);
	opacity: 0.6;
}

.emwc-calendar-event {
	background: var(--emwc-primary-color);
	color: #fff;
	padding: 2px 6px;
	border-radius: 2px;
	font-size: 0.75em;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}

.emwc-calendar-event:hover {
	opacity: 0.9;
}

/* ==========================================================================
   Ticket Widget
   ========================================================================== */

.emwc-ticket-widget {
	background: var(--emwc-background);
	border: 1px solid var(--emwc-border-color);
	border-radius: var(--emwc-border-radius);
	padding: var(--emwc-spacing-md);
}

.emwc-ticket-widget-title {
	font-weight: 600;
	margin-bottom: var(--emwc-spacing-md);
	padding-bottom: var(--emwc-spacing-sm);
	border-bottom: 1px solid var(--emwc-border-color);
}

.emwc-ticket-type {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--emwc-spacing-sm) 0;
	border-bottom: 1px solid var(--emwc-border-color);
}

.emwc-ticket-type:last-child {
	border-bottom: none;
}

.emwc-ticket-name {
	font-weight: 500;
}

.emwc-ticket-description {
	font-size: 0.85em;
	color: var(--emwc-text-light);
}

.emwc-ticket-price {
	font-weight: 600;
	color: var(--emwc-primary-color);
}

.emwc-ticket-quantity {
	width: 60px;
	text-align: center;
}

/* ==========================================================================
   Add to Calendar
   ========================================================================== */

.emwc-add-to-calendar {
	margin-top: var(--emwc-spacing-md);
}

.emwc-add-to-calendar-dropdown {
	position: relative;
	display: inline-block;
}

.emwc-add-to-calendar-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--emwc-background);
	border: 1px solid var(--emwc-border-color);
	border-radius: var(--emwc-border-radius);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	min-width: 200px;
	z-index: 100;
	list-style: none;
	padding: 0;
	margin: 0;
}

.emwc-add-to-calendar-dropdown:hover .emwc-add-to-calendar-list,
.emwc-add-to-calendar-dropdown:focus-within .emwc-add-to-calendar-list {
	display: block;
}

.emwc-add-to-calendar-list li {
	margin: 0;
}

.emwc-add-to-calendar-list a {
	display: block;
	padding: var(--emwc-spacing-sm) var(--emwc-spacing-md);
	color: var(--emwc-text-color);
	text-decoration: none;
}

.emwc-add-to-calendar-list a:hover {
	background: var(--emwc-background-alt);
}

/* ==========================================================================
   Event Status Badges
   ========================================================================== */

.emwc-event-status {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 2px;
	font-size: 0.75em;
	font-weight: 600;
	text-transform: uppercase;
}

.emwc-event-status.scheduled {
	background: #e7f5ea;
	color: #1e4620;
}

.emwc-event-status.cancelled {
	background: #fcecec;
	color: #8a1f1f;
}

.emwc-event-status.postponed {
	background: #fef6e7;
	color: #8a6914;
}

.emwc-event-status.sold-out {
	background: #f0f0f1;
	color: #646970;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Product Event Info Display
   ========================================================================== */

.emwc-product-event-info {
	margin: 20px 0;
	padding: 15px;
	background: #f8f8f8;
	border-radius: 4px;
}

.emwc-product-event-info table {
	width: 100%;
}

.emwc-product-event-info th {
	text-align: left;
	padding: 6px 10px 6px 0;
	width: 100px;
	vertical-align: top;
}

.emwc-product-event-info td {
	padding: 6px 0;
}

/* ==========================================================================
   Ticket Status Displays
   ========================================================================== */

.emwc-ticket-status {
	margin: 20px 0;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
}

.emwc-ticket-status h4 {
	margin: 0 0 10px;
	font-size: 18px;
}

.emwc-ticket-status p {
	margin: 0 0 15px;
}

.emwc-status-coming-soon {
	padding: 20px;
	background: #f8f8f8;
	border: 1px solid #ddd;
	color: #333;
}

.emwc-status-coming-soon h4 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	color: #1e1e1e;
}

.emwc-status-coming-soon p {
	font-size: 13px;
	color: #646970;
}

.emwc-status-on-sale {
	background: #f0f9ff;
	border: 1px solid #0ea5e9;
}

.emwc-status-on-sale p {
	margin-bottom: 10px;
	color: #0369a1;
	font-weight: 600;
}

.emwc-status-ended {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.emwc-status-ended p {
	margin: 5px 0 0;
	font-size: 13px;
	opacity: 0.8;
}

.emwc-status-sold-out {
	background: #fef3c7;
	border: 1px solid #fcd34d;
	color: #92400e;
}

.emwc-status-sold-out p {
	margin: 5px 0 0;
	font-size: 13px;
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */

.emwc-countdown {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: nowrap;
}

.emwc-countdown-item {
	text-align: center;
}

.emwc-countdown-value {
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.emwc-countdown-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	opacity: 0.8;
}

.emwc-status-on-sale .emwc-countdown-value {
	color: #0369a1;
}

.emwc-status-on-sale .emwc-countdown-label {
	color: #64748b;
	font-size: 12px;
}

/* Coming Soon Countdown - uses native theme-friendly styling */
.emwc-status-coming-soon .emwc-countdown {
	margin-top: 15px;
	gap: 10px;
}

.emwc-status-coming-soon .emwc-countdown-item {
	background: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	border: 1px solid #ddd;
	min-width: 50px;
}

.emwc-status-coming-soon .emwc-countdown-value {
	color: #1e1e1e;
	font-size: 20px;
}

.emwc-status-coming-soon .emwc-countdown-label {
	color: #646970;
	font-size: 9px;
}

.emwc-countdown-available {
	font-weight: 600;
}

/* ==========================================================================
   Waitlist Form
   ========================================================================== */

.emwc-waitlist-message {
	display: none;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
}

.emwc-waitlist-message.success {
	background: #d1e7dd;
	color: #0f5132;
}

.emwc-waitlist-message.error {
	background: #f8d7da;
	color: #842029;
}

/* ==========================================================================
   Google Maps Container
   ========================================================================== */

.emwc-map-container {
	border-radius: var(--emwc-border-radius);
	overflow: hidden;
}

/* ==========================================================================
   Single Event Page
   ========================================================================== */

.emwc-single-event {
	padding-top: 0;
}

/* Coming Soon Box */
.emwc-coming-soon-box {
	background: #f8f8f8;
	border: 1px solid #ddd;
	color: #333;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 15px;
}

.emwc-coming-soon-box h4 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	color: #1e1e1e;
}

.emwc-coming-soon-box p {
	margin: 0 0 15px;
	font-size: 13px;
	color: #646970;
}

/* Single Event Countdown - unified with product page */
.emwc-cd-item {
	text-align: center;
	background: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	border: 1px solid #ddd;
	min-width: 50px;
}

.emwc-cd-val {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: #1e1e1e;
}

.emwc-cd-lbl {
	display: block;
	font-size: 9px;
	text-transform: uppercase;
	color: #646970;
	margin-top: 2px;
}

/* Small inline countdown */
.emwc-countdown-sm {
	display: inline-flex;
	gap: 5px;
	font-size: 13px;
	font-weight: 600;
	color: #1e1e1e;
}

.emwc-cd-inline {
	white-space: nowrap;
}

/* Sales Ending Box */
.emwc-sales-ending-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	text-align: center;
}

.emwc-sales-ending-box small {
	display: block;
	color: #64748b;
	font-size: 12px;
	margin-bottom: 10px;
	font-weight: 500;
}

.emwc-sales-ending-box .emwc-countdown {
	gap: 10px;
}

.emwc-sales-ending-box .emwc-cd-item {
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 10px 12px;
	min-width: 55px;
}

.emwc-sales-ending-box .emwc-cd-val {
	font-size: 22px;
	color: #0f172a;
}

.emwc-sales-ending-box .emwc-cd-lbl {
	font-size: 10px;
	color: #64748b;
}

/* Notice Boxes */
.emwc-notice-box {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 15px;
	border-radius: 4px;
	background: #f0f0f1;
	border: 1px solid #c3c4c7;
	margin-bottom: 15px;
}

.emwc-notice-box .dashicons {
	flex-shrink: 0;
}

.emwc-notice-ended {
	background: #fcf0f1;
	border-color: #d63638;
	color: #8a1f1f;
}

.emwc-notice-error {
	background: #fcf0f1;
	border-color: #d63638;
	color: #8a1f1f;
}

/* ==========================================================================
   Speakers Section
   ========================================================================== */

.emwc-event-speakers {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}

.emwc-speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.emwc-speaker-card {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 18px;
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.emwc-speaker-card:hover {
	border-color: var(--emwc-primary-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.emwc-speaker-photo {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	background: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.emwc-speaker-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.emwc-speaker-photo .dashicons {
	font-size: 32px;
	width: 32px;
	height: 32px;
	color: #9ca3af;
}

.emwc-speaker-info {
	flex: 1;
	min-width: 0;
}

.emwc-speaker-name {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: #111827;
}

.emwc-speaker-title {
	margin: 4px 0 0;
	font-size: 14px;
	color: #6b7280;
}

/* Event Tags */
.emwc-event-tags {
	margin-top: 20px;
}

.emwc-tag {
	display: inline-block;
	padding: 6px 12px;
	background: #f0f0f1;
	border-radius: 20px;
	font-size: 13px;
	color: var(--emwc-text-color);
	text-decoration: none;
	margin-right: 8px;
	margin-bottom: 8px;
	transition: background 0.2s;
}

.emwc-tag:hover {
	background: #e0e0e1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 768px) {
	.emwc-event-item-inner {
		flex-direction: column;
	}

	.emwc-event-thumbnail {
		flex: none;
	}

	.emwc-event-details {
		grid-template-columns: 1fr;
	}

	.emwc-event-sidebar {
		order: -1;
	}

	.emwc-calendar-day {
		min-height: 60px;
		padding: 4px;
	}

	.emwc-calendar-event {
		font-size: 0.65em;
	}

	.emwc-countdown {
		gap: 8px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.emwc-countdown-value {
		font-size: 18px;
	}

	.emwc-countdown-label {
		font-size: 10px;
	}

	/* Speakers grid responsive */
	.emwc-speakers-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.emwc-speaker-card {
		padding: 15px;
	}

	.emwc-speaker-photo {
		width: 56px;
		height: 56px;
	}

	/* Section headings responsive */
	.emwc-event-speakers h2,
	.emwc-event-description h2,
	.emwc-event-map h2 {
		font-size: 1.3em;
	}

	/* Countdown items responsive */
	.emwc-cd-item {
		padding: 8px 10px;
		min-width: 48px;
	}

	.emwc-cd-val {
		font-size: 18px;
	}

	.emwc-cd-lbl {
		font-size: 9px;
	}

	/* Sales ending box responsive */
	.emwc-sales-ending-box {
		padding: 12px;
		margin-bottom: 16px;
	}

	.emwc-sales-ending-box .emwc-countdown {
		gap: 6px;
	}

	.emwc-sales-ending-box .emwc-cd-item {
		padding: 8px 10px;
		min-width: 45px;
	}

	.emwc-sales-ending-box .emwc-cd-val {
		font-size: 18px;
	}

	.emwc-sales-ending-box .emwc-cd-lbl {
		font-size: 9px;
	}

	/* Coming soon box responsive */
	.emwc-coming-soon-box {
		padding: 16px;
	}

	.emwc-coming-soon-box .emwc-countdown {
		gap: 6px;
	}

	/* Notice box responsive */
	.emwc-notice-box {
		padding: 10px 12px;
		font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	.emwc-countdown {
		gap: 6px;
	}

	.emwc-cd-item {
		padding: 6px 8px;
		min-width: 42px;
	}

	.emwc-cd-val {
		font-size: 16px;
	}

	.emwc-cd-lbl {
		font-size: 8px;
	}

	.emwc-sales-ending-box .emwc-cd-item {
		padding: 6px 8px;
		min-width: 40px;
	}

	.emwc-sales-ending-box .emwc-cd-val {
		font-size: 16px;
	}

	.emwc-sales-ending-box .emwc-cd-lbl {
		font-size: 8px;
	}

	.emwc-speaker-card {
		padding: 12px;
		gap: 10px;
	}

	.emwc-speaker-photo {
		width: 48px;
		height: 48px;
	}

	.emwc-speaker-name {
		font-size: 15px;
	}

	.emwc-speaker-title {
		font-size: 13px;
	}
}

/* ==========================================================================
   Share & Calendar Section
   ========================================================================== */

.emwc-share-calendar-box {
	border-top: 1px solid #e5e5e5;
	padding-top: 15px;
	margin-top: 15px;
}

.emwc-add-calendar-section,
.emwc-share-section {
	margin-bottom: 15px;
}

.emwc-add-calendar-section:last-child,
.emwc-share-section:last-child {
	margin-bottom: 0;
}

.emwc-section-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #646970;
	margin-bottom: 10px;
}

.emwc-calendar-links,
.emwc-share-links {
	display: flex;
	gap: 8px;
}

.emwc-cal-link,
.emwc-share-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f6f7f7;
	color: #50575e;
	text-decoration: none;
	transition: all 0.2s ease;
}

.emwc-cal-link:hover,
.emwc-share-links a:hover {
	background: #2271b1;
	color: #fff;
}

.emwc-cal-link:hover svg path {
	fill: #fff !important;
}

.emwc-cal-link .dashicons,
.emwc-share-links a .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.emwc-cal-link svg {
	width: 20px;
	height: 20px;
}

/* iCal download button - subtle indicator */
.emwc-cal-link.emwc-cal-ics {
	position: relative;
}

.emwc-cal-link.emwc-cal-ics::after {
	content: '↓';
	position: absolute;
	bottom: 2px;
	right: 2px;
	font-size: 10px;
	font-weight: bold;
	background: #fff;
	border-radius: 50%;
	width: 12px;
	height: 12px;
	line-height: 12px;
	text-align: center;
	color: #333;
}

.emwc-cal-link.emwc-cal-ics:hover::after {
	background: #2271b1;
	color: #fff;
}

/* ==========================================================================
   Remaining Tickets Display
   ========================================================================== */

.emwc-remaining-tickets {
	background: #f0f0f1;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 16px;
	text-align: center;
}

.emwc-tickets-count {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
	margin-bottom: 8px;
}

.emwc-tickets-bar {
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.emwc-tickets-bar-fill {
	height: 100%;
	background: #7f54b3;
	border-radius: 4px;
	transition: width 0.3s ease;
}

/* Low stock warning */
.emwc-tickets-low .emwc-tickets-count {
	color: #b26200;
}

.emwc-tickets-low .emwc-tickets-bar-fill {
	background: #dba617;
}

/* Critical stock warning */
.emwc-tickets-critical .emwc-tickets-count {
	color: #d63638;
}

.emwc-tickets-critical .emwc-tickets-bar-fill {
	background: #d63638;
}

/* Sold out */
.emwc-tickets-soldout {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #d63638;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Timezone indicator */
.emwc-timezone {
	font-size: 0.85em;
	color: #666;
	font-style: normal;
}

/* Custom Attributes */
.emwc-event-attributes {
	margin-bottom: 40px;
}

.emwc-event-attributes h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
	color: #1a1a2e;
}

.emwc-attributes-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
}

.emwc-attribute-item {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 14px 16px;
}

.emwc-attribute-item dt {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #666;
	margin: 0 0 4px;
}

.emwc-attribute-item dd {
	font-size: 15px;
	font-weight: 500;
	color: #1a1a2e;
	margin: 0;
}

/* Skip link for accessibility */
.emwc-skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #2271b1;
	color: #fff;
	padding: 8px 16px;
	z-index: 100000;
	font-size: 14px;
	text-decoration: none;
	border-radius: 0 0 4px 0;
	transition: top 0.2s ease;
}

.emwc-skip-link:focus {
	top: 0;
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

/* Focus visible outlines for keyboard navigation */
.emwc-single-event a:focus-visible,
.emwc-single-event button:focus-visible,
.emwc-single-event input:focus-visible,
.emwc-single-event select:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

