/**
 * Standalone webinar lesson page + reflection block styles.
 */

.gopher-pd-webinar-reflection,
.gopher-pd-webinar-lesson-intro,
body.gopher-pd-webinar-lesson-layout {
	--gopher-pd-blue: #01539f;
	--gopher-pd-blue-dark: #014684;
	--gopher-pd-red: #ee2c24;
	--gopher-pd-grey: #f0f0f0;
	--gopher-pd-grey-border: #d9d9d9;
}

/* --- Page layout -------------------------------------------------------- */

body.gopher-pd-webinar-lesson-layout .lms-topic-sidebar-wrapper {
	display: none !important;
}

body.gopher-pd-webinar-lesson-layout #learndash-content > .bb-grid {
	display: block;
}

body.gopher-pd-webinar-lesson-layout #learndash-content.container-full,
body.gopher-pd-webinar-lesson-layout #learndash-content {
	width: 100%;
	max-width: none;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.gopher-pd-webinar-lesson-layout #learndash-page-content {
	width: 100%;
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 20px 48px;
	flex: 1 1 100%;
	min-height: auto;
}

body.gopher-pd-webinar-lesson-layout .bb-sfwd-aside .elementor-location-single > .elementor-section-wrap > .elementor-section,
body.gopher-pd-webinar-lesson-layout .bb-sfwd-aside:not(.lms-side-panel-close) .elementor-location-single .elementor-section .elementor-widget:not(.elementor-widget-theme-post-content) {
	margin-left: 0 !important;
}

body.gopher-pd-webinar-lesson-layout .learndash-wrapper .learndash_content_wrap,
body.gopher-pd-webinar-lesson-layout .learndash-wrapper .bb-lms-header .lms-header-title,
body.gopher-pd-webinar-lesson-layout .learndash-wrapper .bb-lms-header .lms-header-instructor {
	max-width: none;
}

/* Hide LearnDash lesson chrome on standalone webinars. */
body.gopher-pd-webinar-lesson-layout #learndash-course-header .bb-ld-info-bar,
body.gopher-pd-webinar-lesson-layout #learndash-course-header .bb-position,
body.gopher-pd-webinar-lesson-layout #learndash-course-header .lms-header-title,
body.gopher-pd-webinar-lesson-layout #learndash-course-header .lms-header-instructor,
body.gopher-pd-webinar-lesson-layout .learndash-wrapper .ld-content-actions,
body.gopher-pd-webinar-lesson-layout .learndash-wrapper .learndash_mark_complete_button,
body.gopher-pd-webinar-lesson-layout .learndash-wrapper .ld-course-step-action {
	display: none !important;
}

body.gopher-pd-webinar-lesson-layout #learndash-course-header.bb-lms-header {
	padding-top: 0;
	margin-bottom: 0;
}

body.gopher-pd-webinar-lesson-layout .learndash-content-body .bb-elementor-header-items {
	display: none;
}

/* --- Intro block -------------------------------------------------------- */

.gopher-pd-webinar-lesson-intro {
	margin-bottom: 1.75rem;
}

.gopher-pd-webinar-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: var(--gopher-pd-grey);
	color: #4d5c6d;
	border-radius: var(--bb-button-radius, 6px);
	padding: 0.35rem 0.85rem 0.35rem 0.65rem;
	font-size: 0.8125rem;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.gopher-pd-webinar-back-link:hover {
	background: #e4e4e4;
	color: var(--gopher-pd-blue);
}

.gopher-pd-webinar-lesson-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	line-height: 1.2;
	margin: 1rem 0 1.25rem;
	color: var(--bb-headings-color, #122b46);
}

.gopher-pd-webinar-steps {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gopher-pd-webinar-step {
	display: flex;
	align-items: center;
}

.gopher-pd-webinar-step-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #4d5c6d;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: var(--gopher-pd-grey);
}

.gopher-pd-webinar-step.is-current .gopher-pd-webinar-step-label {
	background: var(--gopher-pd-blue);
	color: #fff;
}

