div.podcast-entry {
    display: flex;
    border-bottom: 1px solid var(--bg-color-2);
    height: 48pt;
}

div.podcast-entry a {
    text-decoration: none;
    cursor: pointer;
}

div.podcast-entry p a {
    color: white;
}
div.podcast-entry a:hover {
    text-decoration: underline;
}

div.podcast-entry img {
    display: inline-block;
    height: 100%;
    flex: 0;
    aspect-ratio: 1/1;
}

div.podcast-entry div {
    display: inline-block;
    flex: 1;
    height: 100%;
}

div.podcast-entry h3 {
    display: block;
    margin: 8px;
}

div.podcast-entry p {
    display: block;
    margin: 8px;
    color: white;
}

div.podcast-entry div:last-of-type {
    text-align: right;
    opacity: 0.5;
}