@font-face {
  font-family: 'Bluu Next';
  src: url('/fonts/BluuNext-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: block;  /* text stays invisible until font loads */
}



.process-title{
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    padding: 0;
    margin-top: 0;
    inline-size: none;
    font-size: 3.6rem;
    line-height: 3.2rem;
    color: rgb(10, 11, 1);
    margin-bottom: 1rem;
   

}

.process-title-white{
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    padding: 0;
    margin-top: 0;
    inline-size: none;
    font-size: 2.4rem;
    color: rgb(255, 255, 255);
    margin-bottom: 0.8rem;
   font-size: 3rem;
    line-height: 3.2rem;

}

.process-running-header{ 
    font-family: monospace;
    padding: 0;
    margin-top: 0;
    font-weight: 700;
    font-size: 1rem;
    color: rgb(53, 53, 52);
    line-height: 1rem;
}

.process-running-header.white{ 

    color: rgb(185, 185, 183);
   
}

.process-text{ 
    font-family: 'Noto Sans', sans-serif;
    padding: 0;
    margin-top: 0;
    font-weight: 500;
    font-size: 1.1rem;
    color: rgb(28, 31, 3);
    line-height: 1.8rem;
}


.process-text-white{ 
    font-family: 'Noto Sans', sans-serif;
    padding: 0;
    margin-top: 0;
    font-weight: 400;
    font-size: 1rem;
    color: rgb(217, 217, 217);
    line-height: 1.8rem;
}


.grid-container-process {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr; /* it should be: repeat(10, 1fr) - later but it changes on homepage for some reason too! */
    gap: 8rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%; /* Full container width */
    grid-auto-rows: auto; /* Ensures equal height for items */
    padding: 4rem 6.4rem;
    
}

.grid-container-process.black {
    background-color: black;

}


.grid-item-process {
    position: relative;
    overflow: hidden;
    border-radius: 0px; /* Rounded corners */
    display: flex;
    flex-direction: column;
    margin: 50px 0 50px 0;

}


