.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container, 
#tribe-events, 
#tribe-events-pg-template, 
.tribe-events-pg-template, 
#tribe-events-content {
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: none;
}

.tribe-events-single-event-title {
	display: none;
	visibility: hidden;
}

.tribe-block__venue {font-family: var(--font-1);}

.tribe-block__venue .tribe-block__venue__meta .tribe-block__venue__name h3 {
	font-size: 1.15em;
	font-weight: bold;
}

/* Event List */

.event-list, 
.event-list .event {
	margin-left: 0;
	list-style: none;
}

.event-list .event:not(:last-child) {margin-bottom: 0.5em;}

.event-list .event-title {
	font-weight: bold;
}

.event-list .event-date {
	color: var(--dark-3);
	font-size: 0.94em;
}

/** Event Horizontal **/
.events-horizontal-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.event-item-horizontal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 50px;
  background-color: var(--wp--custom--light--3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-item-horizontal:last-child {
  padding-bottom: 0;
}
.event-link-wrapper {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	text-decoration: none;
	color: inherit;
}
.event-thumb {
	flex: 0 0 40%;
	max-width: 40%;
}
.event-thumb img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.event-link {
	display:inline-block;
	margin-top:20px;
}

.event-details {
	flex: 0 0 60%;
	max-width: 60%;
}
.event-title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}
.event-date {
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.event-divider {
	display: none; 
}
@media (max-width: 768px) {
	.event-item-horizontal,
	.event-link-wrapper {
		flex-direction: column;
	}
	.event-thumb,
	.event-details {
		flex: 100%;
		max-width: 100%;
	}
	.event-thumb {
		margin-bottom: 1rem;
	}
}