.tag-showcase {
  display: flex;
  gap: 32px;
  margin: 80px 0;
      justify-content: space-between;
}

.tag-meta {
  width: 210px;
  font-family: Inter, sans-serif;
}

.tag-title {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tag-title a {
  color: #595959;
  text-decoration: none;
  font-weight: 700;
}

.tag-description-text {
  font-size: 10px;
  color: #595959;
  line-height: 1.5;
}

.tag-items {
  display: flex;
  gap: 24px;
}

.tag-item--large img {
  width: 506px;
  height: 617px;
  object-fit: cover;
}

.tag-item-stack {
  position: relative;
  width: 75px;
  height: 341px;
}

.tag-item--small {
  position: absolute;
  left: 0;
}

.tag-item--small:nth-child(1) { top: 0; }
.tag-item--small:nth-child(2) { top: 127px; }
.tag-item--small:nth-child(3) { top: 254px; }

.tag-item--small img {
  width: 75px;
  height: 87px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .tag-showcase {
    flex-direction: column;
      margin: 0;
  }
  .tag-items {

    flex-direction: column;
}
.tag-items a.tag-item.tag-item--small, 
.tag-item--small:nth-child(1),
.tag-item--small:nth-child(2),
.tag-item--small:nth-child(3) {
   position: initial;
}

.tag-items {

    flex-direction: column;
}


.tag-item-stack {
    display: flex;
    width: calc(100vw - 60px);
    height: 180px;
    position: initial;
   gap: 24px;
}
}