/** Shopify CDN: Minification failed

Line 109:5 Expected ":"

**/
.video-with-text-2026 {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.video-with-text-2026__inner * {
  margin: 0;
  box-sizing: border-box;
}

.video-with-text-2026__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: white;
  padding-top: 16px;
  padding-bottom: 16px;
}

.video-with-text-2026__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.video-with-text-2026__description  {

    font-size: 14px;
    line-height: 1.3;
}

.video-with-text-2026__title {
  font-size: 24px;
  line-height: 1.3;
  font-family: 'Superbusy Activity', 'inter';

}

@media (min-width: 768px) {
  .video-with-text-2026__title {
    font-size: 40px;
  }
}

.video-with-text-2026__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-with-text-2026__description p {
  font-size: 16px;
  text-align: center;
  line-height: 1.3;
}


.video-with-text-2026__border-italic {
  position: absolute;
  top: var(--border-italic-top);
  left: var(--border-italic-left);
  width: 100%;
  height: 100%;
}

.video-with-text-2026__border-italic[data-desktop] {
  display: none;
}

.video-with-text-2026__media {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-with-text-2026__video {
  width: 100%;
  height: 100%;
  max-width: 800px;
  aspect-ratio: calc(463 / 263);
  position: relative;
  cursor: pointer;
}

.video-with-text-2026__preview-mobile,
.video-with-text-2026__preview-desktop {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-with-text-2026__preview-desktop {
  display: none;
}

.video-with-text-2026__preview-image {
  width: 100%;
  max-width: 800px;
  height: 100%;
  max
  object-fit: cover;
}

.video-with-text-2026__play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-with-text-2026__video:hover .video-with-text-2026__play {
  opacity: 0.8;
}

/* Modal Styles */
.video-with-text-2026__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-with-text-2026__modal.is-active {
  display: flex;
  opacity: 1;
}

.video-with-text-2026__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.video-with-text-2026__modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  z-index: 1;
}

.video-with-text-2026__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 0;
}

.video-with-text-2026__modal-close:hover {
  opacity: 0.7;
}

.video-with-text-2026__modal-video-wrapper {
  width: 100%;
  height: 100%;
}

.video-with-text-2026__modal-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (min-width: 1024px) {
  .video-with-text-2026__inner {
    flex-direction: row-reverse;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .video-with-text-2026__border-italic[data-mobile] {
    display: none;
  }

  .video-with-text-2026__border-italic[data-desktop] {
    display: block;
    transform: scale(1.03);
  }

  .video-with-text-2026__video {
    aspect-ratio: calc(1055 / 601);
  }

  .video-with-text-2026__preview-mobile {
    display: none;
  }

  .video-with-text-2026__preview-desktop {
    display: block;
  }

  .video-with-text-2026__content {
    max-width: 300px;
    align-items: flex-start;
  }

  .video-with-text-2026__description p {
    text-align: left;
    font-size: 18px;
  }

  .video-with-text-2026__modal-content {
    width: 80%;
  }

  .video-with-text-2026__modal-close {
    top: -50px;
    width: 44px;
    height: 44px;
  }
}
