.home-header {
	padding-block: 3rem 7rem;
}


.webinar-library_footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem var(--h-spacing);
	display: grid;
	grid-template-columns: auto 2rem;
	align-items: center;
	border-top: solid rgba(20,25,93,.6) 1px;
	background: rgba(20,25,93,.2);
	color: #fff !important;
	text-decoration: none;
}

.wp-block-cover:not(.home-header) .webinar-library_footer {
	display: none;
}

.webinar-library_footer svg {
	transform: rotate(0deg);
	transition: transform .5s ease;

	height: 2rem;
	width:2rem;
}

.webinar-library_footer:hover svg {
	transform: rotate(810deg);
}

@media (max-width:1500px) {
	.home-header {
		margin-inline: calc(var(--h-spacing) * -1);
		margin-block: -3rem 3rem;
		padding-inline: var(--h-spacing);
		border-radius: 0;
	}
}

@media (min-width:1500px) {
	.home-header {
		border-radius: 1rem;
		margin-block: -1rem 3rem;
		padding-inline: 3rem;
	}
	.webinar-library_footer {
		padding-inline: 3rem;
	}
}
.home-header .wp-block-cover__inner-container {
	display: grid;
	justify-content: end;
	position: unset !important;
}


.featured-webinars {
  max-width: 400px;
  position: relative;
  padding: 0;
  background: rgba(255,255,255, .75);
  backdrop-filter: blur(5px) contrast(200%) saturate(150%);
  border-radius: .75rem;
  border: solid 1px #fff;
}

.featured-webinars:hover {
  outline: solid var(--lt-blue) 2px;
  outline-offset: 2px;
}


@media (min-width:700px) and (max-width:900px) {
  .featured-webinars {
    max-width: 50%;
    margin-left: auto;
  }
}

@media (max-width:700px) {
	.featured-webinars {
	max-width: 100%;
	margin-top: 50vw;
	}
	
	.home-header.wp-block-cover video.wp-block-cover__video-background {
		height: 80vw;
	}
	
	.home-header.wp-block-cover .wp-block-cover__background {
		background: linear-gradient(180deg, rgba(120, 110, 180, 0) 0%, rgba(120, 110, 180, 0) 60vw, rgba(120, 110, 180, 1) 80vw) !important;
		opacity: 1 !important;
	}
}

.first-full-width-hero .featured-webinars {
  max-width: unset;
  margin-top: 0 !important;
  }


.featured-webinars__header {
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #fff;
	justify-content: space-between;
	gap: 1rem;
}

h2.featured-webinars__title.featured-webinars__title {
  font-size: .75rem;
  font-weight: 400;
  text-transform: uppercase;
  background: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 70%);
  padding: .25rem .5rem;
  border-radius: .25rem;
  color: #fff;
  margin-bottom: 0 !important;
}


.featured-webinars__grid {
  display: grid;
}

.featured-webinars__items {
  position: unset;
  display: grid;
  padding: 1rem;
}

/* Every item sits in the same grid cell; only .is-active is visible */
.featured-webinars__item {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: unset;
}

.featured-webinars__item.is-active {
  opacity: 1;
  pointer-events: all;
}

.featured-webinars__labels {
	display: flex;
	justify-content: space-between;
	align-content: center;
}

.featured-webinars__badge,
.featured-webinars__ce {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  align-self: center;
}

.featured-webinars__ce {
	padding: .125rem .5rem;
	background: var(--dk-blue);
	color: #fff;
	border-radius: 1rem;
}

.featured-webinars__item-title.featured-webinars__item-title {
  font-size: .9rem !important;
  line-height: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  padding-bottom: .05rem;
  margin-bottom: 0rem !important;
  color: var(--blue);
}





.featured-webinars__presenter {
  font-size: .8rem !important;
}

.featured-webinars__meta,
.featured-webinars__presenter {
  margin: 0 0 0.5rem;
}

.featured-webinars__headshots {
  display: flex;
  margin: 0 !important;
}

.featured-webinars__headshot.featured-webinars__headshot {
  margin: 0 !important;
}
.featured-webinars__headshot.featured-webinars__headshot:not(:first-child) {
	margin-left: -.4rem !important;
}



.featured-webinars__headshot img {
  border-radius: 999px;
  height: 4rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border: solid 1.5px var(--blue);
}

.featured-webinars__headshots > * {
  transform: rotateY(0deg);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease;
}

.featured-webinars__item.is-active .featured-webinars__headshots > * {
  transform: rotateY(360deg);
  opacity: 1;
}

 .featured-webinars__headshots > *:nth-child(1) {
  transition-delay: .3s;
}

 .featured-webinars__headshots > *:nth-child(2),
  .featured-webinars__item.is-active .fade-in-down:nth-child(2) {
  transition-delay: .6s;
}

 .featured-webinars__headshots > *:nth-child(3),
 .featured-webinars__item.is-active .fade-in-down:nth-child(3) {
  transition-delay: .9s;
}

 .featured-webinars__headshots > *:nth-child(4),
  .featured-webinars__item.is-active .fade-in-down:nth-child(4) {
  transition-delay: 1.2s;
}

.fade-in-down {
  transform: translateY(-1rem);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}

.featured-webinars__item.is-active .fade-in-down {
  transform: translateY(0rem);
  opacity: 1;
}

.featured-webinars__footer {
  margin: auto 0 0 0 !important;
  font-size: .9rem;
  font-weight: 600;
  display: grid;
  grid-template-columns: auto 2rem;
  align-items:center;
  color: var(--blue);
}

.featured-webinars__footer svg {
	transform: rotate(0deg);
	transition: transform .5s ease;
	height: 2rem;
	width:2rem;
}

.featured-webinars__item:hover .featured-webinars__footer svg {
	transform: rotate(720deg);
}

.featured-webinars__button {
  display: inline-block;
  text-decoration: none;
  position: absolute;
  z-index: 10;
  inset: 0;
  border-radius: .75rem;
}

.editor-styles-wrapper .featured-webinars__button {
	display: none;
	pointer-events: none;
}

.featured-webinars__schedule.featured-webinars__schedule {
	margin: 0 !important;
	font-size: .9rem;
}

/* SVG circle progress */
.featured-webinars__progress-svg {
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(-90deg); /* so it starts at top */
}

.featured-webinars__progress-bg,
.featured-webinars__progress-circle {
  fill: none;
  stroke-width: 4;
  r: 16;
  cx: 18;
  cy: 18;
}

/* Background circle (static) */
.featured-webinars__progress-bg {
  opacity: 0.25;
}

/* Animated circle */
.featured-webinars__progress-circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  /* transition will be set via JS so we can reset per slide */
}

.featured-webinars__progress-bg {
  stroke: currentColor;
}

.featured-webinars__progress-circle {
  stroke: var(--blue);
}