/* Clipso Techbar - Module Styles */

.clipso-techbar {
  margin: 30px 0;
  padding: 0;
  box-sizing: border-box;
}

.clipso-techbar__title {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
}

.clipso-techbar__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  box-sizing: border-box;
  align-items: stretch;
}

.clipso-techbar__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: #F8F8F8;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  flex: 0 1 auto;
  min-height: 60px;
  height: 100%;
}

.clipso-techbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.clipso-techbar__icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.clipso-techbar__icon:empty {
  width: 0;
  min-width: 0;
}

.clipso-techbar__text {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}

.clipso-techbar__label {
  display: inline;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  white-space: nowrap;
}

.clipso-techbar__value {
  display: inline;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
  white-space: nowrap;
}

.clipso-techbar__unit {
  display: inline;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  margin-left: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .clipso-techbar {
    margin: 25px 0;
  }
  
  .clipso-techbar__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .clipso-techbar__grid {
    gap: 15px;
  }
  
  .clipso-techbar__card {
    padding: 14px 16px;
    gap: 10px;
    flex: 1 1 calc(50% - 7.5px);
    min-width: 0;
    min-height: 60px;
  }
  
  .clipso-techbar__icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  
  .clipso-techbar__icon img {
    width: 20px;
    height: 20px;
  }
  
  .clipso-techbar__label,
  .clipso-techbar__value {
    font-size: 13px;
  }
  
  .clipso-techbar__unit {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .clipso-techbar__card {
    flex: 1 1 100%;
    min-height: 60px;
  }
}

