.tooltip {
    font-size: var(--sm);
    position: fixed;
    white-space: nowrap;
    background-color: rgb(var(--background));
    box-shadow: 1px 3px 6px 2px rgb(var(--accent));
    border-radius: 8px;
    z-index: 9;
    padding: 12px 16px;
    width: 30ch;
    white-space: normal;
}

.tooltip .thumb {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 10px;
    padding-bottom: 4px;
}

.tooltip[data-tags="TheFanfiction"] .thumb {
    object-position: 50% 20%;
}

.tooltip .subhead {
    font-weight: bold;
    padding-bottom: 4px;
}

.tooltip .paragraph {
    width: 100%;
}

.tooltip .action {
    display: inline-block;
    font-weight: bold;
    color: rgb(var(--secondary));
    padding-top: 12px;
    text-decoration: none;
}