:root {
    --main-color: #FDFDFD;
    --secondary-color: #3442CE;
    --tertiary-color: #191919;

    --half-black: #8C8C8C;
    --half-white: #e5e5e5;

    --fourth-white: rgba(253, 253, 253, 0.5);


    --main-text-color: #000000;
    --secondary-text-color: #101010;
    --tertiary-text-color: #3442CE;

    --text-title-big: 2.5em;
    --text-title-medium: 2em;
    --text-title-small: 1.5em;
}


html,
body,
main {
    max-width: 100vw;
    overflow-x: hidden;
    background-color: var(--main-color);
}


html{
    width: 100vw;
    line-height: 1.5;
    font-family: "Instrument sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--tertiary-color);

    background-color: var(--main-color);
    text-wrap: balance;
    margin: 0;
    padding: 0;
}

body{

    margin-bottom: 100vh;
}

a{
    color: var(--main-color);
    text-decoration: none;
}

h1{
    font-size: clamp(1rem, 4vw, 1rem);
    font-weight: 100;
    max-width: 90vw;
    color: var(--main-text-color);
    text-align: center;
   
}

h2{
    text-wrap: normal;
    color: var(--tertiary-color);
    font-weight: 400;
    text-align: left;
    width: 90vw;
    font-size: 1.2rem;
}

hr{
    border: none;
    height: 1px;
    background-color: var(--half-white);
    width: 90vw;
}

.word {
  display: inline !important;
  white-space: pre; /* keep spacing consistent */
}


.button{
    text-decoration: none;
    background-color: var(--secondary-color);
    color: var(--main-color);
    border: solid 2px var(--secondary-color);
    padding: 10px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.button_white svg{
    stroke:var(--secondary-color)!important;
    width: 40px;
}

.button_white:hover svg{
    stroke:var(--main-color)!important;
}

.button svg {
    stroke: var(--main-color);
}
.button:hover svg {
    stroke: var(--secondary-color);
}

.button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: solid 2px var(--secondary-color);
    padding: 10px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}
.button_white {
    text-decoration: none;
    background-color: var(--main-color);
    color: var(--secondary-color);
    border: solid 2px var(--secondary-color);
    padding: 10px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
    width: fit-content;

}
.button_white:hover {
    text-decoration: none;
    background-color: var(--secondary-color);
    color: var(--main-color);
    border: solid 2px var(--main-color);
    padding: 10px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

button#accept-cookies {
    cursor: pointer;
    background: none;
    color: white;
    border: solid 2px white;
    padding: 10px 40px;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
    box-shadow: none;
}

button#accept-cookies:hover {
    background-color: white;
    color: black;
}

button#decline-cookies {
    cursor: pointer;
    background: none;
    color: white;
    padding: 10px 40px;
    border-radius: 10px;
    margin-top: 1rem;

    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
    box-shadow: none;
    padding-inline: none;
    border-style:none;

}
.fat_text{
    font-weight: 700;
}

.italic{
    font-style: italic;
}

.light{
    font-weight: 300;
    font-size: 1rem;
    opacity: 0.5;
}

.line-mask {
    overflow: hidden;
    display: block;
  }
  
  .line {
    display: inline-block;
    transform: translateY(100%); /* Start off-screen below */
  }

  .line-extra{
    display: block;
    width: 100%;
    color: transparent;
  }
  

.white{
    color: var(--main-color);
}
.small{
    font-size: 0.8rem;
}
.full{
    opacity: 1!important;
}
.blue{
    color: var(--secondary-color);
}
.logo_text_big{
    color: black;
}

/* Detail code */

/* HERO */

.hero{
    width: 100vw;
    height: 170vh;
    background-color: var(--main-color);

    position:relative;
    z-index:1;
    overflow: hidden;

}
.hero-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    position: sticky;
    bottom: 0;

    /* Video background */
    position: relative;
    overflow: hidden;
}


.hero-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-img{
    width: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    width: 120vw;
    max-width: 50rem;
    opacity: 0;
}

.hero-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 100vw;
    position: relative;
    z-index: 1;
}

