    .wrap { max-width:1000px; margin:0 auto; }
    h1 { font-size:28px; margin-bottom:20px; }

    ol.pod-list { 
      list-style: none; 
      display: grid; 
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
      gap: 20px; 
      padding-left: 0; 
    }
    ol.pod-list li { 
      position: relative; 
      background: white; 
      padding: 12px; 
      border-radius: 8px; 
      box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
      display: flex; 
      flex-direction: column; 
      align-items: center; 
    }
    .pod-link { 
      display: block; 
      position: relative; 
      text-decoration: none; 
      color: inherit; 
      border-radius: 8px; 
      overflow: hidden; 
    }
    .pod-link img { 
      width: 100%; 
      height: auto; 
      display: block; 
      border-radius: 8px; 
    }
    .overlay { 
      position: absolute; 
      top: 0; left: 0; right: 0; bottom: 0; 
      background: rgba(0,0,0,0.7); 
      color: white; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      padding: 12px; 
      opacity: 0; 
      transition: opacity 0.3s ease; 
      font-size: 16px; 
      text-align: center; 
    }
    .pod-link:hover .overlay { opacity: 1; }

    /* ❌ Small cross in corner */
    .remove-cross {
      position: absolute;
      top: 6px;
      right: 6px;
      background: rgba(0,0,0,0.6);
      color: white;
      border: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 16px;
      line-height: 20px;
      padding: 0;
    }

    .empty { font-size:18px; color:#555; margin-top:20px; }