/** Shopify CDN: Minification failed

Line 629:13 Unexpected "{"
Line 629:20 Expected ":"
Line 629:27 Unexpected "{"
Line 630:6 Unexpected "{"
Line 630:7 Expected identifier but found "%"
Line 631:19 Expected identifier but found whitespace
Line 631:21 Unexpected "{"
Line 631:28 Expected ":"
Line 632:6 Unexpected "{"
Line 632:7 Expected identifier but found "%"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from block stylesheet tags */
/* START_BLOCK:_compare-chart_row (INDEX:58, SCOPED:FALSE) */
/* Feature cells */
.compare-chart__cell--feature {
  text-align: left;
  padding: 2px;
}

.compare-chart__cell-feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  gap: 16px;
}

.compare-chart__cell--feature .compare-chart__cell-text {
  font-family: var(--font-body-family);
  font-size: 1.67rem;
  font-weight: 400;
  line-height: 1.3;
  flex: 1;
}

.compare-chart__cell-info-icon {
  flex-shrink: 0;
  padding-bottom: 4px;
}

.compare-chart__cell-info-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Status cells */
.compare-chart__cell--status {
  text-align: center;
  padding: 6px 70px;
}

.compare-chart__cell-icon-status svg {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--icon-color, #00b0b9);
}

.compare-chart__cell--check { 
  --icon-color: rgb(var(--color-button));
}

.compare-chart__cell--cross {
  --icon-color: #F06CB9;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .compare-chart__cell--header {
    padding: 8px 12px;
  }
  
  .compare-chart__cell--header .compare-chart__cell-text {
    font-size: 1.5rem;
  }
  
  .compare-chart__cell-icon img {
    width: 55px;
    height: 55px;
  }
  
  .compare-chart__cell-icon--them img {
    width: 50px;
    height: 65px;
  }
  
  .compare-chart__cell--feature {
    min-width: 250px;
  }
  
  .compare-chart__cell-feature-content {
    padding: 15px 20px;
  }
  
  .compare-chart__cell--feature .compare-chart__cell-text {
    font-size: 1.5rem;
  }
  
  .compare-chart__cell--status {
    padding: 6px 50px;
  }
  
  .compare-chart__cell-icon-status svg {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 749px) {
  .compare-chart__cell--header {
    padding: 8px 10px;
  }
  
  .compare-chart__cell--header .compare-chart__cell-text {
    font-size: 1.3rem;
  }
  
  .compare-chart__cell-icon img {
    width: 45px;
    height: 45px;
  }
  
  .compare-chart__cell-icon--them img {
    width: 40px;
    height: 55px;
  }
  
  .compare-chart__cell--feature {
    width: 55%;
    min-width: 180px;
  }
  
  .compare-chart__cell-feature-content {
    padding: 12px 15px;
    gap: 10px;
  }
  
  .compare-chart__cell--feature .compare-chart__cell-text {
    font-size: 1.4rem;
  }
  
  .compare-chart__cell-info-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .compare-chart__cell--status {
    padding: 6px 30px;
  }
  
  .compare-chart__cell-icon-status svg {
    width: 28px;
    height: 28px;
  }
}
/* END_BLOCK:_compare-chart_row */

/* START_BLOCK:_comparison-table-row (INDEX:59, SCOPED:FALSE) */
.comparison-table-row {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    gap: 8px;
    padding: 0;
    min-height: 48px;

    /* &:not(.comparison-table-row--footer) {
        border-bottom: 1px solid rgba(var(--color-foreground), 0.2);
    } */
}

.comparison-table-row__label {
    display: flex;
    align-items: center;
    padding: 8px 0;
    background-color: rgb(var(--color-background));
}

.comparison-table-row__text {
    font-family: var(--font-body-family);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.33;
    letter-spacing: 0;
    color: rgb(var(--color-foreground));
}

.comparison-table-row__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
}

.comparison-table-row__cell svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comparison-table-row__value {
    font-family: var(--font-body-family);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0;
    color: rgb(var(--color-foreground));
}

.comparison-table-row__value--bold {
    font-weight: 500;
    /* color: rgb(var(--color-button)) */
}