.hero-text-animation{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 50vw, 40rem);
    font-size: clamp(20vw);
    position: relative;
    width: 100vw;
}
.text-1{
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 100;
    color: var(--main-color);
    letter-spacing: 0.2rem;
    mix-blend-mode: difference;
    opacity: 0;
}
.text-2{
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 100;
    color: var(--main-color);
    letter-spacing: 0.3rem;
    opacity: 0;
            
}
        
@media (max-width: 600px) {
    .hero-text-animation{
        gap: clamp(1rem, 40vw, 40rem);
    }
}

/* EXTRA */

.extra{
    width: 100vw;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    position: relative;
    z-index: 1;
      
    background-color: black;
      
    
}



.extra>div{
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start ;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.extra>div>p {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1.5;
    text-align: center;
    
    /* Make text transparent and reveal background behind */
    color: transparent;
    background: inherit;          /* take the parent background */
    -webkit-background-clip: text;
    background-clip: text;
    mix-blend-mode: lighten;      /* optional: makes it pop more */
  }
  

.extra>p{
    max-width: 40rem;
    padding-top: 5rem;
    width: 90vw;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--half-white);


}

.section-heading {
    width: 100vw;
    height: 60vh;
    min-height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  
    padding-left: 1.5vw;
    text-align: left;
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding-top: 10vh;
    background-color: black;
    mix-blend-mode: darken; 
  }
  
  .section-heading div {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(3rem, 10vw, 12rem);
    font-weight: 100;
    line-height: 1;
    color: var(--main-color); /* fallback */
    
    /* 🔑 key part */
  }
  

  @media (min-width: 600px) {
    
    .extra>p{
        
    }

    .section-heading{
        
    }
}

.image-in-text{
    display: inline-block;
    width: 0rem;
    height: 2rem;
    margin-left: .75rem;
    background: url("./assets/stulie_logo_white.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.fake-image-in-text{
    display: inline-block;
    width: 4rem;
    height: 2rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}


/* CAROUSEL */
.carousel-title{
    height: 5rem;
    background-color: var(--main-color);
    position: relative;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    
}

.carousel-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    z-index: 3;
    background-color: var(--main-color);
}

.carousel {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20vh 0;
}

.carousel p {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    user-select: none;
}




/* CLIENTS */
.clients{
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
    position: relative;
    z-index: 3;
    background-color: var(--main-color);
}

.clients>h2{
    color: var(--tertiary-color);
    font-weight: 400;
    text-align: left;
    width: 90vw;
    font-size: 1.2rem;
}

.clients-list{
    width: 90vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --- Base styles --- */
.client-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 2rem;
}

.client-item>div{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .clients{
        padding-top: 5rem;
    }
    .client-item {
        flex-direction: column;
    }
    .client-item div{
        align-self: flex-start;
    }
    .client-item img {
        width: 20%;
        align-self: flex-end;
    }
    .client-item.active img {
    width: 100%!important;
    max-width: 25rem!important;
}
}

.client-item:hover img {
    filter: grayscale(0%);
}

.client-item:hover h3 {
    opacity: 1;
}

