/** Shopify CDN: Minification failed

Line 20:16 Expected identifier but found whitespace
Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 20:53 Expected ":"
Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:30 Expected ":"
Line 21:59 Expected ":"

**/
.section-tabbed-content-padding {
  padding-top: calc({{ section.settings.padding_top }}px * 0.75);
  padding-bottom: calc({{ section.settings.padding_bottom }}px * 0.75);
}

@media screen and (min-width: 750px) {
  .section-tabbed-content-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.tabbed-content {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tab-navigation {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.tab-button {
  background: none;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.75);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.tab-button.active {
  color: rgb(var(--color-foreground));
  border-bottom-color: rgb(var(--color-foreground));
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media screen and (min-width: 750px) {
  .tab-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tab-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  gap: 2rem;
  align-items: flex-start;
}

.tab-left h2 {
  margin: 0;
  font-size: calc(var(--font-heading-scale) * 3rem);
}

.tab-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.video-container {
  position: relative;
  width: 315px;
  margin: 0 0 2rem;
}

.video-container::before {
  content: "";
  display: block;
  padding-bottom: 177.78%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--media-radius);
}

.text-content {
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 315px;
}

.button {
  display: inline-flex;
  padding: 1.5rem 3rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  text-decoration: none;
  border-radius: var(--buttons-radius);
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  min-width: fit-content;
}

.button:hover {
  background: rgb(var(--color-button-hover));
  color: rgb(var(--color-button-text-hover));
}

@media screen and (max-width: 749px) {
  .tab-navigation {
    justify-content: flex-start;
  }
  
  .tab-left {
    min-height: auto;
    margin-bottom: 3rem;
  }
  
  .video-container {
    margin: 0 auto 2rem;
  }
  
  .text-content {
    max-width: 100%;
  }
}