.comparison-table-row__value--regular {
    font-weight: 400;
}

.comparison-table-row--footer {
    border-top: 1px solid rgb(var(--color-foreground));
    padding-top: 6px;
}

.comparison-table-row--footer .comparison-table-row__text {
    font-weight: 700;
}

.comparison-table-row.border--top {
    border-top: 1px solid rgba(var(--color-foreground), 0.15);
    padding-top: 1px;

    &.border--dark {
        border-color: rgba(var(--color-foreground), 1)
    }
}

@media screen and (max-width: 989px) {
    .comparison-table-row {
        min-height: 44px;
        grid-template-columns: 1fr 70px 70px;
    }

    .comparison-table-row__label {
        padding: 8px 0;
    }

    .comparison-table-row__text {
        font-size: 1.6rem;
    }

    .comparison-table-row__value {
        font-size: 1.6rem;
    }

    .comparison-table-row__cell {
        padding: 8px 4px;
    }

    .comparison-table-row__icon {
        width: 20px;
        height: 20px;
    }
}
/* END_BLOCK:_comparison-table-row */

/* START_BLOCK:_divider (INDEX:61, SCOPED:FALSE) */
.divider-block {
  width: 100%;
}

.divider-block .divider__line {
  border-top: var(--border-width) var(--border-style) var(--border-color);
  width: 100%;
  opacity: var(--opacity); 
  display: block !important;
}

.divider-block .divider__or-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.divider-block .divider__or-line {
  flex: 1;
  border-top: var(--border-width) var(--border-style) var(--border-color);
  max-width: 240px;
   opacity: var(--opacity);
  display: block !important;
}

.divider__or-text {
  font-family: var(--font-heading-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.12px;
  color: rgb(var(--color-foreground));
  text-align: center;
  min-width: 38px;
}

@media screen and (max-width: 749px) {
  .divider__or-line {
    max-width: 180px;
  }
}
/* END_BLOCK:_divider */

/* START_BLOCK:_point (INDEX:69, SCOPED:FALSE) */
.point {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  width: 100%;
}

.point__icon {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  position: relative;
}

.point__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;

  rect {
    fill: rgb(var(--color-button));
  }

  path {
    fill: rgb(var(--color-button-text));
    stroke: rgb(var(--color-button-text));
  }
}

.point__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.point__text {
  font-family: var(--font-body-family);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.4;
  color: rgb(var(--color-foreground));
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .point__text {
    font-size: 1.4rem;
  }
  
  .point__icon {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 749px) {
  .point {
    gap: 10px;
  }
  
  .point__icon {
    width: 20px;
    height: 20px;
  }
  
  .point__text {
    font-size: 1.65rem;
  }
}
/* END_BLOCK:_point */

/* START_BLOCK:_quantity-option (INDEX:70, SCOPED:FALSE) */
.quantity-option {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1.5px solid rgba(var(--color-foreground), 0.2);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;

  &:has(.quantity-option__input:checked) {
    border-color: rgb(var(--color-foreground));
  }
}

.quantity-option__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quantity-option__badge {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: rgb(var(--color-foreground));
  line-height: 1;
}

.quantity-option__badge--highlight {
  background-color: rgb(var(--color-button));
}

.quantity-option__badge span {
  font-family: var(--font-mono-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  color: rgb(var(--color-background));
  text-align: center;
}

.quantity-option__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  width: 100%;
  text-align: center;
}

.quantity-option:has(.quantity-option__badge) .quantity-option__content {
  padding: 14px 5px;
}

.quantity-option__title {
  font-family: var(--font-body-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 0.93;
  color: rgb(var(--color-foreground));
  margin: 0;
}

.quantity-option__subtitle {
  font-family: var(--font-body-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.08;
  color: rgb(var(--color-foreground));
  opacity: 0.7;
  margin: 0;
}

@media screen and (max-width: 749px) {
  .quantity-option__title {
    font-size: 14px;
  }

  .quantity-option__subtitle {
    font-size: 12px;
  }

  .quantity-option__badge span {
    font-size: 11px;
  }
}
/* END_BLOCK:_quantity-option */

/* START_BLOCK:_slider-group-slide (INDEX:72, SCOPED:FALSE) */
.slider-slide {
  min-height: 100px;
  box-sizing: border-box;
  min-width: 0;
  flex-shrink: 0;
  overflow: visible !important;
}

.slider-slide__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* END_BLOCK:_slider-group-slide */

/* START_BLOCK:_social_icons_block (INDEX:73, SCOPED:FALSE) */
.social-icons-block {
  width: auto;
  display: inline-block;

  .list-social {
    justify-content: flex-start;
  }
  
  .list-social__link {
    padding: 0.6rem;
  }

  .svg-wrapper {
    height: 2.4rem;
    width: 2.4rem;
  }

  .list-social__item .icon {
    height: 2.4rem;
    width: 2.4rem;
  }
}
/* END_BLOCK:_social_icons_block */

/* START_BLOCK:_variant_card (INDEX:76, SCOPED:FALSE) */
.variant-card-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.variant-card-block__grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns-desktop), 1fr);
  gap: var(--grid-gap);
  width: 100%;
}

