/** Shopify CDN: Minification failed

Line 40:16 Expected identifier but found whitespace
Line 40:18 Unexpected "{"
Line 40:27 Expected ":"
Line 40:55 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:portrait-video-text (INDEX:51) */
.pvt-section {
  background-color: var(--pvt-bg, #ffffff);
  color: var(--pvt-text-color, #1a1a1a);
  padding-top: var(--pvt-padding-top, 60px);
  padding-bottom: var(--pvt-padding-bottom, 60px);
}

.pvt-container {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pvt-video-col {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 380px);
}

.pvt-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: {{ section.settings.border_radius }}px;
  background: #000;
}

.pvt-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pvt-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.pvt-placeholder-svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.pvt-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pvt-subtitle {
  font-size: 0.85em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0;
}

.pvt-title {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: normal;
  line-height: 1.15;
  margin: 0;
}

.pvt-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

.pvt-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  background: var(--pvt-text-color, #1a1a1a);
  color: var(--pvt-bg, #ffffff);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.pvt-btn:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .pvt-container {
    flex-direction: column;
    gap: 32px;
  }
  .pvt-video-col {
    width: clamp(180px, 55vw, 280px);
    margin: 0 auto;
  }
}
/* END_SECTION:portrait-video-text */