.container:has(.loft-lookbook) ,
    .col-12:has(.loft-lookbook) {
        padding: 0;
    }
    
/* V8new updated */
@font-face {
  font-family: 'Analogue';
  src: url('Analogue.otf?$staticlink$') format('opentype');
}
@font-face {
  font-family: 'Analogue';
  src: url('Analogue-Italic.otf?$staticlink$') format('opentype');
  font-style: italic;
}

.Afont {
  font-family: 'Analogue', serif !important;
  font-weight: 500 !important;
  color:#111;
}

.loft-lookbook {
    font-family: 'poppins', sans-serif;
    max-width: 1680px;
    margin: 1.35rem auto;
    padding: 0;
    color: #111;
    text-align: center;
}

/* Video Styling */
.lb-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Text Block */
.lb-text-block {
    padding-top: clamp(1rem, 1vw - 20px, 1.5rem);
    padding-left: 3%;
    padding-right: 3%;
    font-size: clamp(.8rem, 1.5vw - 8px, 1.5rem);
    line-height: 1.6;
     margin: 2.75rem auto;
}

/* Subheading */
.lb-subheading {
    font-family: acumin-pro-extra-condensed;
    font-size: clamp(1.85rem, 4vw - 12px, 2.85rem);
    font-weight: 600;
    margin: 2rem 0 1.25rem;
}

/* Image Stack */
.lb-image-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom:3rem;
}

.lb-image-stack img {
    width: 100%;
    height: auto;
}

/* Hover state */
.lb-image {
  position: relative;
  display: inline-block;
}

.lb-image:hover {
  cursor: pointer; /* Shows a pointer cursor to indicate it's clickable */
}

/* Add the plus icon in bottom right */
.lb-image::after {
  content: "+";
  position: absolute;
  bottom: 3%;
  right: 2%;
  background: white;
  color: #111;
  font-size: clamp(12px, 2vw, 20px);
  font-weight: bold;
  width: clamp(20px, 4vw, 32px);
  height: clamp(20px, 4vw, 32px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* So clicks pass through to the link */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}


/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .loft-lookbook {
        padding: 0;
    }
    .lb-image-stack img {
        max-width: 100%;
    }

}