.variant-card-block__item {
  width: 100%;
}

.variant-card-block__placeholder {
  padding: 4rem 2rem;
  text-align: center;
  background-color: rgba(var(--color-foreground), 0.04);
  border: 1px dashed rgba(var(--color-foreground), 0.2);
  border-radius: 0.8rem;
}

@media screen and (max-width: 989px) {
  .variant-card-block__grid {
    grid-template-columns: repeat(var(--grid-columns-tablet), 1fr);
  }
}

@media screen and (max-width: 749px) {
  .variant-card-block__grid {
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
  }
}
/* END_BLOCK:_variant_card */

/* START_BLOCK:_wave (INDEX:77, SCOPED:FALSE) */
.wave-divider {
      overflow: hidden;
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      line-height: 0;
      color: rgb(var(--color-background));
    }

    .wave-divider::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;          /* overlaps into the next wave */
        height: 3px;           /* thin mask */
        background: currentColor; /* matches the SVG path fill (currentColor) */
        pointer-events: none;
    }

    .wave-divier-down::after {
       top: -1px;
       bottom: auto;
    }
  
    /* Let CSS control the SVG size; override any global max-width */
    .wave-divider svg {
      display: block;
      width: 100%;
      height: auto;
      max-width: none; /* critical: allows >100% width */
    }
  
    /* Mobile: make SVG 300% width and center it */
    @media screen and (max-width: 749px) {
      .wave-divider svg {
        position: relative;
        width: 100%;
        height: 30px;
      }
    }
  
    /* Block-specific colors and optional horizontal flip */
    #Block--{{ block.id }} {
      {% unless block.settings.transparent_previous_section %}
        background: {{ block.settings.previous_section_bg }};
      {% endunless %}
    }
  
    #Block--{{ block.id }}.wave-divier-fliped {
      transform: scaleX(-1);
    }
/* END_BLOCK:_wave */

/* START_BLOCK:marquee_item (INDEX:88, SCOPED:FALSE) */
.marquee-section .shopify-block {
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  display: block !important;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 8px;
  min-height: 40px;
}

.marquee-item > * {
  flex-shrink: 0;
  line-height: 1.2;
}

@media screen and (max-width: 989px) {
  .marquee-item {
    gap: 14px;
    padding: 7px;
  }
}

@media screen and (max-width: 749px) {
  .marquee-item {
    gap: 12px;
    padding: 6px;
  }
}
/* END_BLOCK:marquee_item */

/* START_BLOCK:nutrition-labels-drawer (INDEX:89, SCOPED:FALSE) */
.nutrition-drawer-trigger {
    width: 100%;
    margin-bottom: 1.4rem;
    position: relative;
}

.nutrition-drawer-trigger .icon {
  width: 1.6rem;
  height: 1.6rem;
}

.nutrition-drawer-trigger svg {
  fill: currentColor;
}

/* Ensure drawer content is visible */
.drawer.active {
  visibility: visible;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

nutrition-drawer .drawer__inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nutrition-drawer__tabs {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem 2rem;
  overflow-x: auto;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.2);
  background: rgb(var(--color-background));
  z-index: 1;
  grid-template-columns: 1fr 1fr;

  &.is-empty {
    display: none;
  }
}

