.skeleton {
    background-color: #e0e0e0;
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
  }

  @keyframes pulse {
    0% {
      background-color: #e0e0e0;
    }
    50% {
      background-color: #f5f5f5;
    }
    100% {
      background-color: #e0e0e0;
    }
  }

  .skeleton-img {
    width: 100%;
    height: 265px;
  }

  .skeleton-text {
    width: 100%;
    height: 20px;
    margin-bottom: 8px;
  }




