.cmw-product-carousel .cmw-product-carousel-slide.is-active {
    display: grid;
     grid-template-columns: 0.8fr 1.4fr 0.8fr;
    gap: 30px;
    /* align-items: start; */
    width: 100%;
}
.cmw-product-carousel-main-eyebrow{
  font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin-bottom: 1rem;
    color: #666;
    text-transform: uppercase;
        font-family: "Apercu Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.cmw-product-carousel-left .cmw-product-carousel-title {
    font-family: 'WeWork Serif';
margin-top: 1rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.75rem;
    margin-bottom: 1rem;
}

.cmw-product-carousel-left .cmw-product-carousel-text {
  line-height: 1.6;
}
.cmw-product-carousel-column:last-child .cmw-product-carousel-col-text {
    font-style: italic;
}
.cmw-product-carousel-right {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cmw-product-carousel-center {
  
    margin-left: 30px;
    margin-right: 30px;
}
.cmw-product-carousel-main {
  width: 100%;
  overflow: hidden;
  height: 100%;
}
a.cmw-product-carousel-button.cmw-product-carousel-button-primary {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin-bottom: .75rem;
}
a.cmw-product-carousel-button.cmw-product-carousel-button-primary::after{
      content: " ➝";
    width: 1rem;

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

.cmw-product-carousel-nextbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cmw-product-carousel-arrow {
    box-shadow: 0 0 8px rgba(0, 0, 0, .1);
    border: 1px solid #e3e3e3;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    color: blue;
    background-color: #fff;
  cursor: pointer;
}
button.cmw-product-carousel-arrow:hover {
    background-color: #ccf;
}
.cmw-product-carousel-arrow svg {
    width: 1.1rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin: 4px 0 0 2px;
    fill: blue;
}
.cmw-product-carousel-preview {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    height: 80%;
    -webkit-transition: max-width .1s ease-out, opacity .2s ease-out;
    -o-transition: max-width .1s ease-out,opacity .2s ease-out;
    transition: max-width .1s ease-out, opacity .2s ease-out;
    max-width: 78%;
    opacity: 40%;
}

.cmw-product-carousel-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


button.cmw-product-carousel-preview:hover {
    max-width: 81%;
    opacity: 100%;
    cursor: pointer;
}

/* Desktop: slider (only active slide shown) */
.cmw-product-carousel-slide {
  display: none;
}



/* Tablet + Mobile: show ALL slides, static */
@media (max-width: 1024px) {
 
  .cmw-product-carousel-right {
    display: none; /* hide arrows + preview */
  }
  .cmw-product-carousel {
    display: grid;
    padding-top: 1rem;
    grid-template-columns: 1fr 1fr;
    /* gap: 10px; */
    border: 1px solid #e3e3e3;
    padding-bottom: 1rem;
}
.cmw-product-carousel-slide, .cmw-product-carousel .cmw-product-carousel-slide.is-active {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 30px;
}
.cmw-product-carousel-main-img {
    display: block;
    width: 80%;
    height: auto;
}
.cmw-product-carousel-center

 {
    margin-left: 0px;
    margin-right: 0px;
}
}

/* Mobile: each slide stacks text/image */
@media (max-width: 767px) {
    .cmw-product-carousel {
    grid-template-columns: 1fr;
  }
}


/* small editor spacing helper */
.cmw-product-carousel-editor-preview {
  padding: 10px;
  border: 1px solid #e5e5e5;
}
.cmw-product-carousel-editor-preview .cmw-product-carousel-arrow{
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmw-product-carousel-columns
 {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
}

.cmw-product-carousel-column:not(.cmw-product-carousel-column:last-child)
 {
    border-bottom: 1px solid #e3e3e3;
}
.cmw-product-carousel-column {
    padding: 1rem 0;
}
.cmw-product-carousel-eyebrow {
      display: block;
    font-size: .75rem;
    margin-bottom: .25rem;
    color: #666;
    text-transform: uppercase;
    font-family: "Apercu";
}

.cmw-product-carousel-col-text {
  font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin-bottom: 1rem;
    margin-bottom: 0;
}
.cmw-product-carousel.cmw-product-carousel-editor-preview {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}