.gopher-pd-webinar-step-separator {
	display: block;
	width: 1.25rem;
	height: 1px;
	background: var(--gopher-pd-grey-border);
}

/* --- Video -------------------------------------------------------------- */

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .ld-video,
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .ld-video-responsive,
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .gopher-pd-video-stack,
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap iframe,
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .wp-block-embed,
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-video {
	max-width: 100%;
	margin-bottom: 1.5rem;
}

/* --- Reflection block --------------------------------------------------- */

.gopher-pd-webinar-reflection {
	margin-top: 2rem;
}

.gopher-pd-webinar-reflection-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, var(--gopher-pd-grey) 100%);
	border: 2px solid var(--gopher-pd-grey-border);
	border-radius: 16px;
	padding: 0;
	box-shadow:
		0 4px 6px rgba(1, 83, 159, 0.06),
		0 16px 40px rgba(1, 83, 159, 0.08);
}

.gopher-pd-webinar-reflection-hero {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.75rem 1.5rem 1.25rem;
	background: linear-gradient(135deg, var(--gopher-pd-blue) 0%, var(--gopher-pd-blue-dark) 100%);
	color: #fff;
}

.gopher-pd-webinar-reflection-hero-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.gopher-pd-webinar-reflection-hero-copy {
	flex: 1;
	min-width: 0;
}

.gopher-pd-webinar-badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-left: 3px solid var(--gopher-pd-red);
	border-radius: 999px;
	padding: 0.3rem 0.75rem;
	margin-bottom: 0.65rem;
}

body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-hero h2.gopher-pd-webinar-reflection-heading,
.gopher-pd-webinar-reflection-hero .gopher-pd-webinar-reflection-heading,
.gopher-pd-webinar-reflection-heading {
	font-size: clamp(1.375rem, 3vw, 1.75rem);
	line-height: 1.25;
	margin: 0 0 0.5rem;
	color: #fff;
	font-weight: 700;
}

.gopher-pd-webinar-reflection-lead {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	max-width: 42rem;
}

.gopher-pd-webinar-callout {
	padding: 1.25rem 1.5rem 0;
	margin: 0;
	background: transparent;
	border: 0;
}

.gopher-pd-webinar-callout-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--bb-body-text-color, #4d5c6d);
}

