/* Hero Section */
.single-webinar .gb-container-afd84a80:before {
	background-image: unset !important;
	background-color: var(--contrast);
}

/* Breadcrumbs */
.webinar-breadcrumbs {
	margin-bottom: 1em;
}

.webinar-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.25em;
	font-size: 0.9em;
}

.webinar-breadcrumbs__item {
	margin: 0;
	padding: 0;
}

.webinar-breadcrumbs__separator {
	color: currentColor;
	opacity: 0.6;
}

.webinar-breadcrumbs__link {
	text-decoration: none;
}

.webinar-breadcrumbs__link:hover {
	text-decoration: underline;
}

.webinar-breadcrumbs__current {
	font-weight: 600;
}

/* Entry meta (categories, date) – spacing so items aren’t squashed */
.webinar-single .entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em 1.75em;
}

.webinar-single .entry-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
}

.webinar-single .entry-meta__icon {
	flex-shrink: 0;
	vertical-align: middle;
	opacity: 0.85;
}

.webinar-single .entry-meta__icon--category,
.webinar-single .entry-meta__icon--date {
	width: 1.125em;
	height: 1.125em;
	display: inline-block;
	vertical-align: middle;
}

/* Webinar Single */
@media screen and (max-width: 1200px) {
	article.webinar-single {
		padding: 0 20px;
	  }
}

/* Featured image link */
.webinar-featured-image-link {
	display: block;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.webinar-featured-image-link:hover {
	opacity: 0.9;
	text-decoration: none;
}

.webinar-featured-image-link .webinar-featured-image {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}
.webinar-featured-image {
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	display: block;
  }

/* Constrain entry content width to match featured image */
.single-webinar .entry-content {
	max-width: 100%;
	width: 100%;
}

.webinar-booking-section {
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	padding: 30px 20px;
	background-color: rgba(0, 0, 0, 0.02);
	border: 2px solid var(--accent, currentColor);
	border-radius: 8px;
}

.webinar-booking-button {
	background-color: var(--accent);
	color: var(--base-3);
	padding: 15px 30px;
	margin: 0 !important;
	display: inline-block;
	text-decoration: none;
	border-radius: 4px;
	transition: opacity 0.3s ease, transform 0.2s ease;
	font-size: 1.1em;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.webinar-booking-button:hover {
	opacity: 0.9;
	text-decoration: none;
	color: var(--base-3);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Webinar post navigation (previous/next) */
.webinar-post-navigation-wrap {
	margin-top: 40px;
	margin-bottom: 40px;
}

.webinar-post-navigation-wrap .post-navigation {
	margin: 0;
	padding: 0;
}

.webinar-post-navigation-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: space-between;
}

.webinar-post-navigation-wrap .nav-previous,
.webinar-post-navigation-wrap .nav-next {
	flex: 0 1 calc(50% - 7.5px);
	box-sizing: border-box;
	min-width: 0;
	max-width: calc(50% - 7.5px);
}

.webinar-post-navigation-wrap .nav-previous {
	text-align: left;
}

.webinar-post-navigation-wrap .nav-next {
	text-align: right;
}

.webinar-post-navigation-wrap .nav-previous a,
.webinar-post-navigation-wrap .nav-next a {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	text-decoration: none;
	padding: 12px 16px;
	background-color: var(--accent, currentColor);
	color: var(--base-3, #fff);
	border: 1px solid var(--accent, currentColor);
	border-radius: 4px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	box-sizing: border-box;
}

.webinar-post-navigation-wrap .nav-previous a:hover,
.webinar-post-navigation-wrap .nav-next a:hover {
	background-color: transparent;
	color: var(--accent, currentColor);
	border-color: var(--accent, currentColor);
}

.webinar-post-navigation-wrap .nav-arrow {
	display: inline-block;
	font-size: 1.25em;
	line-height: 1;
	flex-shrink: 0;
}

.webinar-post-navigation-wrap .nav-previous .nav-title,
.webinar-post-navigation-wrap .nav-next .nav-title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	min-width: 0;
}

.webinar-post-navigation-wrap .nav-subtitle {
	display: block;
	font-size: 0.85em;
	opacity: 0.85;
}