.nutrition-drawer__tab {
  padding: 0.8rem 1.6rem;
  border: 1.5px solid rgba(var(--color-foreground), 0.2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  color: rgb(var(--color-foreground));
}

.nutrition-drawer__tab:hover {
  border-color: rgba(var(--color-foreground), 0.5);
}

.nutrition-drawer__tab--active {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

.nutrition-drawer__content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.nutrition-drawer__panel {
  display: none;
}

.nutrition-drawer__panel--active {
  display: block !important;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nutrition-drawer__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.nutrition-drawer__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(var(--color-foreground), 0.6);
  line-height: 1.5;
}
/* END_BLOCK:nutrition-labels-drawer */

/* START_BLOCK:product-buy-buttons (INDEX:90, SCOPED:FALSE) */
.product-form__outer {
    width: 100%;
  }
/* END_BLOCK:product-buy-buttons */

/* START_BLOCK:product-subscription-widget (INDEX:102, SCOPED:FALSE) */
subscription-selector {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 2rem;
        width: 100%;
    }
    .custom-form-box {
        display: block;
        border: 0.15rem solid rgba(var(--color-foreground), 0.3);
        border-radius: 8px;
        background: #fff;
        padding: 0 1.4rem;
        cursor: pointer;
    }

    .custom-form-box:has(input:checked) {
        border: 0.15rem solid rgba(var(--color-foreground), 1);
    }

    .featured-product-option-text  {
        display: flex;
        align-items: center;
        padding: 1rem 0;
    }


    .featured-product-option-text-column {
        display: flex;
        justify-content: space-between;
        flex: 1;
    }

    .featured-product-option-info {
        border-top: 1px solid rgba(var(--color-foreground), 0.3);
        display: flex;
        flex-direction: column;
        padding: 12px 0;
    }

    .featured-product-option-info--empty {
            display: none;
    }
    
    
    .featured-product-option-label_text, .featured-products-card-price .regular-price {
        font-weight: 500;
        font-size: 17px;
        line-height: 1.4;
    }

    .featured-product-servings-label,  .featured-products-card-price .compare-price{
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .featured-product-servings-label {
        text-align: left;
    }

    .featured-products-card-price .price-element {
        text-align: right;
    }

    .subscribe-price {
        color: rgba(var(--color-button), 1);
    }
    
    .featured-products-card-price {
        text-align: right;
    }

    .featured-products-card-price > span {
        display: block;
    }

    .featured-product-option-info-column {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: .8rem;
    }

    /* Custom Radio Button Styling */
    .featured-product-option-text input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 20px;
        height: 20px;
        border: 1.5px solid rgba(var(--color-foreground), 1);
        border-radius: 50%;
        outline: none;
        cursor: pointer;
        position: relative;
        flex-shrink: 0;
        margin-right: 10px;
        margin-left: 0;
        transition: all 0.2s ease;

        &:checked {
            border-color: rgba(var(--color-button), 1);   
        }
    }

    .featured-product-option-text input[type="radio"]:checked::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 11px;
        height: 11px;
        background-color: rgba(var(--color-button), 1);
        border-radius: 50%;
    }

    .featured-product-option-text input[type="radio"]:hover {
        box-shadow: 0 0 0 2px rgba(var(--color-foreground), 0.1);
    }
/* END_BLOCK:product-subscription-widget */

/* START_BLOCK:quote-callout (INDEX:107, SCOPED:FALSE) */
.quote-callout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    justify-content: center;
  }

  .quote-callout__bubble-wrap {
    width: 100%;
  }

  .quote-callout__bubble {
    position: relative;
    width: 100%;
    padding: 10px 12px;
    border-radius: 11px;
    background: var(--background-color);
  }

  .quote-callout__quote {
    margin: 0;
    font-family: var(--font-heading-family);
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.16px;
    color: rgb(var(--color-foreground));
  }

  .quote-callout__tail {
    position: absolute;
    top: 35.5px;
    right: 44px;
    width: 14.853px;
    height: 14.853px;
    background: var(--background-color);
    transform: rotate(45deg);
  }

  .quote-callout__attribution {
    padding-right: 15px;
    text-align: center;
    font-family: var(--font-heading-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 22.4px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: rgb(var(--color-foreground));
    white-space: nowrap;
  }

  .quote-callout__name {
    font-weight: 800;
  }

  .quote-callout__role {
    opacity: 0.7;
  }
/* END_BLOCK:quote-callout */

/* START_BLOCK:stat-card (INDEX:112, SCOPED:FALSE) */
.stat-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f3f0;
    border-radius: 20px;
    padding: 32px;
    scroll-snap-align: var(--scroll-snap-align, none);
  }

  .stat-card__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }

  .stat-card__percentage {
    font-family: var(--font-body-family);
    font-weight: 300;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.56px;
    color: rgb(var(--color-foreground));
    margin: 0;
  }

  .stat-card__divider {
    width: 100%;
    height: 1px;
    background-color: rgb(var(--color-foreground));
    border: none;
    margin: 0;
  }

  .stat-card__description {
    font-family: var(--font-body-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.18px;
    color: rgb(var(--color-foreground));
    margin: 0;
  }

  @media screen and (max-width: 749px) {
    .stat-card {
      padding: 24px;
    }

    .stat-card__percentage {
      font-size: 48px;
      letter-spacing: -0.48px;
    }

    .stat-card__description {
      font-size: 16px;
      letter-spacing: -0.16px;
    }
  }
/* END_BLOCK:stat-card */

/* START_BLOCK:video-card (INDEX:114, SCOPED:FALSE) */
.video-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    scroll-snap-align: var(--scroll-snap-align, none);
  }

  .video-card__container {
    display: flex;
    flex-direction: column;
  }

  .video-card__video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ededed;
    aspect-ratio: 10/16;
  }

  .video-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .video-card__controls {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
  }

  .product__info-container .video-card__controls {
    bottom: 8px;
    right: 0;
    width: 100%;
    padding: 0 8px;
    justify-content: space-between;
  }

  .video-card__control-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background-color: rgba(var(--color-foreground), 0.1);
    border: 1px solid rgba(var(--color-background), 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    padding: 0;
  }

  .product__info-container .video-card__control-btn {
    width: 28px;
    height: 28px;
  }

  .video-card__control-btn:hover {
    background-color: rgba(var(--color-foreground), 0.2);
    transform: scale(1.05);
  }

  .video-card__control-btn svg {
    width: 16px;
    height: 16px;
    color: rgb(var(--color-background));
  }

  .video-card__control-btn .icon-pause,
  .video-card__control-btn .icon-unmute {
    display: none;
  }

  .video-card[data-playing="true"] .video-card__control-btn .icon-play {
    display: none;
  }

  .video-card[data-playing="true"] .video-card__control-btn .icon-pause {
    display: block;
  }

  .video-card[data-muted="false"] .video-card__control-btn .icon-mute {
    display: none;
  }

  .video-card[data-muted="false"] .video-card__control-btn .icon-unmute {
    display: block;
  }

  .video-card__content {
    padding: 16px 0 12px;
  }

  .video-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 22px;
    margin-bottom: 6px;
  }

  .video-card__author {
    font-family: var(--font-heading-family);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    color: rgb(var(--color-foreground));
    white-space: nowrap;
    letter-spacing: 0;
  }

  .video-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .video-card__stars {
    display: flex;
    gap: 0;
    height: 14px;
  }

  .video-card__stars svg {
    width: 14px;
    height: 14px;
    color: rgb(var(--color-button));
  }

  .video-card__rating-value {
    font-family: var(--font-body-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.28px;
    color: rgb(var(--color-foreground));
  }

  .video-card__text {
    font-family: var(--font-body-family);
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.33;
    color: rgb(var(--color-foreground));
    margin: 0;
  }

  .video-card__cta {
    /* color: rgb(var(--color-foreground)); */
    font-size: 1.5rem !important;
    min-height: 36px !important; 
    border-radius: 6px !important;

  }

  .video-card__cta:hover {
    color: rgb(var(--color-background));
  }

  @media screen and (max-width: 749px) {
    /* .video-card__video-wrapper {
      height: 300px;
    } */
  }
/* END_BLOCK:video-card */