.shared-item-items-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.shared-item-root {
  border: 1px solid #00000026;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0 0 var(--space) 0;
  overflow: hidden;
  max-width: 100vw;
  min-width: var(--minWidth);
  background-color: #fff;
}

.shared-item-root:hover .shared-item-image-wrapper {
  transform: scale(1.1) translateZ(0);
}

.shared-item-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 15rem;
  max-height: 15rem;
}

.shared-item-image-wrapper {
  height: 15rem;
  flex: 1;
  transition: transform 0.3s;
  object-fit: cover;
  will-change: transform;
  position: relative;
}

.shared-item-text-container {
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  /* height: 5rem; */
}

.shared-item-caption {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.shared-item-desc {
  font-size: 0.85rem;
  text-indent: 1rem;
  text-align: justify;
}

@media (min-width: 800px) {
  .shared-item-root {
    --shared-item-width: calc((var(--desktop-content-width) / 2) - var(--space));
    margin: var(--space);
    min-width: var(--shared-item-width);
    max-width: var(--shared-item-width);
  }

  .shared-item-text-container {
    height: 5rem;
  }

  .shared-item-items-container {
    margin: 5rem calc(0px - var(--space)) 0;
  }
}

@media (min-width: 2000px) {
  .shared-item-root {
    --shared-item-width: calc((var(--desktop-content-width-wide) - (var(--space) * 4)) / 3);
    margin: var(--space);
    min-width: var(--shared-item-width);
    max-width: var(--shared-item-width);
  }
}
