.linked-image-container > div:not(.uuid-preview) {
  flex: 1 0 340px;
  height: 350px;
  padding: 0;
  position: relative;
  text-align: center;
  object-fit: cover;
  overflow: hidden;
}
.linked-image-container {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  min-width: 320px;
  min-height: 350px;
  gap:16px;
  padding:16px;
}
.linked-image-container figure {
  width: 100%;
  padding-top: 0;
}
.top-row-item {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.linked-image-container a {
  display: block;
  width: 100%;
}
.linked-image-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  position: relative;
  border-radius: var(--border-radius-lg, 8px);
}
.overlay-text p {
  padding-left:24px;
  padding-right:24px;
}
.overlay-text p:nth-child(2){
  display: none;
}
.overlay-text {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  gap: 4px;
  border-radius: var(--border-radius-lg, 8px);
}

@media only screen and (max-width: 1000px) {
  .linked-image-container{
    padding:8px;
  }
}

@media only screen and (max-width: 743px) {
  .linked-image-container > div:not(.uuid-preview) {
    flex: 1 0 342px;
  }
  .linked-image-container > div > div {
    flex: auto;
  }
  .linked-image-container > div:not(.uuid-preview) > div{
    flex: auto;
  }
}
