/* =============================================================== */
/* Text Image Stack Widget                                         */
/* =============================================================== */

.text-image-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
  container-type: inline-size;
}

.text-image-stack .text-stack {
  display: flex;
  flex-direction: column;
}

.text-image-stack .text-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.875rem, 5cqi, 3rem);
  line-height: var(--line-height);
  font-weight: var(--font-weight-normal);
}

.text-image-stack .text-line.strong {
  font-weight: var(--font-weight-bold);
}

.text-image-stack img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius
}