.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.inventory-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.inventory-card-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.inventory-card-info {
    padding: 15px;
    flex-grow: 1;
}

.inventory-card-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.inventory-card-stats {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #f0f0f0;
    border-top: 2px solid #000;
}

.stat {
    font-size: 0.9rem;
    font-weight: bold;
} 