.linkcard {
    display: block;
    flex-direction: row;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px 0;
    color: inherit;
    transition: box-shadow 0.2s ease;
  }
  .linkcard:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .linkcard-thumb img {
    width: 120px;
    height: 100%;
    object-fit: cover;
  }
  .linkcard-body {
    padding: 10px;
    flex: 1;
  }
  .linkcard-title {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .linkcard-desc {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
  }
  .linkcard-url {
    font-size: 0.8em;
    color: #0c6dfd;
    
  }
  