.gopher-pd-webinar-callout-text a {
	font-weight: 700;
	color: var(--gopher-pd-blue);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gopher-pd-webinar-callout-text a:hover {
	color: var(--gopher-pd-red);
}

.gopher-pd-webinar-callout-note {
	margin: 0.65rem 0 0;
	padding: 0.65rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #4d5c6d;
	background: var(--gopher-pd-grey);
	border-radius: 8px;
	border: 1px solid var(--gopher-pd-grey-border);
	border-left: 4px solid var(--gopher-pd-red);
}

.gopher-pd-webinar-reflection-action {
	padding: 1.25rem 1.5rem 1.75rem;
	text-align: center;
}

.gopher-pd-webinar-reflection-notice {
	padding: 0.75rem 1rem;
	border-radius: 6px;
	background: #fff8e5;
	border: 1px solid #f0dba6;
}

/* Quiz buttons — style start + finish only; hide all other navigation. */
.gopher-pd-webinar-reflection-section input[name="startQuiz"],
.gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap input[name="checkSingle"],
.gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap .gopher-pd-webinar-finish-btn,
body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-section input[name="startQuiz"],
body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap input[name="checkSingle"] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 320px);
	font-size: 1.0625rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em;
	padding: 1rem 2rem !important;
	border-radius: 999px !important;
	border: 0 !important;
	background: var(--gopher-pd-blue) !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(1, 83, 159, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.gopher-pd-webinar-reflection-section input[name="startQuiz"]:hover,
.gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap input[name="checkSingle"]:hover,
.gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap .gopher-pd-webinar-finish-btn:hover {
	transform: translateY(-2px);
	background: var(--gopher-pd-blue-dark) !important;
	box-shadow: 0 8px 22px rgba(1, 83, 159, 0.38);
	color: #fff !important;
}

.gopher-pd-webinar-reflection-section .wpProQuiz_content input.wpProQuiz_button:not([name="startQuiz"]):not([name="checkSingle"]),
.gopher-pd-webinar-reflection-section .wpProQuiz_content input[name="wpProQuiz_pageLeft"],
.gopher-pd-webinar-reflection-section .wpProQuiz_content input[name="wpProQuiz_pageRight"],
.gopher-pd-webinar-reflection .wpProQuiz_listItem input[name="back"],
.gopher-pd-webinar-reflection .wpProQuiz_listItem input[name="check"],
.gopher-pd-webinar-reflection .wpProQuiz_listItem input[name="next"],
.gopher-pd-webinar-reflection .wpProQuiz_listItem input[name="skip"],
.gopher-pd-webinar-reflection .wpProQuiz_listItem input[name="tip"],
body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-section .wpProQuiz_content input.wpProQuiz_button:not([name="startQuiz"]):not([name="checkSingle"]),
body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-section .wpProQuiz_content input[name="wpProQuiz_pageLeft"],
body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-section .wpProQuiz_content input[name="wpProQuiz_pageRight"],
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .wpProQuiz_listItem input[name="back"],
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .wpProQuiz_listItem input[name="check"],
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .wpProQuiz_listItem input[name="next"],
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .wpProQuiz_listItem input[name="skip"],
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .wpProQuiz_listItem input[name="tip"] {
	display: none !important;
}

.gopher-pd-webinar-finish-wrap {
	padding: 1.5rem 1.5rem 2.5rem;
	text-align: center;
}

.gopher-pd-webinar-reflection-section textarea.wpProQuiz_questionEssay {
	display: block;
	width: 100%;
	margin-bottom: 0.35rem;
}

.gopher-pd-webinar-essay-counter {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #4d5c6d;
}

.gopher-pd-webinar-essay-counter.is-below-minimum {
	color: var(--gopher-pd-red);
}

.gopher-pd-webinar-essay-counter.is-met-minimum {
	color: #2f8351;
}

.gopher-pd-webinar-essay-hint {
	margin: -0.75rem 0 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gopher-pd-red);
}

.gopher-pd-webinar-essay-notice {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gopher-pd-red);
}

.gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap input[name="checkSingle"]:disabled,
.gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap .gopher-pd-webinar-finish-btn:disabled,
.gopher-pd-webinar-reflection-section .gopher-pd-webinar-finish-wrap .gopher-pd-webinar-finish-btn.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

/* Hide checkSingle until moved into the finish wrapper (avoids duplicate pills). */
.gopher-pd-webinar-reflection-section .wpProQuiz_quiz > div > input[name="checkSingle"] {
	display: none !important;
}

