/* 2026 USP Widget CSS */

.jcd-usp-container {
  margin: 24px 0;
  width: 100%;
  position: relative;
  min-height: 200px;
  transition: min-height 0.3s ease;
}

.jcd-usp-set {
  display: none;
  align-items: stretch;
  gap: 8px;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.jcd-usp-set.active {
  display: flex;
  position: relative;
  opacity: 1;
}

.jcd-usp-set.fade-out {
  opacity: 0;
  pointer-events: none;
}

.jcd-usp-set.fade-in {
  opacity: 1;
}

.jcd-usp-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  transition: opacity 0.1s ease-in-out;
}

.jcd-usp-icon {
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.jcd-usp-text {
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  width: 100%;
  max-width: 194px;
}

.jcd-usp-text br {
  display: none;
}

/* Mobile Responsive */
@media only screen and (min-width: 768px) {
  .jcd-usp-container {
    margin: 12px 0 20px 0;
  }

  .jcd-usp-set {
    flex-direction: row;
    align-items: start;
    gap: 16px;
  }

  .jcd-usp-item {
    flex-direction: column;
    flex: 1 1 100%;
    min-width: unset;
  }

  .jcd-usp-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.32px;
    max-width: 168px;
  }

  .jcd-usp-text br {
    display: inline;
  }
}

/* Fade transition - removed as handled above */