.post-item {
    background-color: var(--grey-1);
  }
  
  .post-item::before {
    content: "";
    height: 100px;
    width: 100px;
    background: url("../../Assets/images/overlap-pattern.svg");
    background-size: 850px;
    position: absolute;
    top: -80px;
    left: 0%;
    opacity: 0.3;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  
  .post-item-toggle-button {
    height: 66px;
    width: 60px;
    top: 0;
    right: 0;
  }
  
  .post-item-toggle-button::before {
    content: "";
    height: 20px;
    width: 2px;
    background-color: var(--gold-2);
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  
  .post-item.active .post-item-toggle-button::before {
    transform: translate(-50%, -50%) rotateZ(-90deg);
  }
  
  .post-item-toggle-button::after {
    content: "";
    height: 2px;
    width: 20px;
    background-color: var(--gold-2);
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  
  .post-item.active .post-item-toggle-button::after {
    left: 100%;
    transform: translate(0%, -50%);
  }
  
  .post-item-links {
    height: 0;
  }
  
  .post-item.active .post-item-links {
    height: 100%;
  }
  
  .post-item-links-list-container {
    background-color: #eeeeee;
  }
  
  .post-item-links-list {
    list-style: none;
  }
  