/* Legacy manual webinar blocks (lessons not yet on [gopher_webinar_reflection]). */
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap h2#RQtitle {
	font-size: clamp(1.375rem, 3vw, 1.75rem);
	line-height: 1.25;
	margin: 2rem 0 0.75rem;
	padding: 1.75rem 1.5rem 1.25rem;
	color: #fff;
	font-weight: 700;
	background: linear-gradient(135deg, var(--gopher-pd-blue) 0%, var(--gopher-pd-blue-dark) 100%);
	border-radius: 16px 16px 0 0;
	border: 2px solid var(--gopher-pd-grey-border);
	border-bottom: 0;
	box-shadow: 0 4px 6px rgba(1, 83, 159, 0.06);
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap h2#RQtitle + p,
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap h2#RQtitle ~ p:has(.wpProQuiz_quiz),
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap h2#RQtitle ~ .wpProQuiz_quiz {
	margin-left: 0;
	margin-right: 0;
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap h2#RQtitle ~ p:has(.wpProQuiz_quiz),
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap h2#RQtitle ~ .wpProQuiz_quiz:first-of-type {
	padding: 1.25rem 1.5rem 1.75rem;
	text-align: center;
	background: linear-gradient(180deg, #ffffff 0%, var(--gopher-pd-grey) 100%);
	border: 2px solid var(--gopher-pd-grey-border);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	box-shadow: 0 16px 40px rgba(1, 83, 159, 0.08);
	margin-bottom: 2rem;
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap p:has(a[href*="registration"]) {
	display: block;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--bb-body-text-color, #4d5c6d);
	background: var(--gopher-pd-grey);
	border: 1px solid var(--gopher-pd-grey-border);
	border-left: 4px solid var(--gopher-pd-blue);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin: 1.5rem 0 0;
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap p:has(a[href*="registration"]) em {
	font-style: normal;
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap p:has(a[href*="registration"]) a {
	font-weight: 700;
	color: var(--gopher-pd-blue);
}

/* Legacy Elementor HTML widget (pre-shortcode reflection blocks). */
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html .elementor-widget-container {
	text-align: center;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1rem;
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html h2:not(.gopher-pd-webinar-thank-you) {
	text-align: center;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	line-height: 1.3;
	margin: 1.5rem auto 1rem;
	max-width: 32rem;
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html .wpProQuiz_quiz,
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html .wpProQuiz_text {
	text-align: center;
}

body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html a[href*="registration"],
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html a[href*="wp-login"] {
	font-weight: 700;
	color: var(--gopher-pd-blue);
}

/* --- Post-quiz completion panel ----------------------------------------- */

.gopher-pd-webinar-reflection h2#RQtitle,
.gopher-pd-webinar-reflection .ld-lesson-topic-list {
	display: none !important;
}

.gopher-pd-webinar-reflection-action input[name="startQuiz"],
body.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html input[name="startQuiz"] {
	display: inline-flex !important;
}

/* Hide pre-quiz prompt and start button after reflection is complete. */
body.gopher-pd-reflection-quiz-complete .gopher-pd-webinar-reflection-start,
body.gopher-pd-reflection-quiz-complete .gopher-pd-webinar-reflection-hero,
body.gopher-pd-reflection-quiz-complete .gopher-pd-webinar-callout,
body.gopher-pd-reflection-quiz-complete .gopher-pd-webinar-reflection-action,
body.gopher-pd-reflection-quiz-complete.gopher-pd-webinar-lesson-layout h2#RQtitle,
body.gopher-pd-reflection-quiz-complete.gopher-pd-webinar-lesson-layout .learndash_content_wrap .elementor-widget-html h2:not(.gopher-pd-webinar-thank-you),
body.gopher-pd-reflection-quiz-complete.gopher-pd-webinar-lesson-layout .learndash-wrapper .ld-table-list.ld-topic-list,
body.gopher-pd-webinar-lesson-layout:has(.gopher-pd-webinar-reflection.is-reflection-complete) .learndash_content_wrap .elementor-widget-html h2:not(.gopher-pd-webinar-thank-you),
body.gopher-pd-webinar-lesson-layout:has(.gopher-pd-webinar-reflection.is-reflection-complete) .learndash-wrapper .ld-table-list.ld-topic-list,
body.gopher-pd-reflection-quiz-complete.gopher-pd-webinar-lesson-layout .learndash_content_wrap .wpProQuiz_quiz,
body.gopher-pd-reflection-quiz-complete.gopher-pd-webinar-lesson-layout .learndash_content_wrap p:has(.wpProQuiz_quiz),
body.gopher-pd-reflection-quiz-complete.gopher-pd-webinar-lesson-layout .learndash_content_wrap p:has(a[href*="registration"]) {
	display: none !important;
}

.gopher-pd-webinar-reflection-completion:not(:empty) {
	display: block;
}

.gopher-pd-webinar-reflection-completion:empty {
	display: none;
}

.gopher-pd-webinar-reflection.is-reflection-complete .wpProQuiz_content,
.gopher-pd-webinar-reflection.is-reflection-complete .gopher-pd-webinar-reflection-start {
	display: none !important;
}

.gopher-pd-webinar-completion-loading {
	margin: 0;
	padding: 2rem 1.5rem 2.5rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	color: #4d5c6d;
	background: linear-gradient(180deg, #ffffff 0%, var(--gopher-pd-grey) 100%);
}

.gopher-pd-webinar-reflection-section.is-reflection-complete {
	padding: 0;
	overflow: hidden;
}

.gopher-pd-webinar-reflection-section.is-reflection-complete .gopher-pd-webinar-thank-you {
	border-radius: 0;
	margin: 0;
}

body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-section h2.gopher-pd-webinar-thank-you,
.gopher-pd-webinar-reflection-section h2.gopher-pd-webinar-thank-you,
.gopher-pd-webinar-thank-you {
	margin: 0;
	padding: 1.75rem 1.5rem;
	text-align: center;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	line-height: 1.35;
	font-weight: 700;
	color: #fff !important;
	background: linear-gradient(135deg, var(--gopher-pd-blue) 0%, var(--gopher-pd-blue-dark) 100%);
	border-radius: 0;
}

.gopher-pd-webinar-complete-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0;
	padding: 1.75rem 1.5rem 2rem;
	background: linear-gradient(180deg, #ffffff 0%, var(--gopher-pd-grey) 100%);
	border: 0;
	border-radius: 0;
}

.gopher-pd-webinar-review-link {
	margin: 0 0 1rem;
}

.gopher-pd-webinar-review-link a {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--gopher-pd-blue);
	text-decoration: none;
}

.gopher-pd-webinar-review-link a:hover {
	color: var(--gopher-pd-red);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gopher-pd-webinar-complete-panel h3 {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--bb-headings-color, #122b46);
}

.gopher-pd-webinar-complete-panel .learndash-wrapper,
.gopher-pd-webinar-complete-panel #learndash_course_certificate {
	margin: 0;
	width: 100%;
	text-align: center;
}

.gopher-pd-webinar-complete-panel .btn-blue,
.gopher-pd-webinar-complete-panel a.btn-blue,
.gopher-pd-webinar-complete-panel #learndash_course_certificate .btn-blue,
.gopher-pd-webinar-complete-panel #learndash_course_certificate a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 280px);
	padding: 1rem 2rem !important;
	border-radius: 999px !important;
	border: 0 !important;
	background: var(--gopher-pd-blue) !important;
	color: #fff !important;
	font-size: 1.0625rem !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	text-transform: none !important;
	box-shadow: 0 4px 14px rgba(1, 83, 159, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.gopher-pd-webinar-complete-panel .btn-blue:hover,
.gopher-pd-webinar-complete-panel a.btn-blue:hover,
.gopher-pd-webinar-complete-panel #learndash_course_certificate .btn-blue:hover,
.gopher-pd-webinar-complete-panel #learndash_course_certificate a:hover {
	background: var(--gopher-pd-blue-dark) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(1, 83, 159, 0.38);
}

@media screen and (min-width: 768px) {
	body.gopher-pd-webinar-lesson-layout #learndash-page-content {
		padding-left: 32px;
		padding-right: 32px;
	}

	.gopher-pd-webinar-reflection-hero {
		padding: 2rem 2rem 1.5rem;
	}

	.gopher-pd-webinar-callout,
	.gopher-pd-webinar-reflection-action {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.gopher-pd-webinar-reflection-action {
		padding-bottom: 2rem;
	}

	body.gopher-pd-webinar-lesson-layout .gopher-pd-webinar-reflection-section h2.gopher-pd-webinar-thank-you,
	.gopher-pd-webinar-reflection-section h2.gopher-pd-webinar-thank-you {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.gopher-pd-webinar-complete-panel {
		padding-left: 2rem;
		padding-right: 2rem;
		padding-bottom: 2.5rem;
	}
}