.client-item img {
    width: 10%;
    min-width: 5rem;
    height: auto;
    transition: width .3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.client-item h3 {
    margin-top: 0rem;
    margin-bottom: 2rem;

    font-size: 2rem;
    color: var(--tertiary-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.client-item div div {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    font-size: 1rem;
    color: var(--half-black);
    max-width: 30rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --- Active state --- */
.client-item.active img {
    width: 20%;

}

.client-item.active div {
    opacity: 1;
    max-height: 400px;
}



/* INFO */
       

        .info {
            width: 100vw;
            height: 300vh; /* Extended height for scroll trigger */
            position: relative;
            background-color: var(--tertiary-color);
            overflow: hidden;
        }

        .info-sticky-container {
            position: relative; /* no sticky here */
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }


        .info-container {
            width: 90vw;
            height: fit-content;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
        }

        .info-slide {
            position: absolute;
            width: 100vw;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            opacity: 0;
        }

        .info-slide.active {
            opacity: 1;
        }

        .info-content {
            width: 95vw;
            height: 40vh;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding-right: 5vw;
        }

        .info-content h2 {
            color: white;
            width: 10%;
            min-width: 11rem;
            padding-left: 5vw;
        }

        .info-content p {
            text-align: right;
            width: fit-content;
            color: var(--half-black);
            font-size: 1.2rem;
            line-height: 1.5;
        }

        .sticky-container{
            position: absolute;
            height: 40vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            right: 5vw;
            top: 0px;
        }

        .sticky-text {
            font-size: 1.2rem;
            z-index: 10;
            white-space: nowrap;
            pointer-events: none; /* so it doesn't block interactions */
            line-height: 1.5;

        }


        .white {
            color: white;
        }

        .info-slide img {
            width: 100vw;
            height: 60vh;
            object-fit: cover;
        }

        /* Demo images with different colors */
      

        /* Progress indicator */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--main-color);
            z-index: 1000;
        }


        /* PROJECTS */
        
.projects{
    background-color: var(--tertiary-color);
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.projects>h2{
    color: var(--main-color);
    font-weight: 400;
    text-align: left;
    width: 90vw;
    font-size: 1.2rem;
}

.projects-container{
    width: 95vw;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project{
    width: 10vw;
    height: auto;
    aspect-ratio: 12/15;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
    position: relative;


}

.project>img{
    position: absolute;
    object-fit: cover;
    aspect-ratio: 12/15;
    width: 100%;
    height: 100%;
}



@media( max-width: 1200px) {
    .info-content {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .info-content h2 {
        padding-top: 50px;
        justify-self: start;
    }
    .info-content p {
        text-align: right;
        align-self: flex-end;
        padding-bottom: 50px;
    }
    .sticky-container{
        justify-content: flex-end;
        height: 50vh;

    }
    .info-slide {
            margin-top: 10vh;
            height: 90vh;
        }
    .sticky-container p{
        padding-bottom: 50px;
    }
    .info-slide img {
            height: 50vh;
        }
}
@media (max-width: 1000px) {
    .project{
        width: 45vw;
    }
  
}

@media (max-width: 750px) {
    .project{
        width: 90vw;
    }
  
}

/* Progress bar */



.process {
    width: 100vw;
    height: 300vh; /* Extended height for scroll trigger */
    position: relative;
    background-color: var(--tertiary-color);
    overflow: hidden;
}

.info-sticky-container-process {
    position: relative; /* no sticky here */
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.info-container {
    width: 90vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.info-slide-process {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.info-slide-process.active {
    opacity: 1;
}

.process-content {
    width: 90vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
    
}

.process-content h3 {
    color: var(--main-color);
    align-self: flex-end;


}

.process-screen-title {
    color: var(--main-color);
    width: fit-content;
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.5;
    max-width: 50rem;
    align-self: flex-end;
    text-align: right;
    color: var(--fourth-white);


    
}

.process-screen-text {
    display: block;
    color: var(--half-white);
    width: fit-content;
    font-size: clamp(1rem, 5vw, 2rem);
    line-height: 1.5;
    align-self: flex-start;
    max-width: 40rem;
    margin-bottom: auto;

}


.white {
    color: white;
}

.info-slide-process img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    filter: blur(4px) brightness(0.8);
}

.demo-img-slices {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    filter: blur(4px) brightness(0.6);
  }
  
  .img-slice {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: calc(100vh / 6); /* Assuming 10 slices */
    background-size: cover;
    background-position-y: calc(var(--slice-index) * 100%);
    opacity: 0;
  }
  



/* PROJECTS */

.projects{
background-color: var(--tertiary-color);
width: 100vw;
height: fit-content;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
padding-top: 5rem;
padding-bottom: 5rem;
}

.projects>h2{
color: var(--main-color);
font-weight: 400;
text-align: left;
width: 90vw;
font-size: 1.2rem;
}

.projects-container{
width: 95vw;
height: fit-content;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
}

.project{
width: 20vw;
height: auto;
aspect-ratio: 12/15;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
transition: transform 0.2s;
position: relative;


}

.project>img{
position: absolute;
object-fit: cover;
aspect-ratio: 12/15;
width: 100%;
height: 100%;
}



@media( max-width: 1200px) {
.info-content {
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
}
.info-content h2 {
padding-top: 50px;
justify-self: start;
}
.info-content p {
text-align: right;
align-self: flex-end;
padding-bottom: 50px;
}
.sticky-container{
justify-content: flex-end;
height: 50vh;

}
.info-slide {
    margin-top: 10vh;
    height: 90vh;
}
.sticky-container p{
padding-bottom: 50px;
}
.info-slide img {
    height: 50vh;
}
}
@media (max-width: 1000px) {
.project{
width: 45vw;
}

}

@media (max-width: 750px) {
.project{
width: 90vw;
}

}

  

/* GENERAL CSS */

.general{
    width: 90vw;
    margin-left: 5vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    line-height: 1.5;
}

.general-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch; /* Ensures both sides stretch to the same height */
}

.general-title {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--tertiary-color);
    text-wrap: balance;
    width: 49.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes elements to top and bottom */
}

.general-title-h2{
    width: 90vw;
    max-width: 35rem;
    font-size: clamp(2rem, 3vw, 3rem);
}
.general-title>img{
    max-width: 10rem;
    filter: grayscale(1);
}

.general-content-container{
    height: fit-content;
    width: 49.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}

.general-content-1{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.general-content-2{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
}

.content-1-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.content-1-container > div, .content-2-container{
    display: flex;
    flex-direction: column;
    max-width: 20rem;
}






.general-images{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1%;
    flex-wrap: wrap;
}

.general-images img{
    width: 49.5%;
    aspect-ratio: 16/9;
    object-fit: cover;
}



@media(max-width:1000px){
    .general-content{
        flex-direction: column;
        gap: 3rem;
    }
    .general-title, .general-content-container{
        gap: 3rem;
        width: 100%;
    }
    .general-title{
        align-items: center;
        align-items: flex-end;
    }
    .general-content-1{
        flex-direction: column;
        gap: 2rem;
    }
    .general-images img{
        width: 100%;
    }
}



/* FOUNDER CSS */
.founder{
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--main-color);
}

.founder-title{
    width: 90vw;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;


    color: var(--tertiary-color);

}

.founder-image-container{
    width: 90vw;
    aspect-ratio: 40 / 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image{
    width: 95vw;
    height: auto;
    aspect-ratio: 40/13;
    object-fit: cover;
}

.founder-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 90vw;
    gap: 1rem;
}

.founder-name{
    margin-top: -0.5rem;
    font-size: 1rem;
    color: var(--half-black);
}

.founder-role{
    margin-top: -0.5rem;
    font-size: 1rem;
    color: var(--half-white);
}

.founder-text{
    width: 90vw;
    max-width: 70rem;
    font-size: clamp(1.1rem, 5vw, 2rem);
    color: var(--half-black);
    line-height: 1.5;
    align-self: flex-start;
    margin-left: 5vw;
}

.founder-link{
    width: fit-content;
    height: fit-content;
    margin-top: 1rem;
    margin-right: 2rem;
    text-decoration: none;
    align-self: left;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.founder-link img{
    width: 3rem;
    height: 3rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}


/* FOOTER CSS */


/* Footer styling */
footer{
    background: url('./assets/footer-back.webp') no-repeat center center;
    background-size: cover;

    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:100vh;
    z-index:-3;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    color: var(--main-color);
    text-align: center;
    gap: 2rem;
}

.footer-content {
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
    padding-top: 5vh;
}

.footer-big{
    font-size: 30vw;
}



.image-divider {
    position: relative;
    width: 100vw;
    height: 50vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--tertiary-color);
  }
  
  .image-track {
    display: flex;
    align-items: flex-start; /* top align */
    height: 100%;
    gap: 2rem;
    will-change: transform;
  }
  
  .image-track img {
    width: 40vw;
    max-width: 15rem;
    height: auto;      /* fill section height */
    object-fit: cover; /* variable width, same height */
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
  }
  
  