* {
  box-sizing: border-box;
}

:host {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
}

.title {
  height: 16px;
  width: 60%;
}

.text {
  height: 12px;
  width: 80%;
}

.text.short {
  width: 50%;
}

.badge {
  height: 20px;
  width: 50px;
  border-radius: 10px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
