Having issue scraping links

I have successfully scraped this list before and have the pagination working properly. However, there are several links on each listing page that I can't get to scrape properly. I also have a selector set up to scrape the description, but it only works on some of the pages. I've included a screenshot of the elements I'm having issues scraping.

URL: https://www.listennotes.com/playlists/active-romance-book-podcasts-K9Ee-PbgOzR/podcasts/?sort_type=oldest_added_first

Sitemap:
{"_id":"ListenNotes","startUrl":["https://www.listennotes.com/playlists/active-romance-book-podcasts-K9Ee-PbgOzR/podcasts/?sort_type=oldest_added_first"],"selectors":[{"id":"Pagination","parentSelectors":["_root","Pagination"],"paginationType":"auto","type":"SelectorPagination","selector":".ln-page-card.flex button"},{"id":"Name","parentSelectors":["TitleBox"],"type":"SelectorText","selector":"a.align-middle","multiple":false,"regex":""},{"id":"TitleBox","parentSelectors":["PodLink"],"type":"SelectorElement","selector":".lg\:col-span-6.grid div.w-full","multiple":false},{"id":"Author","parentSelectors":["TitleBox"],"type":"SelectorText","selector":"a.text-black.font-semibold","multiple":false,"regex":""},{"id":"DescriptionBox","parentSelectors":["PodLink"],"type":"SelectorElement","selector":"div.ln-page-card:nth-of-type(3)","multiple":false},{"id":"Description","parentSelectors":["DescriptionBox"],"type":"SelectorText","selector":"div.ln-text-links","multiple":false,"regex":""},{"id":"ListenScore","parentSelectors":["PodLink"],"type":"SelectorText","selector":"div.text-center:nth-of-type(1) div.ln-listen-score-number","multiple":false,"regex":""},{"id":"GlobalRank","parentSelectors":["PodLink"],"type":"SelectorText","selector":"div.text-center:nth-of-type(2) div.ln-listen-score-number","multiple":false,"regex":""},{"id":"Episodes","parentSelectors":["DescriptionBox"],"type":"SelectorText","selector":"div.flex:nth-of-type(3) div:nth-of-type(5) div:nth-of-type(3)","multiple":false,"regex":""},{"id":"AvgLength","parentSelectors":["DescriptionBox"],"type":"SelectorText","selector":"div.flex:nth-of-type(3) div.font-semibold","multiple":false,"regex":""},{"id":"PodLink","parentSelectors":["Pagination"],"type":"SelectorLink","selector":"a.text-lg","multiple":true,"linkType":"linkFromHref"},{"id":"StartDate","parentSelectors":["DescriptionBox"],"type":"SelectorText","selector":".whitespace-nowrap div:nth-of-type(3)","multiple":false,"regex":""},{"id":"AppleLink","parentSelectors":["TitleBox"],"type":"SelectorLink","selector":"a[title='Apple Podcasts (iTunes) url of Big Gay Fiction Podcast']","multiple":false,"linkType":"linkFromHref"},{"id":"RSS","parentSelectors":["TitleBox"],"type":"SelectorLink","selector":"a[title='RSS feed of Big Gay Fiction Podcast']","multiple":false,"linkType":"linkFromHref"},{"id":"Website","parentSelectors":["TitleBox"],"type":"SelectorLink","selector":".text-helper-color a","multiple":false,"linkType":"linkFromHref"},{"id":"ImageLink","parentSelectors":["TitleBox"],"type":"SelectorLink","selector":".mt-4 .flex-none a","multiple":false,"linkType":"linkFromHref"},{"id":"LastUpdated","parentSelectors":["TitleBox"],"type":"SelectorText","selector":"a time","multiple":false,"regex":""},{"id":"Spotify","parentSelectors":["PodLink"],"type":"SelectorLink","selector":"a[title='Spotify url']","multiple":false,"linkType":"linkFromHref"}]}

something like this...

{"_id":"ListenNotes","startUrl":["https://www.listennotes.com/playlists/active-romance-book-podcasts-K9Ee-PbgOzR/podcasts/?sort_type=oldest_added_first"],"selectors":[{"id":"Name","multiple":false,"parentSelectors":["TitleBox"],"regex":"","selector":"a.align-middle","type":"SelectorText"},{"id":"TitleBox","multiple":false,"parentSelectors":["PodLink"],"selector":".w-full:has(h1)","type":"SelectorElement"},{"id":"Author","multiple":false,"parentSelectors":["TitleBox"],"regex":"","selector":"a.text-black.font-semibold","type":"SelectorText"},{"id":"DescriptionBox","multiple":false,"parentSelectors":["PodLink"],"selector":".grid .ln-page-card:contains(\"ABOUT THIS PODCAST\")","type":"SelectorElement"},{"id":"Description","multiple":false,"parentSelectors":["DescriptionBox"],"regex":"","selector":"div.ln-text-links","type":"SelectorText"},{"id":"ListenScore","multiple":false,"parentSelectors":["PodLink"],"regex":"","selector":"div.text-center:nth-of-type(1) div.ln-listen-score-number","type":"SelectorText"},{"id":"GlobalRank","multiple":false,"parentSelectors":["PodLink"],"regex":"","selector":"div.text-center:nth-of-type(2) div.ln-listen-score-number","type":"SelectorText"},{"id":"Episodes","multiple":false,"parentSelectors":["DescriptionBox"],"regex":"","selector":"div.flex:nth-of-type(3) div:nth-of-type(5) div:nth-of-type(3)","type":"SelectorText"},{"id":"AvgLength","multiple":false,"parentSelectors":["DescriptionBox"],"regex":"","selector":".items-center:contains(\"minutes\") div + div + div","type":"SelectorText"},{"id":"PodLink","linkType":"linkFromHref","multiple":true,"parentSelectors":["Pagination"],"selector":"a.text-lg","type":"SelectorLink"},{"id":"Pagination","paginationType":"clickMore","parentSelectors":["_root","Pagination"],"selector":"button:contains(\"Load more\")","type":"SelectorPagination"},{"id":"StartDate","multiple":false,"parentSelectors":["DescriptionBox"],"regex":"","selector":".items-center:contains(\"since\")","type":"SelectorText"},{"id":"AppleLink","linkType":"linkFromHref","multiple":false,"parentSelectors":["TitleBox"],"selector":"a[title*=\"Apple\"]","type":"SelectorLink"},{"id":"RSS","linkType":"linkFromHref","multiple":false,"parentSelectors":["TitleBox"],"selector":"a[title*=\"RSS\"]","type":"SelectorLink"},{"id":"Website","linkType":"linkFromHref","multiple":false,"parentSelectors":["TitleBox"],"selector":".text-helper-color a","type":"SelectorLink"},{"extractAttribute":"href","id":"ImageLink","multiple":false,"parentSelectors":["TitleBox"],"selector":".mt-4 .flex-none a","type":"SelectorElementAttribute"},{"id":"LastUpdated","multiple":false,"parentSelectors":["TitleBox"],"regex":"","selector":"a time","type":"SelectorText"},{"id":"Spotify","linkType":"linkFromHref","multiple":false,"parentSelectors":["PodLink"],"selector":"a[title='Spotify url']","type":"SelectorLink"}]}

This worked much better! However, the Website link is only being scraped on about 15 of the pages.

share URLs with exact website posted and nothing after scraping...