/* Eventixa Venue Details: route-specific layout only. */
.evx-venue-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px;
	border-bottom: 1px solid var(--evx-border);
}

.evx-venue-breadcrumb [aria-current="page"] {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.evx-venue-hero {
	width: 100%;
	aspect-ratio: 16 / 5.05;
	border-radius: 10px;
	overflow: hidden;
	background: var(--evx-surface-soft);
}

.evx-venue-header {
	padding: 10px 0px 10px;
}

.evx-venue-header h1 {
	margin: 5px 0 5px;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
}

.evx-venue-content {
	padding: 20px;
}

.evx-venue-detail-row:first-child { padding-top: 12px; }
.evx-venue-detail-row__icon { color: var(--evx-text-muted); line-height: 1; }
.evx-venue-info-card__empty { margin: 0; color: var(--evx-text-muted); }

.evx-venue-map {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 6;
	min-height: 160px;
	border-radius: 5px;
	overflow: hidden;
	background: var(--evx-surface-soft);
}

.evx-venue-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.evx-venue-map-card__address { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: var(--evx-text-muted); }
.evx-venue-event-card__category { 
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--evx-primary);
}
.evx-venue-event-card__meta { 
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--evx-text-muted);
}
.evx-venue-event-card__meta svg { width: 15px; height: 15px; color: var(--evx-text-muted); }

@media (max-width: 768px) {
	.evx-venue-hero { 
		aspect-ratio: 16 / 6;
		min-height: 220px; 
	}
	.evx-venue-header { padding-top: 22px; }
}
