.client-logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

.ow-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.item {
  flex: 1;
  text-align: center;
}

.activated {
  background-color: #002487 !important;
}

.img-media img {
  height: 270px;
  object-fit: cover;
  width: auto;
  float: right;
}

.ow-client-logo:hover {
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .img-media img {
    height: 200px;
    float: none;
  }
}

.label-strip {
  background: linear-gradient(90deg, #002487 0%, #1a3da3 50%, #002487 100%);
  color: white;
  padding: 12px 25px;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 5px auto;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 36, 135, 0.1);
  border-left: 5px solid #1eade1;
  width: 100%;
  line-height: 1.4;
}

.label-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: translateX(-100%);
  animation: shimmer 4s infinite;
}

.label-strip:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0, 36, 135, 0.15);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .label-strip {
    padding: 12px 20px;
  }
}

@media (max-width: 992px) {
  .label-strip {
    padding: 10px 15px;
    margin: 15px auto;
  }
}

@media (max-width: 768px) {
  .label-strip {
    padding: 10px 12px;
    margin: 12px auto;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .label-strip {
    padding: 8px 10px;
    margin: 10px auto;
    border-left-width: 3px;
  }
}
