.aside {
    max-height: calc(100vh - 106px);
}
@media(min-width: 991px) {
    .aside {
        max-height: calc(100vh - 65px);
    }
}
@media(min-width: 801px) {
    .aside .list-container {
        overflow-y: auto;
    }
    .aside .list-container::-webkit-scrollbar {
        width: 10px;
    }
    .aside .list-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .aside .list-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 20em;
    }
    .aside .list-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

@media (max-width: 602px) {
    .img-col {
        width: 100%;
    }
}


.form-input>.form-control, .form-input>.form-select {
    background-color: #fff !important;
}

.row.gallery .col {
    height: 100%;
}

.breadcrumbs + .main__filterBtn {
    margin-right: 10px;
}
.main__filterBtn.main__filterBtn--open {
    display: none;
    margin-right: 0;
}
.breadcrumbs {
    margin-right: auto;
    order: 1;
}
.sort-form {
    margin-left: auto;
    order: 2;
}

.main__video {
    min-height: 95vh;
    height: auto;
}

.main__about {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: auto;
}
.main__video {
    min-height: auto;
}
.main__video .inner-stage > * {
    height: 100% !important;
    max-height: 100% !important;
}

.main__video.site-5 {
    min-height: auto;
}
.main__video.site-5 .inner-stage {
    padding-top: 51.25%;
}
.main__video.site-2 {
    min-height: auto;
}
.main__video.site-2 .inner-stage {
    padding-top: 47.25%;
}

#hybrid-client {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#pure-client { 
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/* =========================
   Related Models Grid
   ========================= */

.related-models__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px){
  .related-models__grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px){
  .related-models__grid{
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Shrink cards inside related section */
.related-models__grid .main__model{
  width: 100%;
  max-width: 100%;
}

/* Reduce image height */
.related-models__grid .main__modelPhoto{
  max-height: 180px;
  object-fit: cover;
}
/* =========================
   Related Models Background
   ========================= */

.related-models{
  background: #ffffff;
  padding: 20px 18px;
  border-radius: 10px;
  margin-top: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Title styling */
.related-models h3{
  color: #111;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Make cards sit nicely on white */
.related-models__grid .main__model{
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
}

/* Slight hover effect */
.related-models__grid .main__model:hover{
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}
