/** Shopify CDN: Minification failed

Line 111:0 Unexpected "}"

**/
/* ===== PRODUCT STORY ===== */

.product-story {
  padding-block: 4rem;
}

.product-story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6rem;
  align-items: start;
}

.product-story__images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-story__image {
  height: 360px;
  overflow: hidden;
}

.product-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-story__content {
  max-width: 680px;
}

h2 {
  font-size: 3rem;
}

.rte {
  font-size: 1.2rem;
}

@media screen and (min-width: 751px) {
  .product-story__grid {
    align-items: center;
  }

  .product-story__content h2:first-child {
    margin-top: 0;
  }

  .product-story__content .rte p:first-child {
    margin-top: 0;
  }

  .product-story__content {
    padding-top: 0.6rem;
  }
}

/* MOBIL */
@media screen and (max-width: 750px) {
  .page-width {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .product-story__grid {
    grid-template-columns: 1fr;
  }

  .product-story__content {
    order: 1;
  }

  .product-story__images {
    order: 2;
    display: block; 
    margin-top: 2rem;
  }

  .product-story__image {
    height: 280px; /* Fast højde til enkelt billede */
    width: 100%;
    margin-bottom: 1rem;
  }

  .product-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}


h2{
    font-size:2.5rem;
}

.rte{
    font-size:1.2rem;
}

}


/* ===== PRODUCT BREAK IMAGE ===== */

.product-break-image{
  width:100%;
  margin-block:4rem;
}

.product-break-image__media{
  width:100vw;
  margin-left:calc(50% - 50vw);

  height:500px;         
  overflow:hidden;      
}

.product-break-image__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media screen and (max-width: 750px){
    .product-break-image__media{
  width:100vw;
  margin-left:calc(50% - 50vw);

  height:200px;         
  overflow:hidden;      
}
}