

.wrapper_LVbag {
  display: flex;
  justify-content: center;
}

.bold {
  font-weight: 900;
}

.container_LVbag {
  width: 100%;
  max-width: 500px;
  border: 2px solid black;
  background-color: red;
  display: flex;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.image-wrapper_LVbag {
  width: 35%;
  flex-shrink: 0;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;;
}

.image-wrapper_LVbag img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.text_LVbag {
  color: yellow;
  font-size: 0.7em;
  padding: 5px 0;
  display: block;
  align-items: left;
  word-break: break-word;
  overflow-wrap: break-word;
  flex: 1;
  font-weight: 400;
}

.credit {
  font-size: 0.85em;
  color: black;
  margin-top: 4px;
  text-align: center;
}