/*

- Add icon variables here, f.e.

$icon-check: '<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 11.2 3.4 7.6 2 9l5 5 9-9-1.4-1.4z" fill="currentColor"/></svg>';


- This variables can be used like this:

.className {
  background-image: background-icon($icon-check, $primary-color-1);
}

*/
/*

- Add icon variables here, f.e.

$icon-check: '<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 11.2 3.4 7.6 2 9l5 5 9-9-1.4-1.4z" fill="currentColor"/></svg>';


- This variables can be used like this:

.className {
  background-image: background-icon($icon-check, $primary-color-1);
}

*/
.snk-textBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.snk-textBlock_slim {
  gap: 1rem;
}
.snk-textBlock > * {
  margin-bottom: 0 !important;
  max-width: 914px;
}
.snk-textBlock .snk-textBlock-icon {
  height: 2rem;
  max-width: 50%;
  min-width: 2rem;
  object-fit: contain;
  object-position: left center;
}
.snk-textBlock_center {
  justify-self: center;
}
.snk-textBlock_center .snk-text-highlight-text {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .snk-textBlock_center .snk-text_one_column {
    margin-left: 16.66666667%;
  }
}
.snk-textBlock_right {
  justify-self: flex-end;
}
@media (min-width: 768px) {
  .snk-textBlock_right .snk-text-highlight-roofline {
    margin-left: 0;
  }
  .snk-textBlock_right .snk-text_one_column {
    margin-left: 33.33333333%;
  }
}
@media (min-width: 768px) {
  .snk-textBlock_left .snk-text-highlight-text {
    margin-left: 0;
  }
  .snk-textBlock_left .snk-text-highlight-roofline {
    order: 2;
    justify-items: flex-end;
  }
}
.snk-textBlock_left .snk-text_one_column {
  text-align: left;
}
.snk-textBlock_text-align_center .snk-text_one_column {
  text-align: center;
}
.snk-textBlock_text-align_center ul,
.snk-textBlock_text-align_center .snk-buttons {
  justify-self: center;
}
.snk-textBlock_text-align_right .snk-text_one_column {
  text-align: right;
}
.snk-textBlock_text-align_right ul,
.snk-textBlock_text-align_right .snk-buttons {
  justify-self: flex-end;
}
@media (max-width: 767.98px) {
  .snk-textBlock_left .snk-text-highlight-text, .snk-textBlock_right .snk-text-highlight-text {
    margin-top: 1rem;
  }
}

.snk-text_one_column h1 {
  font-size: var(--snk-fs-h2-s, 1.875rem);
  font-weight: 600;
}

/* Video Preview & Modal */
.snk-video-preview {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.snk-video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.snk-video-preview:hover img {
  transform: scale(1.05);
}

.snk-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.snk-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.snk-video-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.snk-video-modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.snk-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 10;
}

.snk-video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.snk-video-modal-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.snk-video-modal-video-wrapper iframe,
.snk-video-modal-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}