.brand-text-container {
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8vh;
  width: 90%;
}

.brand-text-wrapper {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 8vh;
  max-width: 1600px;
}

.brand-title {
    font-weight: bold;
    color: var(--grey-light);
}

.brand-container {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    margin-bottom: 8vh;
    max-width: 1600px;
}


.column-left p:last-child {
    margin-bottom: 0 !important;
}

.column-left {
    flex: 2; 
    display: flex;
    flex-direction: column;
}

.column-right {
    flex: 1; 
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--crisal-green-light);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 2;
}

.image-wrapper:hover::after {
    opacity: 1;
}

.image-wrapper img,
.image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.image-wrapper:hover img,
.image-wrapper:hover video {
    transform: scale(1.1);
}

.brand-image {
    height: 100%;      
    width: 100%;        
    object-fit: cover; 
    display: block;
}

.card-2, .card-3 {
    margin-top: 5rem;
}

@media (min-width: 1920px) {
  .column-left, .column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

}

@media (max-width: 1200px) {
  .column-left, .column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1024px) {

.brand-text-wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 8vh;
  }


.brand-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4vh;
  }

  .column-left {
    display: contents;
  }

  .brand-title {
    order: 1; 
    margin-bottom: 0 !important;
  }

  .column-right {
    order: 2; 
    width: 100%;
    height: auto;
  }

  .brand-text {
    order: 3; 
    margin-bottom: 4vh;
  }

  .brand-image {
    width: 100%;
    height: auto;
  }

}

/* Mobile Styles */
@media (max-width: 768px) {

  .brand-text-wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 8vh;
  }
    .card-2, .card-3 {
    margin-top: 2rem;
}

}
