/** Shopify CDN: Minification failed

Line 219:10 Unexpected "{"
Line 219:19 Expected ":"
Line 220:14 Expected identifier but found whitespace
Line 220:16 Unexpected "{"
Line 220:25 Expected ":"
Line 220:51 Expected ":"
Line 221:17 Expected identifier but found whitespace
Line 221:19 Unexpected "{"
Line 221:28 Expected ":"
Line 221:57 Expected ":"

**/
.video-with-text {
  padding: 120px 0;
  margin-top: 100px;
  position: relative;
}

.video-with-text__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin: 0 8.33vw;
  padding: 0 4.16vw; */
  margin: 0 auto;
  max-width: 1400px;
}

@media screen and (max-width: 1600px) {
  div.video-with-text__wrapper  {
     margin: 0 8.33vw;
     padding: 0 4.16vw;
    max-width: auto;
  }
}

@media screen and (max-width: 1921px) {
  .video-with-text__wrapper  {
    padding: 0;
  }
}

.video-with-text__content {
  flex: 1 1 50%;
  max-width: 620px;
  margin-right: 9.6vw;
}

.video-with-text__content h2 {
  padding: 0;
  margin-bottom: 24px;
  font-family: "Graphie Bold";
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0;
  text-transform: capitalize;
}

.video-with-text__media {
  flex: 1 1 50%;
  position: relative;
  max-width: 620px;
}

.video-with-text__heading {
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.video-with-text__description {
  margin-bottom: 38px;
  font-size: 16px;
  color: #31414D;
}
.video-with-text__description p {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}

.video-with-text__button {
  display: inline-block;
  padding: 10px 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-with-text__button:hover {
  opacity: 0.9;
  color: white;
}

.video-container {
  position: relative;
  width: 620px;
  height: 462px;
  padding-top: 56.25%; /* 16:9 纵横比 */
  overflow: hidden;
  border-radius: 8px;
}

.video-with-text__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.video-play-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.video-play-button svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.video-with-text__placeholder {
  background-color: #f5f5f5;
  padding-top: 56.25%;
  position: relative;
  border-radius: 8px;
}

.video-with-text__placeholder .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {

  .video-with-text__wrapper {
    flex-direction: column-reverse;
    margin: 0 8px;
  }

  .video-with-text__media {
    position: relative;
    left: 0;
    width: 100vw !important;
  }

  .video-with-text__content h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .video-with-text__description p{
    color: #31414D;
    margin-bottom: 15px;
    font-family: "Graphie SemiBold";
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    text-align: center;
  }

  .video-with-text__button {
    display: none;
  }

  .video-container,
  .video-with-text__media {
    width: 100%;
    height: 51.8vw;
  }

  .video-with-text__content {
    order: 2;
    margin: 0;
  }
  
  .video-with-text__media {
    order: 1;
  }
  .video-with-text {
    padding: 0;
    margin: 0 0 25px;
  }
}

/* 版块间距 */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}