.webinarVideo {
  position: relative;
  width: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 4rem;
}
@media (width <= 1024px) {
  .webinarVideo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.webinarVideo__content {
  display: grid;
  gap: 2rem;
}
.webinarVideo__head {
  text-align: right;
  display: grid;
}
@media (width <= 1024px) {
  .webinarVideo__head {
    text-align: center;
  }
}
.webinarVideo__title {
  width: 100%;
  margin: 0;
}
.webinarVideo__subtitle {
  font-size: var(--text-h5, 1.25rem);
  margin: 0;
}
.webinarVideo__list {
  display: grid;
  overflow: hidden;
  border-radius: var(--border-radius-sm, 1rem);
  background: white;
  box-shadow: 0 0 1.25rem 0 rgba(var(--primary-rgb), 0.2);
}
.webinarVideo__list-item {
  border-bottom: 1px solid var(--border-color, lightgray);
}
.webinarVideo__list-item:last-child {
  border-bottom: none;
}
.webinarVideo__list-item::details-content {
  display: block;
  overflow: hidden;
}
@supports (block-size: calc-size(auto, size)) {
  .webinarVideo__list-item::details-content {
    transition-property: block-size, content-visibility;
    transition-duration: 0.5s;
    transition-behavior: allow-discrete;
    block-size: 0;
  }
}
.webinarVideo__list-item[open]::details-content {
  /* Fallback for browsers that don't support calc-size() function */
  block-size: auto;
  /* calc-size() function allows transition to height: auto; */
  block-size: calc-size(auto, size);
}
.webinarVideo__list-item[open] .webinarVideo__list-item-arrow {
  rotate: 180deg;
}
.webinarVideo__list-item-summary {
  display: grid;
  grid-template-areas: "dot time title arrow";
  grid-template-columns: 0.625rem 4.5rem auto 1.5rem;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
}
.webinarVideo__list-item-summary:before {
  grid-area: dot;
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--primary-color, black);
}
.webinarVideo__list-item-time {
  grid-area: time;
  font-size: var(--text-caption, 0.875rem);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  padding: 0 0.5rem;
  line-height: 1;
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--primary-color, black);
  border-radius: var(--border-radius-lg);
  place-self: center start;
}
.webinarVideo__list-item-title {
  grid-area: title;
  font-size: var(--text-body, 1rem);
  font-weight: 400;
  margin: 0;
}
.webinarVideo__list-item-arrow {
  grid-area: arrow;
  font-size: 1.5rem;
}
.webinarVideo__list-item-content {
  padding: 1rem;
  background: rgba(var(--primary-rgb), 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.webinarVideo__list-item-content > p {
  margin: 0;
  flex: 300px;
}
.webinarVideo__media lite-youtube {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-sm, 1rem);
  height: auto;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}
.webinarVideo__media lite-youtube.lyt-activated .lty-playbtn {
  display: none;
}
.webinarVideo__media lite-youtube .lty-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: var(--primary-color, black);
  color: white;
  border: none;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
  font-size: 2.5rem;
  transition: all 0.3s ease-in-out;
}
.webinarVideo__media lite-youtube .lty-playbtn:hover {
  background: var(--primary-hover, gray);
  scale: 1.05;
}
.webinarVideo__media lite-youtube .lty-playbtn:before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2m-2 14.5l6-4.5l-6-4.5z'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.webinarVideo__media lite-youtube .lty-playbtn .lyt-visually-hidden {
  display: none;
}
.webinarVideo__media lite-youtube > iframe {
  width: 100%;
  height: 100%;
}
