/* Skeleton */

  .skl-card-template{
      justify-content: center;
      align-items: center;
      margin: 5% 10%;	
  }
  
  .skl-skeleton {
    opacity: .7;
    animation: skeleton-loading 1s linear infinite alternate;
  }
  
  .skl-skeleton-text {
    width: 90%;
    height: 1.5rem;
    margin-bottom: .25rem;
    border-radius: .125rem;
  }
  
  .skl-skeleton-text:last-child {
    margin-bottom: 0;
    width: 80%;
  }
  
  @keyframes skeleton-loading {
    0% {
      background-color: hsl(200, 20%, 70%);
    }
  
    100% {
      background-color: hsl(200, 20%, 95%);
    }
  }
  
  
  
  .skl-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 1rem;
  }
  
  .skl-card {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 12px;
    border-radius: 4px;
  }
  
  .skl-header {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }
  
  .skl-header-img {
    width: 210px;
    height: 230px;
    object-fit: cover;
    border-radius: 7%;
    margin: 1rem;
    flex-shrink: 0;
  }
  .skl-header-img-card{
    width: 150px;
    height: 170px;
    object-fit: cover;
    border-radius: 7%;
    margin: 1rem;
    flex-shrink: 0;
  }
  
  .skl-title {
    font-weight: bold;
    font-size: 1.25rem;
    text-transform: capitalize;
    word-wrap: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex-grow: 1;
    margin-left: 20px;
  }


/* Mobile responsiveness */
@media (max-width: 768px) {
  .skl-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 0.5rem; 
  }
  
  .skl-header {
    margin-bottom: 0.5rem; 
  }
  
  .skl-header-img {
    width: 150px; 
    height: 140px; 
    margin: 0.5rem;
  }
  .skl-header-img-card{
    width: 120px;
    height: 110px;
    object-fit: cover;
    border-radius: 7%;
    margin: 1rem;
    flex-shrink: 0;
  }
  .skl-title {
    font-size: 1rem; 
  }
  .skl-card {
    padding: 12px;
    border-radius: 3px; 
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px -1px, rgba(0, 0, 0, 0.06) 0px 1px 2px -1px; 
  }
}
/* Skeleton */