.discogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

.discogs-item {
    background: #111;
    color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.discogs-item-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.discogs-item-body {
    padding: 0.75rem 0.9rem 1rem;
}

.discogs-item-title {
    font-size: 14px;
    margin: 0 0 0.25rem;
}

.discogs-item-artist,
.discogs-item-year,
.discogs-item-price,
.discogs-item-conditions {
    margin: 0 0 0.25rem;
}

.discogs-item-link {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
